Class: Aws::DataExchange::Types::SchemaChangeDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataExchange::Types::SchemaChangeDetails
- Defined in:
- gems/aws-sdk-dataexchange/lib/aws-sdk-dataexchange/types.rb
Overview
Object encompassing information about a schema change to a single, particular field, a notification can have up to 100 of these.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#description ⇒ String
Description of what's changing about this field.
-
#name ⇒ String
Name of the changing field.
-
#type ⇒ String
Is the field being added, removed, or modified?.
Instance Attribute Details
#description ⇒ String
Description of what's changing about this field. This value can be up to 512 characters long.
3062 3063 3064 3065 3066 3067 3068 |
# File 'gems/aws-sdk-dataexchange/lib/aws-sdk-dataexchange/types.rb', line 3062 class SchemaChangeDetails < Struct.new( :name, :type, :description) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
Name of the changing field. This value can be up to 255 characters long.
3062 3063 3064 3065 3066 3067 3068 |
# File 'gems/aws-sdk-dataexchange/lib/aws-sdk-dataexchange/types.rb', line 3062 class SchemaChangeDetails < Struct.new( :name, :type, :description) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
Is the field being added, removed, or modified?
3062 3063 3064 3065 3066 3067 3068 |
# File 'gems/aws-sdk-dataexchange/lib/aws-sdk-dataexchange/types.rb', line 3062 class SchemaChangeDetails < Struct.new( :name, :type, :description) SENSITIVE = [] include Aws::Structure end |