Interface GetConfigurationProfileResponse.Builder
-
- All Superinterfaces:
AppConfigResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<GetConfigurationProfileResponse.Builder,GetConfigurationProfileResponse>,SdkBuilder<GetConfigurationProfileResponse.Builder,GetConfigurationProfileResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetConfigurationProfileResponse
public static interface GetConfigurationProfileResponse.Builder extends AppConfigResponse.Builder, SdkPojo, CopyableBuilder<GetConfigurationProfileResponse.Builder,GetConfigurationProfileResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetConfigurationProfileResponse.BuilderapplicationId(String applicationId)The application ID.GetConfigurationProfileResponse.Builderdescription(String description)The configuration profile description.GetConfigurationProfileResponse.Builderid(String id)The configuration profile ID.GetConfigurationProfileResponse.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.GetConfigurationProfileResponse.BuilderkmsKeyIdentifier(String kmsKeyIdentifier)The Key Management Service key identifier (key ID, key alias, or key ARN) provided when the resource was created or updated.GetConfigurationProfileResponse.BuilderlocationUri(String locationUri)The URI location of the configuration.GetConfigurationProfileResponse.Buildername(String name)The name of the configuration profile.GetConfigurationProfileResponse.BuilderretrievalRoleArn(String retrievalRoleArn)The ARN of an IAM role with permission to access the configuration at the specifiedLocationUri.GetConfigurationProfileResponse.Buildertype(String type)The type of configurations contained in the profile.GetConfigurationProfileResponse.Buildervalidators(Collection<Validator> validators)A list of methods for validating the configuration.GetConfigurationProfileResponse.Buildervalidators(Consumer<Validator.Builder>... validators)A list of methods for validating the configuration.GetConfigurationProfileResponse.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
GetConfigurationProfileResponse.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
GetConfigurationProfileResponse.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
GetConfigurationProfileResponse.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
GetConfigurationProfileResponse.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
GetConfigurationProfileResponse.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
GetConfigurationProfileResponse.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
GetConfigurationProfileResponse.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
GetConfigurationProfileResponse.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
GetConfigurationProfileResponse.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
GetConfigurationProfileResponse.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
GetConfigurationProfileResponse.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
GetConfigurationProfileResponse.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.
-
-