Class: Aws::ConfigService::Types::ResourceKey

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb

Overview

The details that identify a resource within Config, including the resource type and resource ID.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_idString

The ID of the resource (for example., sg-xxxxxx).

Returns:

  • (String)


8093
8094
8095
8096
8097
8098
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 8093

class ResourceKey < Struct.new(
  :resource_type,
  :resource_id)
  SENSITIVE = []
  include Aws::Structure
end

#resource_typeString

The resource type.

Returns:

  • (String)


8093
8094
8095
8096
8097
8098
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 8093

class ResourceKey < Struct.new(
  :resource_type,
  :resource_id)
  SENSITIVE = []
  include Aws::Structure
end