Class: Aws::Glue::Types::UpdateRegistryInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::UpdateRegistryInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Note:
When making an API call, you may pass UpdateRegistryInput data as a hash:
{
registry_id: { # required
registry_name: "SchemaRegistryNameString",
registry_arn: "GlueResourceArn",
},
description: "DescriptionString", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#description ⇒ String
A description of the registry.
-
#registry_id ⇒ Types::RegistryId
This is a wrapper structure that may contain the registry name and Amazon Resource Name (ARN).
Instance Attribute Details
#description ⇒ String
A description of the registry. If description is not provided, this field will not be updated.
16464 16465 16466 16467 16468 16469 |
# File 'lib/aws-sdk-glue/types.rb', line 16464 class UpdateRegistryInput < Struct.new( :registry_id, :description) SENSITIVE = [] include Aws::Structure end |
#registry_id ⇒ Types::RegistryId
This is a wrapper structure that may contain the registry name and Amazon Resource Name (ARN).
16464 16465 16466 16467 16468 16469 |
# File 'lib/aws-sdk-glue/types.rb', line 16464 class UpdateRegistryInput < Struct.new( :registry_id, :description) SENSITIVE = [] include Aws::Structure end |