Class: Aws::Inspector::Types::ResourceGroup
- Inherits:
-
Struct
- Object
- Struct
- Aws::Inspector::Types::ResourceGroup
- Defined in:
- gems/aws-sdk-inspector/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.
2823 2824 2825 2826 2827 2828 2829 |
# File 'gems/aws-sdk-inspector/lib/aws-sdk-inspector/types.rb', line 2823 class ResourceGroup < Struct.new( :arn, :tags, :created_at) SENSITIVE = [] include Aws::Structure end |
#created_at ⇒ Time
The time at which resource group is created.
2823 2824 2825 2826 2827 2828 2829 |
# File 'gems/aws-sdk-inspector/lib/aws-sdk-inspector/types.rb', line 2823 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.
2823 2824 2825 2826 2827 2828 2829 |
# File 'gems/aws-sdk-inspector/lib/aws-sdk-inspector/types.rb', line 2823 class ResourceGroup < Struct.new( :arn, :tags, :created_at) SENSITIVE = [] include Aws::Structure end |