Class: Aws::Glue::Types::RegistryId
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::RegistryId
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
A wrapper structure that may contain the registry name and Amazon Resource Name (ARN).
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #registry_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Arn of the registry to be updated. 
- 
  
    
      #registry_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Name of the registry. 
Instance Attribute Details
#registry_arn ⇒ String
Arn of the registry to be updated. One of ‘RegistryArn` or `RegistryName` has to be provided.
| 21143 21144 21145 21146 21147 21148 | # File 'lib/aws-sdk-glue/types.rb', line 21143 class RegistryId < Struct.new( :registry_name, :registry_arn) SENSITIVE = [] include Aws::Structure end | 
#registry_name ⇒ String
Name of the registry. Used only for lookup. One of ‘RegistryArn` or `RegistryName` has to be provided.
| 21143 21144 21145 21146 21147 21148 | # File 'lib/aws-sdk-glue/types.rb', line 21143 class RegistryId < Struct.new( :registry_name, :registry_arn) SENSITIVE = [] include Aws::Structure end |