Class: Aws::ResourceGroups::Types::Group
- Inherits:
-
Struct
- Object
- Struct
- Aws::ResourceGroups::Types::Group
- Defined in:
- gems/aws-sdk-resourcegroups/lib/aws-sdk-resourcegroups/types.rb
Overview
A resource group that contains AWS resources. You can assign resources to the group by associating either of the following elements with the group:
ResourceQuery - Use a resource query to specify a set of tag keys and values. All resources in the same AWS Region and AWS account that have those keys with the same values are included in the group. You can add a resource query when you create the group, or later by using the PutGroupConfiguration operation.
GroupConfiguration - Use a service configuration to associate the group with an AWS service. The configuration specifies which resource types can be included in the group.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#description ⇒ String
The description of the resource group.
-
#group_arn ⇒ String
The ARN of the resource group.
-
#name ⇒ String
The name of the resource group.
Instance Attribute Details
#description ⇒ String
The description of the resource group.
409 410 411 412 413 414 415 |
# File 'gems/aws-sdk-resourcegroups/lib/aws-sdk-resourcegroups/types.rb', line 409 class Group < Struct.new( :group_arn, :name, :description) SENSITIVE = [] include Aws::Structure end |