Class: Aws::EC2::Types::LaunchPermission
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::LaunchPermission
- Defined in:
- gems/aws-sdk-ec2/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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#group ⇒ String
The name of the group.
-
#user_id ⇒ String
The AWS account ID.
Instance Attribute Details
#group ⇒ String
The name of the group.
34285 34286 34287 34288 34289 34290 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 34285 class LaunchPermission < Struct.new( :group, :user_id) SENSITIVE = [] include Aws::Structure end |
#user_id ⇒ String
The AWS account ID.
34285 34286 34287 34288 34289 34290 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 34285 class LaunchPermission < Struct.new( :group, :user_id) SENSITIVE = [] include Aws::Structure end |