Class: Aws::EC2::Types::CreateVolumePermission
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::CreateVolumePermission
- Includes:
- Structure
- Defined in:
- 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`.
12573 12574 12575 12576 12577 12578 |
# File 'lib/aws-sdk-ec2/types.rb', line 12573 class CreateVolumePermission < Struct.new( :group, :user_id) SENSITIVE = [] include Aws::Structure end |
#user_id ⇒ String
The ID of the Amazon Web Services account to be added or removed.
12573 12574 12575 12576 12577 12578 |
# File 'lib/aws-sdk-ec2/types.rb', line 12573 class CreateVolumePermission < Struct.new( :group, :user_id) SENSITIVE = [] include Aws::Structure end |