Interface PutAttributesRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<PutAttributesRequest.Builder,PutAttributesRequest>,EcsRequest.Builder,SdkBuilder<PutAttributesRequest.Builder,PutAttributesRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- PutAttributesRequest
public static interface PutAttributesRequest.Builder extends EcsRequest.Builder, SdkPojo, CopyableBuilder<PutAttributesRequest.Builder,PutAttributesRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PutAttributesRequest.Builderattributes(Collection<Attribute> attributes)The attributes to apply to your resource.PutAttributesRequest.Builderattributes(Consumer<Attribute.Builder>... attributes)The attributes to apply to your resource.PutAttributesRequest.Builderattributes(Attribute... attributes)The attributes to apply to your resource.PutAttributesRequest.Buildercluster(String cluster)The short name or full Amazon Resource Name (ARN) of the cluster that contains the resource to apply attributes.PutAttributesRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)PutAttributesRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.ecs.model.EcsRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
cluster
PutAttributesRequest.Builder cluster(String cluster)
The short name or full Amazon Resource Name (ARN) of the cluster that contains the resource to apply attributes. If you do not specify a cluster, the default cluster is assumed.
- Parameters:
cluster- The short name or full Amazon Resource Name (ARN) of the cluster that contains the resource to apply attributes. If you do not specify a cluster, the default cluster is assumed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attributes
PutAttributesRequest.Builder attributes(Collection<Attribute> attributes)
The attributes to apply to your resource. You can specify up to 10 custom attributes for each resource. You can specify up to 10 attributes in a single call.
- Parameters:
attributes- The attributes to apply to your resource. You can specify up to 10 custom attributes for each resource. You can specify up to 10 attributes in a single call.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attributes
PutAttributesRequest.Builder attributes(Attribute... attributes)
The attributes to apply to your resource. You can specify up to 10 custom attributes for each resource. You can specify up to 10 attributes in a single call.
- Parameters:
attributes- The attributes to apply to your resource. You can specify up to 10 custom attributes for each resource. You can specify up to 10 attributes in a single call.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attributes
PutAttributesRequest.Builder attributes(Consumer<Attribute.Builder>... attributes)
The attributes to apply to your resource. You can specify up to 10 custom attributes for each resource. You can specify up to 10 attributes in a single call.
This is a convenience method that creates an instance of theAttribute.Builderavoiding the need to create one manually viaAttribute.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#attributes(List.) - Parameters:
attributes- a consumer that will call methods onAttribute.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#attributes(java.util.Collection)
-
overrideConfiguration
PutAttributesRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
PutAttributesRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-