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

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

Instance Attribute Details

#groupString

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

Returns:

  • (String)


12381
12382
12383
12384
12385
12386
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 12381

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)


12381
12382
12383
12384
12385
12386
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 12381

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