Interface AddFlowVpcInterfacesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<AddFlowVpcInterfacesResponse.Builder,AddFlowVpcInterfacesResponse>,MediaConnectResponse.Builder,SdkBuilder<AddFlowVpcInterfacesResponse.Builder,AddFlowVpcInterfacesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- AddFlowVpcInterfacesResponse
public static interface AddFlowVpcInterfacesResponse.Builder extends MediaConnectResponse.Builder, SdkPojo, CopyableBuilder<AddFlowVpcInterfacesResponse.Builder,AddFlowVpcInterfacesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AddFlowVpcInterfacesResponse.BuilderflowArn(String flowArn)The ARN of the flow that these VPC interfaces were added to.AddFlowVpcInterfacesResponse.BuildervpcInterfaces(Collection<VpcInterface> vpcInterfaces)The details of the newly added VPC interfaces.AddFlowVpcInterfacesResponse.BuildervpcInterfaces(Consumer<VpcInterface.Builder>... vpcInterfaces)The details of the newly added VPC interfaces.AddFlowVpcInterfacesResponse.BuildervpcInterfaces(VpcInterface... vpcInterfaces)The details of the newly added VPC interfaces.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.mediaconnect.model.MediaConnectResponse.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
-
flowArn
AddFlowVpcInterfacesResponse.Builder flowArn(String flowArn)
The ARN of the flow that these VPC interfaces were added to.- Parameters:
flowArn- The ARN of the flow that these VPC interfaces were added to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vpcInterfaces
AddFlowVpcInterfacesResponse.Builder vpcInterfaces(Collection<VpcInterface> vpcInterfaces)
The details of the newly added VPC interfaces.- Parameters:
vpcInterfaces- The details of the newly added VPC interfaces.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vpcInterfaces
AddFlowVpcInterfacesResponse.Builder vpcInterfaces(VpcInterface... vpcInterfaces)
The details of the newly added VPC interfaces.- Parameters:
vpcInterfaces- The details of the newly added VPC interfaces.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vpcInterfaces
AddFlowVpcInterfacesResponse.Builder vpcInterfaces(Consumer<VpcInterface.Builder>... vpcInterfaces)
The details of the newly added VPC interfaces. This is a convenience method that creates an instance of theVpcInterface.Builderavoiding the need to create one manually viaVpcInterface.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#vpcInterfaces(List.) - Parameters:
vpcInterfaces- a consumer that will call methods onVpcInterface.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#vpcInterfaces(java.util.Collection)
-
-