Class: Aws::EC2::Types::GetAllowedImagesSettingsResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::GetAllowedImagesSettingsResult
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#image_criteria ⇒ Array<Types::ImageCriterion>
The list of criteria for images that are discoverable and usable in the account in the specified Amazon Web Services Region.
-
#managed_by ⇒ String
The entity that manages the Allowed AMIs settings.
-
#state ⇒ String
The current state of the Allowed AMIs setting at the account level in the specified Amazon Web Services Region.
Instance Attribute Details
#image_criteria ⇒ Array<Types::ImageCriterion>
The list of criteria for images that are discoverable and usable in the account in the specified Amazon Web Services Region.
36999 37000 37001 37002 37003 37004 37005 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 36999 class GetAllowedImagesSettingsResult < Struct.new( :state, :image_criteria, :managed_by) SENSITIVE = [] include Aws::Structure end |
#managed_by ⇒ String
The entity that manages the Allowed AMIs settings. Possible values include:
account
- The Allowed AMIs settings is managed by the account.declarative-policy
- The Allowed AMIs settings is managed by a declarative policy and can't be modified by the account.
36999 37000 37001 37002 37003 37004 37005 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 36999 class GetAllowedImagesSettingsResult < Struct.new( :state, :image_criteria, :managed_by) SENSITIVE = [] include Aws::Structure end |
#state ⇒ String
The current state of the Allowed AMIs setting at the account level in the specified Amazon Web Services Region.
Possible values:
disabled
: All AMIs are allowed.audit-mode
: All AMIs are allowed, but theImageAllowed
field is set totrue
if the AMI would be allowed with the current list of criteria if allowed AMIs was enabled.enabled
: Only AMIs matching the image criteria are discoverable and available for use.
36999 37000 37001 37002 37003 37004 37005 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 36999 class GetAllowedImagesSettingsResult < Struct.new( :state, :image_criteria, :managed_by) SENSITIVE = [] include Aws::Structure end |