Class: Aws::Synthetics::Types::CreateGroupRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Synthetics::Types::CreateGroupRequest
- Defined in:
- gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name for the group.
-
#tags ⇒ Hash<String,String>
A list of key-value pairs to associate with the group.
Instance Attribute Details
#name ⇒ String
The name for the group. It can include any Unicode characters.
The names for all groups in your account, across all Regions, must be unique.
1128 1129 1130 1131 1132 1133 |
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 1128 class CreateGroupRequest < Struct.new( :name, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
A list of key-value pairs to associate with the group. You can associate as many as 50 tags with a group.
Tags can help you organize and categorize your resources. You can also use them to scope user permissions, by granting a user permission to access or change only the resources that have certain tag values.
1128 1129 1130 1131 1132 1133 |
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 1128 class CreateGroupRequest < Struct.new( :name, :tags) SENSITIVE = [] include Aws::Structure end |