Class: Aws::EC2::Types::CreateVolumePermission

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#groupString

The group to be added or removed. The possible value is ‘all`.

Returns:

  • (String)


12385
12386
12387
12388
12389
12390
# File 'lib/aws-sdk-ec2/types.rb', line 12385

class CreateVolumePermission < Struct.new(
  :group,
  :user_id)
  SENSITIVE = []
  include Aws::Structure
end

#user_idString

The ID of the Amazon Web Services account to be added or removed.

Returns:

  • (String)


12385
12386
12387
12388
12389
12390
# File 'lib/aws-sdk-ec2/types.rb', line 12385

class CreateVolumePermission < Struct.new(
  :group,
  :user_id)
  SENSITIVE = []
  include Aws::Structure
end