Class: Aws::ResourceGroups::Types::PutGroupConfigurationInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::ResourceGroups::Types::PutGroupConfigurationInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-resourcegroups/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#configuration ⇒ Array<Types::GroupConfigurationItem>
The new configuration to associate with the specified group.
-
#group ⇒ String
The name or ARN of the resource group with the configuration that you want to update.
Instance Attribute Details
#configuration ⇒ Array<Types::GroupConfigurationItem>
The new configuration to associate with the specified group. A configuration associates the resource group with an Amazon Web Services service and specifies how the service can interact with the resources in the group. A configuration is an array of GroupConfigurationItem elements.
For information about the syntax of a service configuration, see [Service configurations for Resource Groups].
<note markdown=“1”> A resource group can contain either a ‘Configuration` or a `ResourceQuery`, but not both.
</note>
[1]: docs.aws.amazon.com/ARG/latest/APIReference/about-slg.html
934 935 936 937 938 939 |
# File 'lib/aws-sdk-resourcegroups/types.rb', line 934 class PutGroupConfigurationInput < Struct.new( :group, :configuration) SENSITIVE = [] include Aws::Structure end |
#group ⇒ String
The name or ARN of the resource group with the configuration that you want to update.
934 935 936 937 938 939 |
# File 'lib/aws-sdk-resourcegroups/types.rb', line 934 class PutGroupConfigurationInput < Struct.new( :group, :configuration) SENSITIVE = [] include Aws::Structure end |