Interface DescribeTrunkInterfaceAssociationsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<DescribeTrunkInterfaceAssociationsResponse.Builder,DescribeTrunkInterfaceAssociationsResponse>
,Ec2Response.Builder
,SdkBuilder<DescribeTrunkInterfaceAssociationsResponse.Builder,DescribeTrunkInterfaceAssociationsResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- DescribeTrunkInterfaceAssociationsResponse
public static interface DescribeTrunkInterfaceAssociationsResponse.Builder extends Ec2Response.Builder, SdkPojo, CopyableBuilder<DescribeTrunkInterfaceAssociationsResponse.Builder,DescribeTrunkInterfaceAssociationsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeTrunkInterfaceAssociationsResponse.Builder
interfaceAssociations(Collection<TrunkInterfaceAssociation> interfaceAssociations)
Information about the trunk associations.DescribeTrunkInterfaceAssociationsResponse.Builder
interfaceAssociations(Consumer<TrunkInterfaceAssociation.Builder>... interfaceAssociations)
Information about the trunk associations.DescribeTrunkInterfaceAssociationsResponse.Builder
interfaceAssociations(TrunkInterfaceAssociation... interfaceAssociations)
Information about the trunk associations.DescribeTrunkInterfaceAssociationsResponse.Builder
nextToken(String nextToken)
The token to use to retrieve the next page of results.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.ec2.model.Ec2Response.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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
interfaceAssociations
DescribeTrunkInterfaceAssociationsResponse.Builder interfaceAssociations(Collection<TrunkInterfaceAssociation> interfaceAssociations)
Information about the trunk associations.
- Parameters:
interfaceAssociations
- Information about the trunk associations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
interfaceAssociations
DescribeTrunkInterfaceAssociationsResponse.Builder interfaceAssociations(TrunkInterfaceAssociation... interfaceAssociations)
Information about the trunk associations.
- Parameters:
interfaceAssociations
- Information about the trunk associations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
interfaceAssociations
DescribeTrunkInterfaceAssociationsResponse.Builder interfaceAssociations(Consumer<TrunkInterfaceAssociation.Builder>... interfaceAssociations)
Information about the trunk associations.
This is a convenience method that creates an instance of theTrunkInterfaceAssociation.Builder
avoiding the need to create one manually viaTrunkInterfaceAssociation.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#interfaceAssociations(List
.) - Parameters:
interfaceAssociations
- a consumer that will call methods onTrunkInterfaceAssociation.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#interfaceAssociations(java.util.Collection
)
-
nextToken
DescribeTrunkInterfaceAssociationsResponse.Builder nextToken(String nextToken)
The token to use to retrieve the next page of results. This value is
null
when there are no more results to return.- Parameters:
nextToken
- The token to use to retrieve the next page of results. This value isnull
when there are no more results to return.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-