Interface TypeVersionSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TypeVersionSummary.Builder,TypeVersionSummary>,SdkBuilder<TypeVersionSummary.Builder,TypeVersionSummary>,SdkPojo
- Enclosing class:
- TypeVersionSummary
public static interface TypeVersionSummary.Builder extends SdkPojo, CopyableBuilder<TypeVersionSummary.Builder,TypeVersionSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TypeVersionSummary.Builderarn(String arn)The Amazon Resource Name (ARN) of the extension version.TypeVersionSummary.Builderdescription(String description)The description of the extension version.TypeVersionSummary.BuilderisDefaultVersion(Boolean isDefaultVersion)Whether the specified extension version is set as the default version.TypeVersionSummary.BuilderpublicVersionNumber(String publicVersionNumber)For public extensions that have been activated for this account and Region, the version of the public extension to be used for CloudFormation operations in this account and Region.TypeVersionSummary.BuildertimeCreated(Instant timeCreated)When the version was registered.TypeVersionSummary.Buildertype(String type)The kind of extension.TypeVersionSummary.Buildertype(RegistryType type)The kind of extension.TypeVersionSummary.BuildertypeName(String typeName)The name of the extension.TypeVersionSummary.BuilderversionId(String versionId)The ID of a specific version 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
-
type
TypeVersionSummary.Builder type(String type)
The kind of extension.
- Parameters:
type- The kind of extension.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RegistryType,RegistryType
-
type
TypeVersionSummary.Builder type(RegistryType type)
The kind of extension.
- Parameters:
type- The kind of extension.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RegistryType,RegistryType
-
typeName
TypeVersionSummary.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.
-
versionId
TypeVersionSummary.Builder versionId(String versionId)
The ID of a specific version of the extension. The version ID is the value at the end of the Amazon Resource Name (ARN) assigned to the extension version when it's registered.
- Parameters:
versionId- The ID of a specific version of the extension. The version ID is the value at the end of the Amazon Resource Name (ARN) assigned to the extension version when it's registered.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isDefaultVersion
TypeVersionSummary.Builder isDefaultVersion(Boolean isDefaultVersion)
Whether the specified extension version is set as the default version.
This applies only to private extensions you have registered in your account, and extensions published by Amazon. For public third-party extensions, CloudFormation returns
null.- Parameters:
isDefaultVersion- Whether the specified extension version is set as the default version.This applies only to private extensions you have registered in your account, and extensions published by Amazon. For public third-party extensions, CloudFormation returns
null.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
arn
TypeVersionSummary.Builder arn(String arn)
The Amazon Resource Name (ARN) of the extension version.
- Parameters:
arn- The Amazon Resource Name (ARN) of the extension version.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
timeCreated
TypeVersionSummary.Builder timeCreated(Instant timeCreated)
When the version was registered.
- Parameters:
timeCreated- When the version was registered.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
TypeVersionSummary.Builder description(String description)
The description of the extension version.
- Parameters:
description- The description of the extension version.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
publicVersionNumber
TypeVersionSummary.Builder publicVersionNumber(String publicVersionNumber)
For public extensions that have been activated for this account and Region, the version of the public extension to be used for CloudFormation operations in this account and Region. For any extensions other than activated third-arty extensions, CloudFormation returns
null.How you specified
AutoUpdatewhen enabling the extension affects whether CloudFormation automatically updates the extension in this account and Region when a new version is released. For more information, see Setting CloudFormation to automatically use new versions of extensions in the CloudFormation User Guide.- Parameters:
publicVersionNumber- For public extensions that have been activated for this account and Region, the version of the public extension to be used for CloudFormation operations in this account and Region. For any extensions other than activated third-arty extensions, CloudFormation returnsnull.How you specified
AutoUpdatewhen enabling the extension affects whether CloudFormation automatically updates the extension in this account and Region when a new version is released. For more information, see Setting CloudFormation to automatically use new versions of extensions in the CloudFormation User Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-