Interface DescribeIamInstanceProfileAssociationsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<DescribeIamInstanceProfileAssociationsResponse.Builder,DescribeIamInstanceProfileAssociationsResponse>
,Ec2Response.Builder
,SdkBuilder<DescribeIamInstanceProfileAssociationsResponse.Builder,DescribeIamInstanceProfileAssociationsResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- DescribeIamInstanceProfileAssociationsResponse
public static interface DescribeIamInstanceProfileAssociationsResponse.Builder extends Ec2Response.Builder, SdkPojo, CopyableBuilder<DescribeIamInstanceProfileAssociationsResponse.Builder,DescribeIamInstanceProfileAssociationsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeIamInstanceProfileAssociationsResponse.Builder
iamInstanceProfileAssociations(Collection<IamInstanceProfileAssociation> iamInstanceProfileAssociations)
Information about the IAM instance profile associations.DescribeIamInstanceProfileAssociationsResponse.Builder
iamInstanceProfileAssociations(Consumer<IamInstanceProfileAssociation.Builder>... iamInstanceProfileAssociations)
Information about the IAM instance profile associations.DescribeIamInstanceProfileAssociationsResponse.Builder
iamInstanceProfileAssociations(IamInstanceProfileAssociation... iamInstanceProfileAssociations)
Information about the IAM instance profile associations.DescribeIamInstanceProfileAssociationsResponse.Builder
nextToken(String nextToken)
The token to include in another request to get the next page of items.-
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
-
iamInstanceProfileAssociations
DescribeIamInstanceProfileAssociationsResponse.Builder iamInstanceProfileAssociations(Collection<IamInstanceProfileAssociation> iamInstanceProfileAssociations)
Information about the IAM instance profile associations.
- Parameters:
iamInstanceProfileAssociations
- Information about the IAM instance profile associations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
iamInstanceProfileAssociations
DescribeIamInstanceProfileAssociationsResponse.Builder iamInstanceProfileAssociations(IamInstanceProfileAssociation... iamInstanceProfileAssociations)
Information about the IAM instance profile associations.
- Parameters:
iamInstanceProfileAssociations
- Information about the IAM instance profile associations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
iamInstanceProfileAssociations
DescribeIamInstanceProfileAssociationsResponse.Builder iamInstanceProfileAssociations(Consumer<IamInstanceProfileAssociation.Builder>... iamInstanceProfileAssociations)
Information about the IAM instance profile associations.
This is a convenience method that creates an instance of theIamInstanceProfileAssociation.Builder
avoiding the need to create one manually viaIamInstanceProfileAssociation.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#iamInstanceProfileAssociations(List
.) - Parameters:
iamInstanceProfileAssociations
- a consumer that will call methods onIamInstanceProfileAssociation.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#iamInstanceProfileAssociations(java.util.Collection
)
-
nextToken
DescribeIamInstanceProfileAssociationsResponse.Builder nextToken(String nextToken)
The token to include in another request to get the next page of items. This value is
null
when there are no more items to return.- Parameters:
nextToken
- The token to include in another request to get the next page of items. This value isnull
when there are no more items to return.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-