Class: Aws::LexModelsV2::Types::UpdateResourcePolicyRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::LexModelsV2::Types::UpdateResourcePolicyRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-lexmodelsv2/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #expected_revision_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The identifier of the revision of the policy to update.
 - 
  
    
      #policy  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A resource policy to add to the resource.
 - 
  
    
      #resource_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) of the bot or bot alias that the resource policy is attached to.
 
Instance Attribute Details
#expected_revision_id ⇒ String
The identifier of the revision of the policy to update. If this revision ID doesn’t match the current revision ID, Amazon Lex throws an exception.
If you don’t specify a revision, Amazon Lex overwrites the contents of the policy with the new values.
      14993 14994 14995 14996 14997 14998 14999  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 14993 class UpdateResourcePolicyRequest < Struct.new( :resource_arn, :policy, :expected_revision_id) SENSITIVE = [] include Aws::Structure end  | 
  
#policy ⇒ String
A resource policy to add to the resource. The policy is a JSON structure that contains one or more statements that define the policy. The policy must follow the IAM syntax. For more information about the contents of a JSON policy document, see [ IAM JSON policy reference ][1].
If the policy isn’t valid, Amazon Lex returns a validation exception.
[1]: docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies.html
      14993 14994 14995 14996 14997 14998 14999  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 14993 class UpdateResourcePolicyRequest < Struct.new( :resource_arn, :policy, :expected_revision_id) SENSITIVE = [] include Aws::Structure end  | 
  
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the bot or bot alias that the resource policy is attached to.
      14993 14994 14995 14996 14997 14998 14999  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 14993 class UpdateResourcePolicyRequest < Struct.new( :resource_arn, :policy, :expected_revision_id) SENSITIVE = [] include Aws::Structure end  |