Interface CreateConfigurationProfileResponse.Builder
-
- All Superinterfaces:
AppConfigResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<CreateConfigurationProfileResponse.Builder,CreateConfigurationProfileResponse>,SdkBuilder<CreateConfigurationProfileResponse.Builder,CreateConfigurationProfileResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- CreateConfigurationProfileResponse
public static interface CreateConfigurationProfileResponse.Builder extends AppConfigResponse.Builder, SdkPojo, CopyableBuilder<CreateConfigurationProfileResponse.Builder,CreateConfigurationProfileResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreateConfigurationProfileResponse.BuilderapplicationId(String applicationId)The application ID.CreateConfigurationProfileResponse.Builderdescription(String description)The configuration profile description.CreateConfigurationProfileResponse.Builderid(String id)The configuration profile ID.CreateConfigurationProfileResponse.BuilderkmsKeyArn(String kmsKeyArn)The Amazon Resource Name of the Key Management Service key to encrypt new configuration data versions in the AppConfig hosted configuration store.CreateConfigurationProfileResponse.BuilderkmsKeyIdentifier(String kmsKeyIdentifier)The Key Management Service key identifier (key ID, key alias, or key ARN) provided when the resource was created or updated.CreateConfigurationProfileResponse.BuilderlocationUri(String locationUri)The URI location of the configuration.CreateConfigurationProfileResponse.Buildername(String name)The name of the configuration profile.CreateConfigurationProfileResponse.BuilderretrievalRoleArn(String retrievalRoleArn)The ARN of an IAM role with permission to access the configuration at the specifiedLocationUri.CreateConfigurationProfileResponse.Buildertype(String type)The type of configurations contained in the profile.CreateConfigurationProfileResponse.Buildervalidators(Collection<Validator> validators)A list of methods for validating the configuration.CreateConfigurationProfileResponse.Buildervalidators(Consumer<Validator.Builder>... validators)A list of methods for validating the configuration.CreateConfigurationProfileResponse.Buildervalidators(Validator... validators)A list of methods for validating the configuration.-
Methods inherited from interface software.amazon.awssdk.services.appconfig.model.AppConfigResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
applicationId
CreateConfigurationProfileResponse.Builder applicationId(String applicationId)
The application ID.
- Parameters:
applicationId- The application ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
id
CreateConfigurationProfileResponse.Builder id(String id)
The configuration profile ID.
- Parameters:
id- The configuration profile ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
CreateConfigurationProfileResponse.Builder name(String name)
The name of the configuration profile.
- Parameters:
name- The name of the configuration profile.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
CreateConfigurationProfileResponse.Builder description(String description)
The configuration profile description.
- Parameters:
description- The configuration profile description.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
locationUri
CreateConfigurationProfileResponse.Builder locationUri(String locationUri)
The URI location of the configuration.
- Parameters:
locationUri- The URI location of the configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
retrievalRoleArn
CreateConfigurationProfileResponse.Builder retrievalRoleArn(String retrievalRoleArn)
The ARN of an IAM role with permission to access the configuration at the specified
LocationUri.- Parameters:
retrievalRoleArn- The ARN of an IAM role with permission to access the configuration at the specifiedLocationUri.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
validators
CreateConfigurationProfileResponse.Builder validators(Collection<Validator> validators)
A list of methods for validating the configuration.
- Parameters:
validators- A list of methods for validating the configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
validators
CreateConfigurationProfileResponse.Builder validators(Validator... validators)
A list of methods for validating the configuration.
- Parameters:
validators- A list of methods for validating the configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
validators
CreateConfigurationProfileResponse.Builder validators(Consumer<Validator.Builder>... validators)
A list of methods for validating the configuration.
This is a convenience method that creates an instance of theValidator.Builderavoiding the need to create one manually viaValidator.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#validators(List.) - Parameters:
validators- a consumer that will call methods onValidator.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#validators(java.util.Collection)
-
type
CreateConfigurationProfileResponse.Builder type(String type)
The type of configurations contained in the profile. AppConfig supports
feature flagsandfreeformconfigurations. We recommend you create feature flag configurations to enable or disable new features and freeform configurations to distribute configurations to an application. When calling this API, enter one of the following values forType:AWS.AppConfig.FeatureFlagsAWS.Freeform- Parameters:
type- The type of configurations contained in the profile. AppConfig supportsfeature flagsandfreeformconfigurations. We recommend you create feature flag configurations to enable or disable new features and freeform configurations to distribute configurations to an application. When calling this API, enter one of the following values forType:AWS.AppConfig.FeatureFlagsAWS.Freeform- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
kmsKeyArn
CreateConfigurationProfileResponse.Builder kmsKeyArn(String kmsKeyArn)
The Amazon Resource Name of the Key Management Service key to encrypt new configuration data versions in the AppConfig hosted configuration store. This attribute is only used for
hostedconfiguration types. To encrypt data managed in other configuration stores, see the documentation for how to specify an KMS key for that particular service.- Parameters:
kmsKeyArn- The Amazon Resource Name of the Key Management Service key to encrypt new configuration data versions in the AppConfig hosted configuration store. This attribute is only used forhostedconfiguration types. To encrypt data managed in other configuration stores, see the documentation for how to specify an KMS key for that particular service.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
kmsKeyIdentifier
CreateConfigurationProfileResponse.Builder kmsKeyIdentifier(String kmsKeyIdentifier)
The Key Management Service key identifier (key ID, key alias, or key ARN) provided when the resource was created or updated.
- Parameters:
kmsKeyIdentifier- The Key Management Service key identifier (key ID, key alias, or key ARN) provided when the resource was created or updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-