You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::CloudFormation::Types::DeregisterTypeInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing DeregisterTypeInput as input to an Aws::Client method, you can use a vanilla 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.

Conditional: You must specify either TypeName and Type, or Arn.

Returns:

  • (String)

    The Amazon Resource Name (ARN) of the type.

#typeString

The kind of type.

Currently the only valid value is RESOURCE.

Conditional: You must specify either TypeName and Type, or Arn.

Possible values:

  • RESOURCE

Returns:

  • (String)

    The kind of type.

#type_nameString

The name of the type.

Conditional: You must specify either TypeName and Type, or Arn.

Returns:

  • (String)

    The name of the type.

#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)

    The ID of a specific version of the type.