Class: Aws::DataExchange::Types::SchemaChangeDetails

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

Instance Attribute Details

#descriptionString

Description of what's changing about this field. This value can be up to 512 characters long.

Returns:

  • (String)


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

#nameString

Name of the changing field. This value can be up to 255 characters long.

Returns:

  • (String)


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

#typeString

Is the field being added, removed, or modified?

Returns:

  • (String)


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