Interface TypeConfigurationDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TypeConfigurationDetails.Builder,TypeConfigurationDetails>,SdkBuilder<TypeConfigurationDetails.Builder,TypeConfigurationDetails>,SdkPojo
- Enclosing class:
- TypeConfigurationDetails
public static interface TypeConfigurationDetails.Builder extends SdkPojo, CopyableBuilder<TypeConfigurationDetails.Builder,TypeConfigurationDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TypeConfigurationDetails.Builderalias(String alias)The alias specified for this configuration, if one was specified when the configuration was set.TypeConfigurationDetails.Builderarn(String arn)The Amazon Resource Name (ARN) for the configuration data, in this account and Region.TypeConfigurationDetails.Builderconfiguration(String configuration)A JSON string specifying the configuration data for the extension, in this account and Region.TypeConfigurationDetails.BuilderisDefaultConfiguration(Boolean isDefaultConfiguration)Whether this configuration data is the default configuration for the extension.TypeConfigurationDetails.BuilderlastUpdated(Instant lastUpdated)When the configuration data was last updated for this extension.TypeConfigurationDetails.BuildertypeArn(String typeArn)The Amazon Resource Name (ARN) for the extension, in this account and Region.TypeConfigurationDetails.BuildertypeName(String typeName)The name of the extension.-
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
-
arn
TypeConfigurationDetails.Builder arn(String arn)
The Amazon Resource Name (ARN) for the configuration data, in this account and Region.
- Parameters:
arn- The Amazon Resource Name (ARN) for the configuration data, in this account and Region.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
alias
TypeConfigurationDetails.Builder alias(String alias)
The alias specified for this configuration, if one was specified when the configuration was set.
- Parameters:
alias- The alias specified for this configuration, if one was specified when the configuration was set.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
configuration
TypeConfigurationDetails.Builder configuration(String configuration)
A JSON string specifying the configuration data for the extension, in this account and Region.
If a configuration hasn't been set for a specified extension, CloudFormation returns
{}.- Parameters:
configuration- A JSON string specifying the configuration data for the extension, in this account and Region.If a configuration hasn't been set for a specified extension, CloudFormation returns
{}.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastUpdated
TypeConfigurationDetails.Builder lastUpdated(Instant lastUpdated)
When the configuration data was last updated for this extension.
If a configuration hasn't been set for a specified extension, CloudFormation returns
null.- Parameters:
lastUpdated- When the configuration data was last updated for this extension.If a configuration hasn't been set for a specified extension, CloudFormation returns
null.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
typeArn
TypeConfigurationDetails.Builder typeArn(String typeArn)
The Amazon Resource Name (ARN) for the extension, in this account and Region.
For public extensions, this will be the ARN assigned when you call the ActivateType API operation in this account and Region. For private extensions, this will be the ARN assigned when you call the RegisterType API operation in this account and Region.
- Parameters:
typeArn- The Amazon Resource Name (ARN) for the extension, in this account and Region.For public extensions, this will be the ARN assigned when you call the ActivateType API operation in this account and Region. For private extensions, this will be the ARN assigned when you call the RegisterType API operation in this account and Region.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
typeName
TypeConfigurationDetails.Builder typeName(String typeName)
The name of the extension.
- Parameters:
typeName- The name of the extension.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isDefaultConfiguration
TypeConfigurationDetails.Builder isDefaultConfiguration(Boolean isDefaultConfiguration)
Whether this configuration data is the default configuration for the extension.
- Parameters:
isDefaultConfiguration- Whether this configuration data is the default configuration for the extension.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-