Class: Aws::EC2::Types::CreateVolumePermission
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::CreateVolumePermission
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb
Overview
Describes the user or group to be added or removed from the list of create volume permissions for a volume.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#group ⇒ String
The group to be added or removed.
-
#user_id ⇒ String
The ID of the Amazon Web Services account to be added or removed.
Instance Attribute Details
#group ⇒ String
The group to be added or removed. The possible value is all
.
13290 13291 13292 13293 13294 13295 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 13290 class CreateVolumePermission < Struct.new( :user_id, :group) SENSITIVE = [] include Aws::Structure end |
#user_id ⇒ String
The ID of the Amazon Web Services account to be added or removed.
13290 13291 13292 13293 13294 13295 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 13290 class CreateVolumePermission < Struct.new( :user_id, :group) SENSITIVE = [] include Aws::Structure end |