Try AWS Native preview for resources not in the classic version.
aws.transcribe.Vocabulary
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
Resource for managing an AWS Transcribe Vocabulary.
Example Usage
Basic Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var exampleBucketV2 = new Aws.S3.BucketV2("exampleBucketV2", new()
{
ForceDestroy = true,
});
var @object = new Aws.S3.BucketObjectv2("object", new()
{
Bucket = exampleBucketV2.Id,
Key = "transcribe/test1.txt",
Source = new FileAsset("test.txt"),
});
var exampleVocabulary = new Aws.Transcribe.Vocabulary("exampleVocabulary", new()
{
VocabularyName = "example",
LanguageCode = "en-US",
VocabularyFileUri = Output.Tuple(exampleBucketV2.Id, @object.Key).Apply(values =>
{
var id = values.Item1;
var key = values.Item2;
return $"s3://{id}/{key}";
}),
Tags =
{
{ "tag1", "value1" },
{ "tag2", "value3" },
},
}, new CustomResourceOptions
{
DependsOn = new[]
{
@object,
},
});
});
package main
import (
"fmt"
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/s3"
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/transcribe"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleBucketV2, err := s3.NewBucketV2(ctx, "exampleBucketV2", &s3.BucketV2Args{
ForceDestroy: pulumi.Bool(true),
})
if err != nil {
return err
}
object, err := s3.NewBucketObjectv2(ctx, "object", &s3.BucketObjectv2Args{
Bucket: exampleBucketV2.ID(),
Key: pulumi.String("transcribe/test1.txt"),
Source: pulumi.NewFileAsset("test.txt"),
})
if err != nil {
return err
}
_, err = transcribe.NewVocabulary(ctx, "exampleVocabulary", &transcribe.VocabularyArgs{
VocabularyName: pulumi.String("example"),
LanguageCode: pulumi.String("en-US"),
VocabularyFileUri: pulumi.All(exampleBucketV2.ID(), object.Key).ApplyT(func(_args []interface{}) (string, error) {
id := _args[0].(string)
key := _args[1].(string)
return fmt.Sprintf("s3://%v/%v", id, key), nil
}).(pulumi.StringOutput),
Tags: pulumi.StringMap{
"tag1": pulumi.String("value1"),
"tag2": pulumi.String("value3"),
},
}, pulumi.DependsOn([]pulumi.Resource{
object,
}))
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.s3.BucketV2;
import com.pulumi.aws.s3.BucketV2Args;
import com.pulumi.aws.s3.BucketObjectv2;
import com.pulumi.aws.s3.BucketObjectv2Args;
import com.pulumi.aws.transcribe.Vocabulary;
import com.pulumi.aws.transcribe.VocabularyArgs;
import com.pulumi.resources.CustomResourceOptions;
import com.pulumi.asset.FileAsset;
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 exampleBucketV2 = new BucketV2("exampleBucketV2", BucketV2Args.builder()
.forceDestroy(true)
.build());
var object = new BucketObjectv2("object", BucketObjectv2Args.builder()
.bucket(exampleBucketV2.id())
.key("transcribe/test1.txt")
.source(new FileAsset("test.txt"))
.build());
var exampleVocabulary = new Vocabulary("exampleVocabulary", VocabularyArgs.builder()
.vocabularyName("example")
.languageCode("en-US")
.vocabularyFileUri(Output.tuple(exampleBucketV2.id(), object.key()).applyValue(values -> {
var id = values.t1;
var key = values.t2;
return String.format("s3://%s/%s", id,key);
}))
.tags(Map.ofEntries(
Map.entry("tag1", "value1"),
Map.entry("tag2", "value3")
))
.build(), CustomResourceOptions.builder()
.dependsOn(object)
.build());
}
}
import pulumi
import pulumi_aws as aws
example_bucket_v2 = aws.s3.BucketV2("exampleBucketV2", force_destroy=True)
object = aws.s3.BucketObjectv2("object",
bucket=example_bucket_v2.id,
key="transcribe/test1.txt",
source=pulumi.FileAsset("test.txt"))
example_vocabulary = aws.transcribe.Vocabulary("exampleVocabulary",
vocabulary_name="example",
language_code="en-US",
vocabulary_file_uri=pulumi.Output.all(example_bucket_v2.id, object.key).apply(lambda id, key: f"s3://{id}/{key}"),
tags={
"tag1": "value1",
"tag2": "value3",
},
opts=pulumi.ResourceOptions(depends_on=[object]))
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const exampleBucketV2 = new aws.s3.BucketV2("exampleBucketV2", {forceDestroy: true});
const object = new aws.s3.BucketObjectv2("object", {
bucket: exampleBucketV2.id,
key: "transcribe/test1.txt",
source: new pulumi.asset.FileAsset("test.txt"),
});
const exampleVocabulary = new aws.transcribe.Vocabulary("exampleVocabulary", {
vocabularyName: "example",
languageCode: "en-US",
vocabularyFileUri: pulumi.interpolate`s3://${exampleBucketV2.id}/${object.key}`,
tags: {
tag1: "value1",
tag2: "value3",
},
}, {
dependsOn: [object],
});
resources:
exampleBucketV2:
type: aws:s3:BucketV2
properties:
forceDestroy: true
object:
type: aws:s3:BucketObjectv2
properties:
bucket: ${exampleBucketV2.id}
key: transcribe/test1.txt
source:
fn::FileAsset: test.txt
exampleVocabulary:
type: aws:transcribe:Vocabulary
properties:
vocabularyName: example
languageCode: en-US
vocabularyFileUri: s3://${exampleBucketV2.id}/${object.key}
tags:
tag1: value1
tag2: value3
options:
dependson:
- ${object}
Create Vocabulary Resource
new Vocabulary(name: string, args: VocabularyArgs, opts?: CustomResourceOptions);
@overload
def Vocabulary(resource_name: str,
opts: Optional[ResourceOptions] = None,
language_code: Optional[str] = None,
phrases: Optional[Sequence[str]] = None,
tags: Optional[Mapping[str, str]] = None,
vocabulary_file_uri: Optional[str] = None,
vocabulary_name: Optional[str] = None)
@overload
def Vocabulary(resource_name: str,
args: VocabularyArgs,
opts: Optional[ResourceOptions] = None)
func NewVocabulary(ctx *Context, name string, args VocabularyArgs, opts ...ResourceOption) (*Vocabulary, error)
public Vocabulary(string name, VocabularyArgs args, CustomResourceOptions? opts = null)
public Vocabulary(String name, VocabularyArgs args)
public Vocabulary(String name, VocabularyArgs args, CustomResourceOptions options)
type: aws:transcribe:Vocabulary
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VocabularyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args VocabularyArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args VocabularyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VocabularyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VocabularyArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Vocabulary Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Vocabulary resource accepts the following input properties:
- Language
Code string The language code you selected for your vocabulary.
- Vocabulary
Name string The name of the Vocabulary.
The following arguments are optional:
- Phrases List<string>
A list of terms to include in the vocabulary. Conflicts with
vocabulary_file_uri
- Dictionary<string, string>
A map of tags to assign to the Vocabulary. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- Vocabulary
File stringUri The Amazon S3 location (URI) of the text file that contains your custom vocabulary. Conflicts wth
phrases
.
- Language
Code string The language code you selected for your vocabulary.
- Vocabulary
Name string The name of the Vocabulary.
The following arguments are optional:
- Phrases []string
A list of terms to include in the vocabulary. Conflicts with
vocabulary_file_uri
- map[string]string
A map of tags to assign to the Vocabulary. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- Vocabulary
File stringUri The Amazon S3 location (URI) of the text file that contains your custom vocabulary. Conflicts wth
phrases
.
- language
Code String The language code you selected for your vocabulary.
- vocabulary
Name String The name of the Vocabulary.
The following arguments are optional:
- phrases List<String>
A list of terms to include in the vocabulary. Conflicts with
vocabulary_file_uri
- Map<String,String>
A map of tags to assign to the Vocabulary. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- vocabulary
File StringUri The Amazon S3 location (URI) of the text file that contains your custom vocabulary. Conflicts wth
phrases
.
- language
Code string The language code you selected for your vocabulary.
- vocabulary
Name string The name of the Vocabulary.
The following arguments are optional:
- phrases string[]
A list of terms to include in the vocabulary. Conflicts with
vocabulary_file_uri
- {[key: string]: string}
A map of tags to assign to the Vocabulary. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- vocabulary
File stringUri The Amazon S3 location (URI) of the text file that contains your custom vocabulary. Conflicts wth
phrases
.
- language_
code str The language code you selected for your vocabulary.
- vocabulary_
name str The name of the Vocabulary.
The following arguments are optional:
- phrases Sequence[str]
A list of terms to include in the vocabulary. Conflicts with
vocabulary_file_uri
- Mapping[str, str]
A map of tags to assign to the Vocabulary. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- vocabulary_
file_ struri The Amazon S3 location (URI) of the text file that contains your custom vocabulary. Conflicts wth
phrases
.
- language
Code String The language code you selected for your vocabulary.
- vocabulary
Name String The name of the Vocabulary.
The following arguments are optional:
- phrases List<String>
A list of terms to include in the vocabulary. Conflicts with
vocabulary_file_uri
- Map<String>
A map of tags to assign to the Vocabulary. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- vocabulary
File StringUri The Amazon S3 location (URI) of the text file that contains your custom vocabulary. Conflicts wth
phrases
.
Outputs
All input properties are implicitly available as output properties. Additionally, the Vocabulary resource produces the following output properties:
- Arn string
ARN of the Vocabulary.
- Download
Uri string Generated download URI.
- Id string
The provider-assigned unique ID for this managed resource.
- Dictionary<string, string>
Please use
tags
instead.
- Arn string
ARN of the Vocabulary.
- Download
Uri string Generated download URI.
- Id string
The provider-assigned unique ID for this managed resource.
- map[string]string
Please use
tags
instead.
- arn String
ARN of the Vocabulary.
- download
Uri String Generated download URI.
- id String
The provider-assigned unique ID for this managed resource.
- Map<String,String>
Please use
tags
instead.
- arn string
ARN of the Vocabulary.
- download
Uri string Generated download URI.
- id string
The provider-assigned unique ID for this managed resource.
- {[key: string]: string}
Please use
tags
instead.
- arn str
ARN of the Vocabulary.
- download_
uri str Generated download URI.
- id str
The provider-assigned unique ID for this managed resource.
- Mapping[str, str]
Please use
tags
instead.
- arn String
ARN of the Vocabulary.
- download
Uri String Generated download URI.
- id String
The provider-assigned unique ID for this managed resource.
- Map<String>
Please use
tags
instead.
Look up Existing Vocabulary Resource
Get an existing Vocabulary resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: VocabularyState, opts?: CustomResourceOptions): Vocabulary
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
arn: Optional[str] = None,
download_uri: Optional[str] = None,
language_code: Optional[str] = None,
phrases: Optional[Sequence[str]] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None,
vocabulary_file_uri: Optional[str] = None,
vocabulary_name: Optional[str] = None) -> Vocabulary
func GetVocabulary(ctx *Context, name string, id IDInput, state *VocabularyState, opts ...ResourceOption) (*Vocabulary, error)
public static Vocabulary Get(string name, Input<string> id, VocabularyState? state, CustomResourceOptions? opts = null)
public static Vocabulary get(String name, Output<String> id, VocabularyState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Arn string
ARN of the Vocabulary.
- Download
Uri string Generated download URI.
- Language
Code string The language code you selected for your vocabulary.
- Phrases List<string>
A list of terms to include in the vocabulary. Conflicts with
vocabulary_file_uri
- Dictionary<string, string>
A map of tags to assign to the Vocabulary. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- Dictionary<string, string>
Please use
tags
instead.- Vocabulary
File stringUri The Amazon S3 location (URI) of the text file that contains your custom vocabulary. Conflicts wth
phrases
.- Vocabulary
Name string The name of the Vocabulary.
The following arguments are optional:
- Arn string
ARN of the Vocabulary.
- Download
Uri string Generated download URI.
- Language
Code string The language code you selected for your vocabulary.
- Phrases []string
A list of terms to include in the vocabulary. Conflicts with
vocabulary_file_uri
- map[string]string
A map of tags to assign to the Vocabulary. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- map[string]string
Please use
tags
instead.- Vocabulary
File stringUri The Amazon S3 location (URI) of the text file that contains your custom vocabulary. Conflicts wth
phrases
.- Vocabulary
Name string The name of the Vocabulary.
The following arguments are optional:
- arn String
ARN of the Vocabulary.
- download
Uri String Generated download URI.
- language
Code String The language code you selected for your vocabulary.
- phrases List<String>
A list of terms to include in the vocabulary. Conflicts with
vocabulary_file_uri
- Map<String,String>
A map of tags to assign to the Vocabulary. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- Map<String,String>
Please use
tags
instead.- vocabulary
File StringUri The Amazon S3 location (URI) of the text file that contains your custom vocabulary. Conflicts wth
phrases
.- vocabulary
Name String The name of the Vocabulary.
The following arguments are optional:
- arn string
ARN of the Vocabulary.
- download
Uri string Generated download URI.
- language
Code string The language code you selected for your vocabulary.
- phrases string[]
A list of terms to include in the vocabulary. Conflicts with
vocabulary_file_uri
- {[key: string]: string}
A map of tags to assign to the Vocabulary. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- {[key: string]: string}
Please use
tags
instead.- vocabulary
File stringUri The Amazon S3 location (URI) of the text file that contains your custom vocabulary. Conflicts wth
phrases
.- vocabulary
Name string The name of the Vocabulary.
The following arguments are optional:
- arn str
ARN of the Vocabulary.
- download_
uri str Generated download URI.
- language_
code str The language code you selected for your vocabulary.
- phrases Sequence[str]
A list of terms to include in the vocabulary. Conflicts with
vocabulary_file_uri
- Mapping[str, str]
A map of tags to assign to the Vocabulary. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- Mapping[str, str]
Please use
tags
instead.- vocabulary_
file_ struri The Amazon S3 location (URI) of the text file that contains your custom vocabulary. Conflicts wth
phrases
.- vocabulary_
name str The name of the Vocabulary.
The following arguments are optional:
- arn String
ARN of the Vocabulary.
- download
Uri String Generated download URI.
- language
Code String The language code you selected for your vocabulary.
- phrases List<String>
A list of terms to include in the vocabulary. Conflicts with
vocabulary_file_uri
- Map<String>
A map of tags to assign to the Vocabulary. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- Map<String>
Please use
tags
instead.- vocabulary
File StringUri The Amazon S3 location (URI) of the text file that contains your custom vocabulary. Conflicts wth
phrases
.- vocabulary
Name String The name of the Vocabulary.
The following arguments are optional:
Import
Using pulumi import
, import Transcribe Vocabulary using the vocabulary_name
. For example:
$ pulumi import aws:transcribe/vocabulary:Vocabulary example example-name
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
aws
Terraform Provider.
Try AWS Native preview for resources not in the classic version.