Class: Aws::AppStream::Types::UpdateImagePermissionsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppStream::Types::UpdateImagePermissionsRequest
- Defined in:
- gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb
Overview
Note:
When making an API call, you may pass UpdateImagePermissionsRequest data as a hash:
{
name: "Name", # required
shared_account_id: "AwsAccountId", # required
image_permissions: { # required
allow_fleet: false,
allow_image_builder: false,
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#image_permissions ⇒ Types::ImagePermissions
The permissions for the image.
-
#name ⇒ String
The name of the private image.
-
#shared_account_id ⇒ String
The 12-digit identifier of the AWS account for which you want add or update image permissions.
Instance Attribute Details
#image_permissions ⇒ Types::ImagePermissions
The permissions for the image.
5388 5389 5390 5391 5392 5393 5394 |
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 5388 class UpdateImagePermissionsRequest < Struct.new( :name, :shared_account_id, :image_permissions) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the private image.
5388 5389 5390 5391 5392 5393 5394 |
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 5388 class UpdateImagePermissionsRequest < Struct.new( :name, :shared_account_id, :image_permissions) SENSITIVE = [] include Aws::Structure end |
#shared_account_id ⇒ String
The 12-digit identifier of the AWS account for which you want add or update image permissions.
5388 5389 5390 5391 5392 5393 5394 |
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 5388 class UpdateImagePermissionsRequest < Struct.new( :name, :shared_account_id, :image_permissions) SENSITIVE = [] include Aws::Structure end |