Class: Aws::CodeCommit::Types::UpdateRepositoryEncryptionKeyInput
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodeCommit::Types::UpdateRepositoryEncryptionKeyInput
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codecommit/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #kms_key_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the encryption key.
 - 
  
    
      #repository_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the repository for which you want to update the KMS encryption key used to encrypt and decrypt the repository.
 
Instance Attribute Details
#kms_key_id ⇒ String
The ID of the encryption key. You can view the ID of an encryption key in the KMS console, or use the KMS APIs to programmatically retrieve a key ID. For more information about acceptable values for keyID, see [KeyId] in the Decrypt API description in the *Key Management Service API Reference*.
[1]: docs.aws.amazon.com/kms/latest/APIReference/API_Decrypt.html#KMS-Decrypt-request-KeyId
      7161 7162 7163 7164 7165 7166  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 7161 class UpdateRepositoryEncryptionKeyInput < Struct.new( :repository_name, :kms_key_id) SENSITIVE = [] include Aws::Structure end  | 
  
#repository_name ⇒ String
The name of the repository for which you want to update the KMS encryption key used to encrypt and decrypt the repository.
      7161 7162 7163 7164 7165 7166  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 7161 class UpdateRepositoryEncryptionKeyInput < Struct.new( :repository_name, :kms_key_id) SENSITIVE = [] include Aws::Structure end  |