Interface DescribeCustomDomainAssociationsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<DescribeCustomDomainAssociationsResponse.Builder,DescribeCustomDomainAssociationsResponse>
,RedshiftResponse.Builder
,SdkBuilder<DescribeCustomDomainAssociationsResponse.Builder,DescribeCustomDomainAssociationsResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- DescribeCustomDomainAssociationsResponse
public static interface DescribeCustomDomainAssociationsResponse.Builder extends RedshiftResponse.Builder, SdkPojo, CopyableBuilder<DescribeCustomDomainAssociationsResponse.Builder,DescribeCustomDomainAssociationsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeCustomDomainAssociationsResponse.Builder
associations(Collection<Association> associations)
The associations for the custom domain.DescribeCustomDomainAssociationsResponse.Builder
associations(Consumer<Association.Builder>... associations)
The associations for the custom domain.DescribeCustomDomainAssociationsResponse.Builder
associations(Association... associations)
The associations for the custom domain.DescribeCustomDomainAssociationsResponse.Builder
marker(String marker)
The marker for the custom domain association.-
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
-
marker
DescribeCustomDomainAssociationsResponse.Builder marker(String marker)
The marker for the custom domain association.
- Parameters:
marker
- The marker for the custom domain association.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
associations
DescribeCustomDomainAssociationsResponse.Builder associations(Collection<Association> associations)
The associations for the custom domain.
- Parameters:
associations
- The associations for the custom domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
associations
DescribeCustomDomainAssociationsResponse.Builder associations(Association... associations)
The associations for the custom domain.
- Parameters:
associations
- The associations for the custom domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
associations
DescribeCustomDomainAssociationsResponse.Builder associations(Consumer<Association.Builder>... associations)
The associations for the custom domain.
This is a convenience method that creates an instance of theAssociation.Builder
avoiding the need to create one manually viaAssociation.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#associations(List
.) - Parameters:
associations
- a consumer that will call methods onAssociation.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#associations(java.util.Collection
)
-
-