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`.
13552 13553 13554 13555 13556 13557 |
# File 'lib/aws-sdk-ec2/types.rb', line 13552 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.
13552 13553 13554 13555 13556 13557 |
# File 'lib/aws-sdk-ec2/types.rb', line 13552 class CreateVolumePermission < Struct.new( :user_id, :group) SENSITIVE = [] include Aws::Structure end |