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.
18810 18811 18812 18813 18814 18815 |
# File 'lib/aws-sdk-glue/types.rb', line 18810 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.
18810 18811 18812 18813 18814 18815 |
# File 'lib/aws-sdk-glue/types.rb', line 18810 class RegistryId < Struct.new( :registry_name, :registry_arn) SENSITIVE = [] include Aws::Structure end |