Package com.pulumi.aws.glue
Class Schema
- java.lang.Object
-
- com.pulumi.resources.Resource
-
- com.pulumi.resources.CustomResource
-
- com.pulumi.aws.glue.Schema
-
public class Schema extends com.pulumi.resources.CustomResource
Provides a Glue Schema resource. ## Example Usage <!--Start PulumiCodeChooser --> ```java package generated_program; import com.pulumi.Context; import com.pulumi.Pulumi; import com.pulumi.core.Output; import com.pulumi.aws.glue.Schema; import com.pulumi.aws.glue.SchemaArgs; import java.util.List; import java.util.ArrayList; import java.util.Map; import java.io.File; import java.nio.file.Files; import java.nio.file.Paths; public class App { public static void main(String[] args) { Pulumi.run(App::stack); } public static void stack(Context ctx) { var example = new Schema("example", SchemaArgs.builder() .schemaName("example") .registryArn(test.arn()) .dataFormat("AVRO") .compatibility("NONE") .schemaDefinition("{\"type\": \"record\", \"name\": \"r1\", \"fields\": [ {\"name\": \"f1\", \"type\": \"int\"}, {\"name\": \"f2\", \"type\": \"string\"} ]}") .build()); } } ``` <!--End PulumiCodeChooser --> ## Import Using `pulumi import`, import Glue Registries using `arn`. For example: ```sh $ pulumi import aws:glue/schema:Schema example arn:aws:glue:us-west-2:123456789012:schema/example/example ```
-
-
Constructor Summary
Constructors Constructor Description Schema(java.lang.String name)
Schema(java.lang.String name, SchemaArgs args)
Schema(java.lang.String name, SchemaArgs args, com.pulumi.resources.CustomResourceOptions options)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description com.pulumi.core.Output<java.lang.String>
arn()
com.pulumi.core.Output<java.lang.String>
compatibility()
com.pulumi.core.Output<java.lang.String>
dataFormat()
com.pulumi.core.Output<java.util.Optional<java.lang.String>>
description()
static Schema
get(java.lang.String name, com.pulumi.core.Output<java.lang.String> id, SchemaState state, com.pulumi.resources.CustomResourceOptions options)
Get an existing Host resource's state with the given name, ID, and optional extra properties used to qualify the lookup.com.pulumi.core.Output<java.lang.Integer>
latestSchemaVersion()
com.pulumi.core.Output<java.lang.Integer>
nextSchemaVersion()
com.pulumi.core.Output<java.lang.String>
registryArn()
com.pulumi.core.Output<java.lang.String>
registryName()
com.pulumi.core.Output<java.lang.Integer>
schemaCheckpoint()
com.pulumi.core.Output<java.lang.String>
schemaDefinition()
com.pulumi.core.Output<java.lang.String>
schemaName()
com.pulumi.core.Output<java.util.Optional<java.util.Map<java.lang.String,java.lang.String>>>
tags()
com.pulumi.core.Output<java.util.Map<java.lang.String,java.lang.String>>
tagsAll()
-
-
-
Constructor Detail
-
Schema
public Schema(java.lang.String name)
- Parameters:
name
- The _unique_ name of the resulting resource.
-
Schema
public Schema(java.lang.String name, SchemaArgs args)
- Parameters:
name
- The _unique_ name of the resulting resource.args
- The arguments to use to populate this resource's properties.
-
Schema
public Schema(java.lang.String name, SchemaArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options)
- Parameters:
name
- The _unique_ name of the resulting resource.args
- The arguments to use to populate this resource's properties.options
- A bag of options that control this resource's behavior.
-
-
Method Detail
-
arn
public com.pulumi.core.Output<java.lang.String> arn()
- Returns:
- Amazon Resource Name (ARN) of the schema.
-
compatibility
public com.pulumi.core.Output<java.lang.String> compatibility()
- Returns:
- The compatibility mode of the schema. Values values are: `NONE`, `DISABLED`, `BACKWARD`, `BACKWARD_ALL`, `FORWARD`, `FORWARD_ALL`, `FULL`, and `FULL_ALL`.
-
dataFormat
public com.pulumi.core.Output<java.lang.String> dataFormat()
- Returns:
- The data format of the schema definition. Valid values are `AVRO`, `JSON` and `PROTOBUF`.
-
description
public com.pulumi.core.Output<java.util.Optional<java.lang.String>> description()
- Returns:
- A description of the schema.
-
latestSchemaVersion
public com.pulumi.core.Output<java.lang.Integer> latestSchemaVersion()
- Returns:
- The latest version of the schema associated with the returned schema definition.
-
nextSchemaVersion
public com.pulumi.core.Output<java.lang.Integer> nextSchemaVersion()
- Returns:
- The next version of the schema associated with the returned schema definition.
-
registryArn
public com.pulumi.core.Output<java.lang.String> registryArn()
- Returns:
- The ARN of the Glue Registry to create the schema in.
-
registryName
public com.pulumi.core.Output<java.lang.String> registryName()
- Returns:
- The name of the Glue Registry.
-
schemaCheckpoint
public com.pulumi.core.Output<java.lang.Integer> schemaCheckpoint()
- Returns:
- The version number of the checkpoint (the last time the compatibility mode was changed).
-
schemaDefinition
public com.pulumi.core.Output<java.lang.String> schemaDefinition()
- Returns:
- The schema definition using the `data_format` setting for `schema_name`.
-
schemaName
public com.pulumi.core.Output<java.lang.String> schemaName()
- Returns:
- The Name of the schema.
-
tags
public com.pulumi.core.Output<java.util.Optional<java.util.Map<java.lang.String,java.lang.String>>> tags()
- Returns:
- Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
-
tagsAll
public com.pulumi.core.Output<java.util.Map<java.lang.String,java.lang.String>> tagsAll()
- Returns:
- A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.
-
get
public static Schema get(java.lang.String name, com.pulumi.core.Output<java.lang.String> id, @Nullable SchemaState state, @Nullable com.pulumi.resources.CustomResourceOptions options)
Get an existing Host resource's state with the given name, ID, and optional extra properties used to qualify the lookup.- Parameters:
name
- The _unique_ name of the resulting resource.id
- The _unique_ provider ID of the resource to lookup.state
-options
- Optional settings to control the behavior of the CustomResource.
-
-