You are viewing documentation for version 3 of the AWS SDK for Ruby. Version 2 documentation can be found here.
Class: Aws::AppStream::Types::ImagePermissions
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppStream::Types::ImagePermissions
- Defined in:
- gems/aws-sdk-appstream/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
-
#allow_fleet ⇒ Boolean
Indicates whether the image can be used for a fleet.
-
#allow_image_builder ⇒ Boolean
Indicates whether the image can be used for an image builder.
Instance Attribute Details
#allow_fleet ⇒ Boolean
Indicates whether the image can be used for a fleet.
2615 2616 2617 2618 2619 |
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 2615 class ImagePermissions < Struct.new( :allow_fleet, :allow_image_builder) include Aws::Structure end |
#allow_image_builder ⇒ Boolean
Indicates whether the image can be used for an image builder.
2615 2616 2617 2618 2619 |
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 2615 class ImagePermissions < Struct.new( :allow_fleet, :allow_image_builder) include Aws::Structure end |