Class: Aws::AppStream::Types::ImagePermissions

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 ImagePermissions data as a hash:

{
  allow_fleet: false,
  allow_image_builder: false,
}

Describes the permissions for an image.

Instance Attribute Summary collapse

Instance Attribute Details

#allow_fleetBoolean

Indicates whether the image can be used for a fleet.

Returns:

  • (Boolean)


2114
2115
2116
2117
2118
# File 'lib/aws-sdk-appstream/types.rb', line 2114

class ImagePermissions < Struct.new(
  :allow_fleet,
  :allow_image_builder)
  include Aws::Structure
end

#allow_image_builderBoolean

Indicates whether the image can be used for an image builder.

Returns:

  • (Boolean)


2114
2115
2116
2117
2118
# File 'lib/aws-sdk-appstream/types.rb', line 2114

class ImagePermissions < Struct.new(
  :allow_fleet,
  :allow_image_builder)
  include Aws::Structure
end