Class: Aws::EC2::Types::LaunchPermission

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ec2/types.rb

Overview

Note:

When making an API call, you may pass LaunchPermission data as a hash:

{
  group: "all", # accepts all
  user_id: "String",
}

Describes a launch permission.

Instance Attribute Summary collapse

Instance Attribute Details

#groupString

The name of the group.

Returns:

  • (String)


23539
23540
23541
23542
23543
# File 'lib/aws-sdk-ec2/types.rb', line 23539

class LaunchPermission < Struct.new(
  :group,
  :user_id)
  include Aws::Structure
end

#user_idString

The AWS account ID.

Returns:

  • (String)


23539
23540
23541
23542
23543
# File 'lib/aws-sdk-ec2/types.rb', line 23539

class LaunchPermission < Struct.new(
  :group,
  :user_id)
  include Aws::Structure
end