Class: Aws::CloudDirectory::Types::PublishSchemaRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudDirectory::Types::PublishSchemaRequest
- Defined in:
- gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb
Overview
When making an API call, you may pass PublishSchemaRequest data as a hash:
{
development_schema_arn: "Arn", # required
version: "Version", # required
minor_version: "Version",
name: "SchemaName",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#development_schema_arn ⇒ String
The Amazon Resource Name (ARN) that is associated with the development schema.
-
#minor_version ⇒ String
The minor version under which the schema will be published.
-
#name ⇒ String
The new name under which the schema will be published.
-
#version ⇒ String
The major version under which the schema will be published.
Instance Attribute Details
#development_schema_arn ⇒ String
The Amazon Resource Name (ARN) that is associated with the development schema. For more information, see arns.
7301 7302 7303 7304 7305 7306 7307 7308 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 7301 class PublishSchemaRequest < Struct.new( :development_schema_arn, :version, :minor_version, :name) SENSITIVE = [] include Aws::Structure end |
#minor_version ⇒ String
The minor version under which the schema will be published. This parameter is recommended. Schemas have both a major and minor version associated with them.
7301 7302 7303 7304 7305 7306 7307 7308 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 7301 class PublishSchemaRequest < Struct.new( :development_schema_arn, :version, :minor_version, :name) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The new name under which the schema will be published. If this is not provided, the development schema is considered.
7301 7302 7303 7304 7305 7306 7307 7308 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 7301 class PublishSchemaRequest < Struct.new( :development_schema_arn, :version, :minor_version, :name) SENSITIVE = [] include Aws::Structure end |
#version ⇒ String
The major version under which the schema will be published. Schemas have both a major and minor version associated with them.
7301 7302 7303 7304 7305 7306 7307 7308 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 7301 class PublishSchemaRequest < Struct.new( :development_schema_arn, :version, :minor_version, :name) SENSITIVE = [] include Aws::Structure end |