Class: Aws::CloudControlApi::Types::ResourceDescription

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

Overview

Represents information about a provisioned resource.

Constant Summary collapse

SENSITIVE =
[:properties]

Instance Attribute Summary collapse

Instance Attribute Details

#identifierString

The primary identifier for the resource.

For more information, see [Identifying resources] in the *Amazon Web Services Cloud Control API User Guide*.

[1]: docs.aws.amazon.com/cloudcontrolapi/latest/userguide/resource-identifier.html

Returns:

  • (String)


856
857
858
859
860
861
# File 'lib/aws-sdk-cloudcontrolapi/types.rb', line 856

class ResourceDescription < Struct.new(
  :identifier,
  :properties)
  SENSITIVE = [:properties]
  include Aws::Structure
end

#propertiesString

A list of the resource properties and their current values.

Returns:

  • (String)


856
857
858
859
860
861
# File 'lib/aws-sdk-cloudcontrolapi/types.rb', line 856

class ResourceDescription < Struct.new(
  :identifier,
  :properties)
  SENSITIVE = [:properties]
  include Aws::Structure
end