Class: Aws::CloudFormation::Types::SetTypeDefaultVersionInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cloudformation/types.rb

Overview

Note:

When making an API call, you may pass SetTypeDefaultVersionInput data as a hash:

{
  arn: "PrivateTypeArn",
  type: "RESOURCE", # accepts RESOURCE
  type_name: "TypeName",
  version_id: "TypeVersionId",
}

Instance Attribute Summary collapse

Instance Attribute Details

#arnString

The Amazon Resource Name (ARN) of the type for which you want version summary information.

Conditional: You must specify ‘TypeName` or `Arn`.

Returns:

  • (String)


4802
4803
4804
4805
4806
4807
4808
# File 'lib/aws-sdk-cloudformation/types.rb', line 4802

class SetTypeDefaultVersionInput < Struct.new(
  :arn,
  :type,
  :type_name,
  :version_id)
  include Aws::Structure
end

#typeString

The kind of type.

Returns:

  • (String)


4802
4803
4804
4805
4806
4807
4808
# File 'lib/aws-sdk-cloudformation/types.rb', line 4802

class SetTypeDefaultVersionInput < Struct.new(
  :arn,
  :type,
  :type_name,
  :version_id)
  include Aws::Structure
end

#type_nameString

The name of the type.

Conditional: You must specify ‘TypeName` or `Arn`.

Returns:

  • (String)


4802
4803
4804
4805
4806
4807
4808
# File 'lib/aws-sdk-cloudformation/types.rb', line 4802

class SetTypeDefaultVersionInput < Struct.new(
  :arn,
  :type,
  :type_name,
  :version_id)
  include Aws::Structure
end

#version_idString

The ID of a specific version of the type. The version ID is the value at the end of the Amazon Resource Name (ARN) assigned to the type version when it is registered.

Returns:

  • (String)


4802
4803
4804
4805
4806
4807
4808
# File 'lib/aws-sdk-cloudformation/types.rb', line 4802

class SetTypeDefaultVersionInput < Struct.new(
  :arn,
  :type,
  :type_name,
  :version_id)
  include Aws::Structure
end