Class: Aws::ResourceGroups::Types::ResourceIdentifier

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

Overview

A structure that contains the ARN of a resource and its resource type.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

The ARN of a resource.

Returns:

  • (String)


998
999
1000
1001
1002
1003
# File 'gems/aws-sdk-resourcegroups/lib/aws-sdk-resourcegroups/types.rb', line 998

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

#resource_typeString

The resource type of a resource, such as AWS::EC2::Instance.

Returns:

  • (String)


998
999
1000
1001
1002
1003
# File 'gems/aws-sdk-resourcegroups/lib/aws-sdk-resourcegroups/types.rb', line 998

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