Interface GetViewResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetViewResponse.Builder,GetViewResponse>,ResourceExplorer2Response.Builder,SdkBuilder<GetViewResponse.Builder,GetViewResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetViewResponse
public static interface GetViewResponse.Builder extends ResourceExplorer2Response.Builder, SdkPojo, CopyableBuilder<GetViewResponse.Builder,GetViewResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description GetViewResponse.Buildertags(Map<String,String> tags)Tag key and value pairs that are attached to the view.default GetViewResponse.Builderview(Consumer<View.Builder> view)A structure that contains the details for the requested view.GetViewResponse.Builderview(View view)A structure that contains the details for the requested view.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.resourceexplorer2.model.ResourceExplorer2Response.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
tags
GetViewResponse.Builder tags(Map<String,String> tags)
Tag key and value pairs that are attached to the view.
- Parameters:
tags- Tag key and value pairs that are attached to the view.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
view
GetViewResponse.Builder view(View view)
A structure that contains the details for the requested view.
- Parameters:
view- A structure that contains the details for the requested view.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
view
default GetViewResponse.Builder view(Consumer<View.Builder> view)
A structure that contains the details for the requested view.
This is a convenience method that creates an instance of theView.Builderavoiding the need to create one manually viaView.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toview(View).- Parameters:
view- a consumer that will call methods onView.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
view(View)
-
-