Class: Aws::Inspector::Types::ResourceGroup
- Inherits:
-
Struct
- Object
- Struct
- Aws::Inspector::Types::ResourceGroup
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-inspector/types.rb
Overview
Contains information about a resource group. The resource group defines a set of tags that, when queried, identify the AWS resources that make up the assessment target. This data type is used as the response element in the DescribeResourceGroups action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The ARN of the resource group.
-
#created_at ⇒ Time
The time at which resource group is created.
-
#tags ⇒ Array<Types::ResourceGroupTag>
The tags (key and value pairs) of the resource group.
Instance Attribute Details
#arn ⇒ String
The ARN of the resource group.
2412 2413 2414 2415 2416 2417 2418 |
# File 'lib/aws-sdk-inspector/types.rb', line 2412 class ResourceGroup < Struct.new( :arn, :tags, :created_at) SENSITIVE = [] include Aws::Structure end |
#created_at ⇒ Time
The time at which resource group is created.
2412 2413 2414 2415 2416 2417 2418 |
# File 'lib/aws-sdk-inspector/types.rb', line 2412 class ResourceGroup < Struct.new( :arn, :tags, :created_at) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::ResourceGroupTag>
The tags (key and value pairs) of the resource group. This data type property is used in the CreateResourceGroup action.
2412 2413 2414 2415 2416 2417 2418 |
# File 'lib/aws-sdk-inspector/types.rb', line 2412 class ResourceGroup < Struct.new( :arn, :tags, :created_at) SENSITIVE = [] include Aws::Structure end |