Class: Aws::Glue::Types::RegistryId
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::RegistryId
- Defined in:
- gems/aws-sdk-glue/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.
21054 21055 21056 21057 21058 21059 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 21054 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.
21054 21055 21056 21057 21058 21059 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 21054 class RegistryId < Struct.new( :registry_name, :registry_arn) SENSITIVE = [] include Aws::Structure end |