Interface PutResourceConfigRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,ConfigRequest.Builder,CopyableBuilder<PutResourceConfigRequest.Builder,PutResourceConfigRequest>,SdkBuilder<PutResourceConfigRequest.Builder,PutResourceConfigRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- PutResourceConfigRequest
public static interface PutResourceConfigRequest.Builder extends ConfigRequest.Builder, SdkPojo, CopyableBuilder<PutResourceConfigRequest.Builder,PutResourceConfigRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PutResourceConfigRequest.Builderconfiguration(String configuration)The configuration object of the resource in valid JSON format.PutResourceConfigRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)PutResourceConfigRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)PutResourceConfigRequest.BuilderresourceId(String resourceId)Unique identifier of the resource.PutResourceConfigRequest.BuilderresourceName(String resourceName)Name of the resource.PutResourceConfigRequest.BuilderresourceType(String resourceType)The type of the resource.PutResourceConfigRequest.BuilderschemaVersionId(String schemaVersionId)Version of the schema registered for the ResourceType in CloudFormation.PutResourceConfigRequest.Buildertags(Map<String,String> tags)Tags associated with the resource.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.services.config.model.ConfigRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
resourceType
PutResourceConfigRequest.Builder resourceType(String resourceType)
The type of the resource. The custom resource type must be registered with CloudFormation.
You cannot use the organization names “amzn”, “amazon”, “alexa”, “custom” with custom resource types. It is the first part of the ResourceType up to the first ::.
- Parameters:
resourceType- The type of the resource. The custom resource type must be registered with CloudFormation.You cannot use the organization names “amzn”, “amazon”, “alexa”, “custom” with custom resource types. It is the first part of the ResourceType up to the first ::.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
schemaVersionId
PutResourceConfigRequest.Builder schemaVersionId(String schemaVersionId)
Version of the schema registered for the ResourceType in CloudFormation.
- Parameters:
schemaVersionId- Version of the schema registered for the ResourceType in CloudFormation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
resourceId
PutResourceConfigRequest.Builder resourceId(String resourceId)
Unique identifier of the resource.
- Parameters:
resourceId- Unique identifier of the resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
resourceName
PutResourceConfigRequest.Builder resourceName(String resourceName)
Name of the resource.
- Parameters:
resourceName- Name of the resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
configuration
PutResourceConfigRequest.Builder configuration(String configuration)
The configuration object of the resource in valid JSON format. It must match the schema registered with CloudFormation.
The configuration JSON must not exceed 64 KB.
- Parameters:
configuration- The configuration object of the resource in valid JSON format. It must match the schema registered with CloudFormation.The configuration JSON must not exceed 64 KB.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
PutResourceConfigRequest.Builder tags(Map<String,String> tags)
Tags associated with the resource.
This field is not to be confused with the Amazon Web Services-wide tag feature for Amazon Web Services resources. Tags for
PutResourceConfigare tags that you supply for the configuration items of your custom resources.- Parameters:
tags- Tags associated with the resource.This field is not to be confused with the Amazon Web Services-wide tag feature for Amazon Web Services resources. Tags for
PutResourceConfigare tags that you supply for the configuration items of your custom resources.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
PutResourceConfigRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
PutResourceConfigRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-