Interface DescribeAccountAttributesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeAccountAttributesResponse.Builder,DescribeAccountAttributesResponse>,RedshiftResponse.Builder,SdkBuilder<DescribeAccountAttributesResponse.Builder,DescribeAccountAttributesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeAccountAttributesResponse
public static interface DescribeAccountAttributesResponse.Builder extends RedshiftResponse.Builder, SdkPojo, CopyableBuilder<DescribeAccountAttributesResponse.Builder,DescribeAccountAttributesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeAccountAttributesResponse.BuilderaccountAttributes(Collection<AccountAttribute> accountAttributes)A list of attributes assigned to an account.DescribeAccountAttributesResponse.BuilderaccountAttributes(Consumer<AccountAttribute.Builder>... accountAttributes)A list of attributes assigned to an account.DescribeAccountAttributesResponse.BuilderaccountAttributes(AccountAttribute... accountAttributes)A list of attributes assigned to an account.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.redshift.model.RedshiftResponse.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
-
accountAttributes
DescribeAccountAttributesResponse.Builder accountAttributes(Collection<AccountAttribute> accountAttributes)
A list of attributes assigned to an account.
- Parameters:
accountAttributes- A list of attributes assigned to an account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
accountAttributes
DescribeAccountAttributesResponse.Builder accountAttributes(AccountAttribute... accountAttributes)
A list of attributes assigned to an account.
- Parameters:
accountAttributes- A list of attributes assigned to an account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
accountAttributes
DescribeAccountAttributesResponse.Builder accountAttributes(Consumer<AccountAttribute.Builder>... accountAttributes)
A list of attributes assigned to an account.
This is a convenience method that creates an instance of theAccountAttribute.Builderavoiding the need to create one manually viaAccountAttribute.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#accountAttributes(List.) - Parameters:
accountAttributes- a consumer that will call methods onAccountAttribute.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#accountAttributes(java.util.Collection)
-
-