Class: Aws::AppStream::Types::UpdateImagePermissionsRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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,
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#image_permissionsTypes::ImagePermissions

The permissions for the image.



2940
2941
2942
2943
2944
2945
# File 'lib/aws-sdk-appstream/types.rb', line 2940

class UpdateImagePermissionsRequest < Struct.new(
  :name,
  :shared_account_id,
  :image_permissions)
  include Aws::Structure
end

#nameString

The name of the private image.

Returns:

  • (String)


2940
2941
2942
2943
2944
2945
# File 'lib/aws-sdk-appstream/types.rb', line 2940

class UpdateImagePermissionsRequest < Struct.new(
  :name,
  :shared_account_id,
  :image_permissions)
  include Aws::Structure
end

#shared_account_idString

The 12-digit identifier of the AWS account for which you want add or update image permissions.

Returns:

  • (String)


2940
2941
2942
2943
2944
2945
# File 'lib/aws-sdk-appstream/types.rb', line 2940

class UpdateImagePermissionsRequest < Struct.new(
  :name,
  :shared_account_id,
  :image_permissions)
  include Aws::Structure
end