Class: Aws::CloudFormation::Types::PublishTypeInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::PublishTypeInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudformation/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The Amazon Resource Name (ARN) of the extension.
-
#public_version_number ⇒ String
The version number to assign to this version of the extension.
-
#type ⇒ String
The type of the extension.
-
#type_name ⇒ String
The name of the extension.
Instance Attribute Details
#arn ⇒ String
The Amazon Resource Name (ARN) of the extension.
Conditional: You must specify ‘Arn`, or `TypeName` and `Type`.
6328 6329 6330 6331 6332 6333 6334 6335 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 6328 class PublishTypeInput < Struct.new( :type, :arn, :type_name, :public_version_number) SENSITIVE = [] include Aws::Structure end |
#public_version_number ⇒ String
The version number to assign to this version of the extension.
Use the following format, and adhere to semantic versioning when assigning a version number to your extension:
‘MAJOR.MINOR.PATCH`
For more information, see [Semantic Versioning 2.0.0].
If you don’t specify a version number, CloudFormation increments the version number by one minor version release.
You cannot specify a version number the first time you publish a type. CloudFormation automatically sets the first version number to be ‘1.0.0`.
[1]: semver.org/
6328 6329 6330 6331 6332 6333 6334 6335 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 6328 class PublishTypeInput < Struct.new( :type, :arn, :type_name, :public_version_number) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of the extension.
Conditional: You must specify ‘Arn`, or `TypeName` and `Type`.
6328 6329 6330 6331 6332 6333 6334 6335 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 6328 class PublishTypeInput < Struct.new( :type, :arn, :type_name, :public_version_number) SENSITIVE = [] include Aws::Structure end |
#type_name ⇒ String
The name of the extension.
Conditional: You must specify ‘Arn`, or `TypeName` and `Type`.
6328 6329 6330 6331 6332 6333 6334 6335 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 6328 class PublishTypeInput < Struct.new( :type, :arn, :type_name, :public_version_number) SENSITIVE = [] include Aws::Structure end |