Class: Aws::Personalize::Types::CreateSchemaRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Personalize::Types::CreateSchemaRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-personalize/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain ⇒ String
The domain for the schema.
-
#name ⇒ String
The name for the schema.
-
#schema ⇒ String
A schema in Avro JSON format.
Instance Attribute Details
#domain ⇒ String
The domain for the schema. If you are creating a schema for a dataset in a Domain dataset group, specify the domain you chose when you created the Domain dataset group.
1615 1616 1617 1618 1619 1620 1621 |
# File 'lib/aws-sdk-personalize/types.rb', line 1615 class CreateSchemaRequest < Struct.new( :name, :schema, :domain) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name for the schema.
1615 1616 1617 1618 1619 1620 1621 |
# File 'lib/aws-sdk-personalize/types.rb', line 1615 class CreateSchemaRequest < Struct.new( :name, :schema, :domain) SENSITIVE = [] include Aws::Structure end |
#schema ⇒ String
A schema in Avro JSON format.
1615 1616 1617 1618 1619 1620 1621 |
# File 'lib/aws-sdk-personalize/types.rb', line 1615 class CreateSchemaRequest < Struct.new( :name, :schema, :domain) SENSITIVE = [] include Aws::Structure end |