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.
Constant Summary collapse
- SENSITIVE =
[]
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.
3901 3902 3903 3904 3905 3906 |
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 3901 class ImagePermissions < Struct.new( :allow_fleet, :allow_image_builder) SENSITIVE = [] include Aws::Structure end |
#allow_image_builder ⇒ Boolean
Indicates whether the image can be used for an image builder.
3901 3902 3903 3904 3905 3906 |
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 3901 class ImagePermissions < Struct.new( :allow_fleet, :allow_image_builder) SENSITIVE = [] include Aws::Structure end |