Class: Aws::Glue::Types::RegistryId

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#registry_arnString

Arn of the registry to be updated. One of ‘RegistryArn` or `RegistryName` has to be provided.

Returns:

  • (String)


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_nameString

Name of the registry. Used only for lookup. One of ‘RegistryArn` or `RegistryName` has to be provided.

Returns:

  • (String)


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