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

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

Instance Attribute Details

#registry_arnString

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

Returns:

  • (String)


17381
17382
17383
17384
17385
17386
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 17381

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)


17381
17382
17383
17384
17385
17386
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 17381

class RegistryId < Struct.new(
  :registry_name,
  :registry_arn)
  SENSITIVE = []
  include Aws::Structure
end