Class: Aws::EC2::Types::GetImageBlockPublicAccessStateResult
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EC2::Types::GetImageBlockPublicAccessStateResult
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-ec2/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #image_block_public_access_state  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The current state of block public access for AMIs at the account level in the specified Amazon Web Services Region.
 - 
  
    
      #managed_by  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The entity that manages the state for block public access for AMIs.
 
Instance Attribute Details
#image_block_public_access_state ⇒ String
The current state of block public access for AMIs at the account level in the specified Amazon Web Services Region.
Possible values:
- 
‘block-new-sharing` - Any attempt to publicly share your AMIs in the specified Region is blocked.
 - 
‘unblocked` - Your AMIs in the specified Region can be publicly shared.
 
      37370 37371 37372 37373 37374 37375  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 37370 class GetImageBlockPublicAccessStateResult < Struct.new( :image_block_public_access_state, :managed_by) SENSITIVE = [] include Aws::Structure end  | 
  
#managed_by ⇒ String
The entity that manages the state for block public access for AMIs. Possible values include:
- 
‘account` - The state is managed by the account.
 - 
‘declarative-policy` - The state is managed by a declarative policy and can’t be modified by the account.
 
      37370 37371 37372 37373 37374 37375  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 37370 class GetImageBlockPublicAccessStateResult < Struct.new( :image_block_public_access_state, :managed_by) SENSITIVE = [] include Aws::Structure end  |