Try AWS Native preview for resources not in the classic version.
aws.connect.Vocabulary
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
Provides an Amazon Connect Vocabulary resource. For more information see Amazon Connect: Getting Started
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.connect.Vocabulary("example", {
instanceId: "aaaaaaaa-bbbb-cccc-dddd-111111111111",
name: "example",
content: `Phrase\x09IPA\x09SoundsLike\x09DisplayAs
Los-Angeles\x09\x09\x09Los Angeles
F.B.I.\x09ɛ f b i aɪ\x09\x09FBI
Etienne\x09\x09eh-tee-en\x09`,
languageCode: "en-US",
tags: {
Key1: "Value1",
},
});
import pulumi
import pulumi_aws as aws
example = aws.connect.Vocabulary("example",
instance_id="aaaaaaaa-bbbb-cccc-dddd-111111111111",
name="example",
content="""Phrase\x09IPA\x09SoundsLike\x09DisplayAs
Los-Angeles\x09\x09\x09Los Angeles
F.B.I.\x09ɛ f b i aɪ\x09\x09FBI
Etienne\x09\x09eh-tee-en\x09""",
language_code="en-US",
tags={
"Key1": "Value1",
})
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/connect"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := connect.NewVocabulary(ctx, "example", &connect.VocabularyArgs{
InstanceId: pulumi.String("aaaaaaaa-bbbb-cccc-dddd-111111111111"),
Name: pulumi.String("example"),
Content: pulumi.String("Phrase IPA SoundsLike DisplayAs\nLos-Angeles Los Angeles\nF.B.I. ɛ f b i aɪ FBI\nEtienne eh-tee-en "),
LanguageCode: pulumi.String("en-US"),
Tags: pulumi.StringMap{
"Key1": pulumi.String("Value1"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Connect.Vocabulary("example", new()
{
InstanceId = "aaaaaaaa-bbbb-cccc-dddd-111111111111",
Name = "example",
Content = @"Phrase IPA SoundsLike DisplayAs
Los-Angeles Los Angeles
F.B.I. ɛ f b i aɪ FBI
Etienne eh-tee-en ",
LanguageCode = "en-US",
Tags =
{
{ "Key1", "Value1" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.connect.Vocabulary;
import com.pulumi.aws.connect.VocabularyArgs;
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 Vocabulary("example", VocabularyArgs.builder()
.instanceId("aaaaaaaa-bbbb-cccc-dddd-111111111111")
.name("example")
.content("""
Phrase IPA SoundsLike DisplayAs
Los-Angeles Los Angeles
F.B.I. ɛ f b i aɪ FBI
Etienne eh-tee-en """)
.languageCode("en-US")
.tags(Map.of("Key1", "Value1"))
.build());
}
}
resources:
example:
type: aws:connect:Vocabulary
properties:
instanceId: aaaaaaaa-bbbb-cccc-dddd-111111111111
name: example
content: |-
Phrase IPA SoundsLike DisplayAs
Los-Angeles Los Angeles
F.B.I. ɛ f b i aɪ FBI
Etienne eh-tee-en
languageCode: en-US
tags:
Key1: Value1
Create Vocabulary Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Vocabulary(name: string, args: VocabularyArgs, opts?: CustomResourceOptions);
@overload
def Vocabulary(resource_name: str,
args: VocabularyArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Vocabulary(resource_name: str,
opts: Optional[ResourceOptions] = None,
content: Optional[str] = None,
instance_id: Optional[str] = None,
language_code: Optional[str] = None,
name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = 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:connect:Vocabulary
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- 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.
Constructor example
The following reference example uses placeholder values for all input properties.
var vocabularyResource = new Aws.Connect.Vocabulary("vocabularyResource", new()
{
Content = "string",
InstanceId = "string",
LanguageCode = "string",
Name = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := connect.NewVocabulary(ctx, "vocabularyResource", &connect.VocabularyArgs{
Content: pulumi.String("string"),
InstanceId: pulumi.String("string"),
LanguageCode: pulumi.String("string"),
Name: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var vocabularyResource = new Vocabulary("vocabularyResource", VocabularyArgs.builder()
.content("string")
.instanceId("string")
.languageCode("string")
.name("string")
.tags(Map.of("string", "string"))
.build());
vocabulary_resource = aws.connect.Vocabulary("vocabularyResource",
content="string",
instance_id="string",
language_code="string",
name="string",
tags={
"string": "string",
})
const vocabularyResource = new aws.connect.Vocabulary("vocabularyResource", {
content: "string",
instanceId: "string",
languageCode: "string",
name: "string",
tags: {
string: "string",
},
});
type: aws:connect:Vocabulary
properties:
content: string
instanceId: string
languageCode: string
name: string
tags:
string: string
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:
- Content string
- The content of the custom vocabulary in plain-text format with a table of values. Each row in the table represents a word or a phrase, described with Phrase, IPA, SoundsLike, and DisplayAs fields. Separate the fields with TAB characters. For more information, see Create a custom vocabulary using a table. Minimum length of
1
. Maximum length of60000
. - Instance
Id string - Specifies the identifier of the hosting Amazon Connect Instance.
- Language
Code string - The language code of the vocabulary entries. For a list of languages and their corresponding language codes, see What is Amazon Transcribe?. Valid Values are
ar-AE
,de-CH
,de-DE
,en-AB
,en-AU
,en-GB
,en-IE
,en-IN
,en-US
,en-WL
,es-ES
,es-US
,fr-CA
,fr-FR
,hi-IN
,it-IT
,ja-JP
,ko-KR
,pt-BR
,pt-PT
,zh-CN
. - Name string
- A unique name of the custom vocabulary. Must not be more than 140 characters.
- Dictionary<string, string>
- Tags to apply 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.
- Content string
- The content of the custom vocabulary in plain-text format with a table of values. Each row in the table represents a word or a phrase, described with Phrase, IPA, SoundsLike, and DisplayAs fields. Separate the fields with TAB characters. For more information, see Create a custom vocabulary using a table. Minimum length of
1
. Maximum length of60000
. - Instance
Id string - Specifies the identifier of the hosting Amazon Connect Instance.
- Language
Code string - The language code of the vocabulary entries. For a list of languages and their corresponding language codes, see What is Amazon Transcribe?. Valid Values are
ar-AE
,de-CH
,de-DE
,en-AB
,en-AU
,en-GB
,en-IE
,en-IN
,en-US
,en-WL
,es-ES
,es-US
,fr-CA
,fr-FR
,hi-IN
,it-IT
,ja-JP
,ko-KR
,pt-BR
,pt-PT
,zh-CN
. - Name string
- A unique name of the custom vocabulary. Must not be more than 140 characters.
- map[string]string
- Tags to apply 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.
- content String
- The content of the custom vocabulary in plain-text format with a table of values. Each row in the table represents a word or a phrase, described with Phrase, IPA, SoundsLike, and DisplayAs fields. Separate the fields with TAB characters. For more information, see Create a custom vocabulary using a table. Minimum length of
1
. Maximum length of60000
. - instance
Id String - Specifies the identifier of the hosting Amazon Connect Instance.
- language
Code String - The language code of the vocabulary entries. For a list of languages and their corresponding language codes, see What is Amazon Transcribe?. Valid Values are
ar-AE
,de-CH
,de-DE
,en-AB
,en-AU
,en-GB
,en-IE
,en-IN
,en-US
,en-WL
,es-ES
,es-US
,fr-CA
,fr-FR
,hi-IN
,it-IT
,ja-JP
,ko-KR
,pt-BR
,pt-PT
,zh-CN
. - name String
- A unique name of the custom vocabulary. Must not be more than 140 characters.
- Map<String,String>
- Tags to apply 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.
- content string
- The content of the custom vocabulary in plain-text format with a table of values. Each row in the table represents a word or a phrase, described with Phrase, IPA, SoundsLike, and DisplayAs fields. Separate the fields with TAB characters. For more information, see Create a custom vocabulary using a table. Minimum length of
1
. Maximum length of60000
. - instance
Id string - Specifies the identifier of the hosting Amazon Connect Instance.
- language
Code string - The language code of the vocabulary entries. For a list of languages and their corresponding language codes, see What is Amazon Transcribe?. Valid Values are
ar-AE
,de-CH
,de-DE
,en-AB
,en-AU
,en-GB
,en-IE
,en-IN
,en-US
,en-WL
,es-ES
,es-US
,fr-CA
,fr-FR
,hi-IN
,it-IT
,ja-JP
,ko-KR
,pt-BR
,pt-PT
,zh-CN
. - name string
- A unique name of the custom vocabulary. Must not be more than 140 characters.
- {[key: string]: string}
- Tags to apply 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.
- content str
- The content of the custom vocabulary in plain-text format with a table of values. Each row in the table represents a word or a phrase, described with Phrase, IPA, SoundsLike, and DisplayAs fields. Separate the fields with TAB characters. For more information, see Create a custom vocabulary using a table. Minimum length of
1
. Maximum length of60000
. - instance_
id str - Specifies the identifier of the hosting Amazon Connect Instance.
- language_
code str - The language code of the vocabulary entries. For a list of languages and their corresponding language codes, see What is Amazon Transcribe?. Valid Values are
ar-AE
,de-CH
,de-DE
,en-AB
,en-AU
,en-GB
,en-IE
,en-IN
,en-US
,en-WL
,es-ES
,es-US
,fr-CA
,fr-FR
,hi-IN
,it-IT
,ja-JP
,ko-KR
,pt-BR
,pt-PT
,zh-CN
. - name str
- A unique name of the custom vocabulary. Must not be more than 140 characters.
- Mapping[str, str]
- Tags to apply 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.
- content String
- The content of the custom vocabulary in plain-text format with a table of values. Each row in the table represents a word or a phrase, described with Phrase, IPA, SoundsLike, and DisplayAs fields. Separate the fields with TAB characters. For more information, see Create a custom vocabulary using a table. Minimum length of
1
. Maximum length of60000
. - instance
Id String - Specifies the identifier of the hosting Amazon Connect Instance.
- language
Code String - The language code of the vocabulary entries. For a list of languages and their corresponding language codes, see What is Amazon Transcribe?. Valid Values are
ar-AE
,de-CH
,de-DE
,en-AB
,en-AU
,en-GB
,en-IE
,en-IN
,en-US
,en-WL
,es-ES
,es-US
,fr-CA
,fr-FR
,hi-IN
,it-IT
,ja-JP
,ko-KR
,pt-BR
,pt-PT
,zh-CN
. - name String
- A unique name of the custom vocabulary. Must not be more than 140 characters.
- Map<String>
- Tags to apply 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.
Outputs
All input properties are implicitly available as output properties. Additionally, the Vocabulary resource produces the following output properties:
- Arn string
- The Amazon Resource Name (ARN) of the vocabulary.
- Failure
Reason string - The reason why the custom vocabulary was not created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Modified stringTime - The timestamp when the custom vocabulary was last modified.
- State string
- The current state of the custom vocabulary. Valid values are
CREATION_IN_PROGRESS
,ACTIVE
,CREATION_FAILED
,DELETE_IN_PROGRESS
. - Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - Vocabulary
Id string - The identifier of the custom vocabulary.
- Arn string
- The Amazon Resource Name (ARN) of the vocabulary.
- Failure
Reason string - The reason why the custom vocabulary was not created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Modified stringTime - The timestamp when the custom vocabulary was last modified.
- State string
- The current state of the custom vocabulary. Valid values are
CREATION_IN_PROGRESS
,ACTIVE
,CREATION_FAILED
,DELETE_IN_PROGRESS
. - map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - Vocabulary
Id string - The identifier of the custom vocabulary.
- arn String
- The Amazon Resource Name (ARN) of the vocabulary.
- failure
Reason String - The reason why the custom vocabulary was not created.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Modified StringTime - The timestamp when the custom vocabulary was last modified.
- state String
- The current state of the custom vocabulary. Valid values are
CREATION_IN_PROGRESS
,ACTIVE
,CREATION_FAILED
,DELETE_IN_PROGRESS
. - Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - vocabulary
Id String - The identifier of the custom vocabulary.
- arn string
- The Amazon Resource Name (ARN) of the vocabulary.
- failure
Reason string - The reason why the custom vocabulary was not created.
- id string
- The provider-assigned unique ID for this managed resource.
- last
Modified stringTime - The timestamp when the custom vocabulary was last modified.
- state string
- The current state of the custom vocabulary. Valid values are
CREATION_IN_PROGRESS
,ACTIVE
,CREATION_FAILED
,DELETE_IN_PROGRESS
. - {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - vocabulary
Id string - The identifier of the custom vocabulary.
- arn str
- The Amazon Resource Name (ARN) of the vocabulary.
- failure_
reason str - The reason why the custom vocabulary was not created.
- id str
- The provider-assigned unique ID for this managed resource.
- last_
modified_ strtime - The timestamp when the custom vocabulary was last modified.
- state str
- The current state of the custom vocabulary. Valid values are
CREATION_IN_PROGRESS
,ACTIVE
,CREATION_FAILED
,DELETE_IN_PROGRESS
. - Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - vocabulary_
id str - The identifier of the custom vocabulary.
- arn String
- The Amazon Resource Name (ARN) of the vocabulary.
- failure
Reason String - The reason why the custom vocabulary was not created.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Modified StringTime - The timestamp when the custom vocabulary was last modified.
- state String
- The current state of the custom vocabulary. Valid values are
CREATION_IN_PROGRESS
,ACTIVE
,CREATION_FAILED
,DELETE_IN_PROGRESS
. - Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - vocabulary
Id String - The identifier of the custom vocabulary.
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,
content: Optional[str] = None,
failure_reason: Optional[str] = None,
instance_id: Optional[str] = None,
language_code: Optional[str] = None,
last_modified_time: Optional[str] = None,
name: Optional[str] = None,
state: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None,
vocabulary_id: 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
- The Amazon Resource Name (ARN) of the vocabulary.
- Content string
- The content of the custom vocabulary in plain-text format with a table of values. Each row in the table represents a word or a phrase, described with Phrase, IPA, SoundsLike, and DisplayAs fields. Separate the fields with TAB characters. For more information, see Create a custom vocabulary using a table. Minimum length of
1
. Maximum length of60000
. - Failure
Reason string - The reason why the custom vocabulary was not created.
- Instance
Id string - Specifies the identifier of the hosting Amazon Connect Instance.
- Language
Code string - The language code of the vocabulary entries. For a list of languages and their corresponding language codes, see What is Amazon Transcribe?. Valid Values are
ar-AE
,de-CH
,de-DE
,en-AB
,en-AU
,en-GB
,en-IE
,en-IN
,en-US
,en-WL
,es-ES
,es-US
,fr-CA
,fr-FR
,hi-IN
,it-IT
,ja-JP
,ko-KR
,pt-BR
,pt-PT
,zh-CN
. - Last
Modified stringTime - The timestamp when the custom vocabulary was last modified.
- Name string
- A unique name of the custom vocabulary. Must not be more than 140 characters.
- State string
- The current state of the custom vocabulary. Valid values are
CREATION_IN_PROGRESS
,ACTIVE
,CREATION_FAILED
,DELETE_IN_PROGRESS
. - Dictionary<string, string>
- Tags to apply 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>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - Vocabulary
Id string - The identifier of the custom vocabulary.
- Arn string
- The Amazon Resource Name (ARN) of the vocabulary.
- Content string
- The content of the custom vocabulary in plain-text format with a table of values. Each row in the table represents a word or a phrase, described with Phrase, IPA, SoundsLike, and DisplayAs fields. Separate the fields with TAB characters. For more information, see Create a custom vocabulary using a table. Minimum length of
1
. Maximum length of60000
. - Failure
Reason string - The reason why the custom vocabulary was not created.
- Instance
Id string - Specifies the identifier of the hosting Amazon Connect Instance.
- Language
Code string - The language code of the vocabulary entries. For a list of languages and their corresponding language codes, see What is Amazon Transcribe?. Valid Values are
ar-AE
,de-CH
,de-DE
,en-AB
,en-AU
,en-GB
,en-IE
,en-IN
,en-US
,en-WL
,es-ES
,es-US
,fr-CA
,fr-FR
,hi-IN
,it-IT
,ja-JP
,ko-KR
,pt-BR
,pt-PT
,zh-CN
. - Last
Modified stringTime - The timestamp when the custom vocabulary was last modified.
- Name string
- A unique name of the custom vocabulary. Must not be more than 140 characters.
- State string
- The current state of the custom vocabulary. Valid values are
CREATION_IN_PROGRESS
,ACTIVE
,CREATION_FAILED
,DELETE_IN_PROGRESS
. - map[string]string
- Tags to apply 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
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - Vocabulary
Id string - The identifier of the custom vocabulary.
- arn String
- The Amazon Resource Name (ARN) of the vocabulary.
- content String
- The content of the custom vocabulary in plain-text format with a table of values. Each row in the table represents a word or a phrase, described with Phrase, IPA, SoundsLike, and DisplayAs fields. Separate the fields with TAB characters. For more information, see Create a custom vocabulary using a table. Minimum length of
1
. Maximum length of60000
. - failure
Reason String - The reason why the custom vocabulary was not created.
- instance
Id String - Specifies the identifier of the hosting Amazon Connect Instance.
- language
Code String - The language code of the vocabulary entries. For a list of languages and their corresponding language codes, see What is Amazon Transcribe?. Valid Values are
ar-AE
,de-CH
,de-DE
,en-AB
,en-AU
,en-GB
,en-IE
,en-IN
,en-US
,en-WL
,es-ES
,es-US
,fr-CA
,fr-FR
,hi-IN
,it-IT
,ja-JP
,ko-KR
,pt-BR
,pt-PT
,zh-CN
. - last
Modified StringTime - The timestamp when the custom vocabulary was last modified.
- name String
- A unique name of the custom vocabulary. Must not be more than 140 characters.
- state String
- The current state of the custom vocabulary. Valid values are
CREATION_IN_PROGRESS
,ACTIVE
,CREATION_FAILED
,DELETE_IN_PROGRESS
. - Map<String,String>
- Tags to apply 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>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - vocabulary
Id String - The identifier of the custom vocabulary.
- arn string
- The Amazon Resource Name (ARN) of the vocabulary.
- content string
- The content of the custom vocabulary in plain-text format with a table of values. Each row in the table represents a word or a phrase, described with Phrase, IPA, SoundsLike, and DisplayAs fields. Separate the fields with TAB characters. For more information, see Create a custom vocabulary using a table. Minimum length of
1
. Maximum length of60000
. - failure
Reason string - The reason why the custom vocabulary was not created.
- instance
Id string - Specifies the identifier of the hosting Amazon Connect Instance.
- language
Code string - The language code of the vocabulary entries. For a list of languages and their corresponding language codes, see What is Amazon Transcribe?. Valid Values are
ar-AE
,de-CH
,de-DE
,en-AB
,en-AU
,en-GB
,en-IE
,en-IN
,en-US
,en-WL
,es-ES
,es-US
,fr-CA
,fr-FR
,hi-IN
,it-IT
,ja-JP
,ko-KR
,pt-BR
,pt-PT
,zh-CN
. - last
Modified stringTime - The timestamp when the custom vocabulary was last modified.
- name string
- A unique name of the custom vocabulary. Must not be more than 140 characters.
- state string
- The current state of the custom vocabulary. Valid values are
CREATION_IN_PROGRESS
,ACTIVE
,CREATION_FAILED
,DELETE_IN_PROGRESS
. - {[key: string]: string}
- Tags to apply 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}
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - vocabulary
Id string - The identifier of the custom vocabulary.
- arn str
- The Amazon Resource Name (ARN) of the vocabulary.
- content str
- The content of the custom vocabulary in plain-text format with a table of values. Each row in the table represents a word or a phrase, described with Phrase, IPA, SoundsLike, and DisplayAs fields. Separate the fields with TAB characters. For more information, see Create a custom vocabulary using a table. Minimum length of
1
. Maximum length of60000
. - failure_
reason str - The reason why the custom vocabulary was not created.
- instance_
id str - Specifies the identifier of the hosting Amazon Connect Instance.
- language_
code str - The language code of the vocabulary entries. For a list of languages and their corresponding language codes, see What is Amazon Transcribe?. Valid Values are
ar-AE
,de-CH
,de-DE
,en-AB
,en-AU
,en-GB
,en-IE
,en-IN
,en-US
,en-WL
,es-ES
,es-US
,fr-CA
,fr-FR
,hi-IN
,it-IT
,ja-JP
,ko-KR
,pt-BR
,pt-PT
,zh-CN
. - last_
modified_ strtime - The timestamp when the custom vocabulary was last modified.
- name str
- A unique name of the custom vocabulary. Must not be more than 140 characters.
- state str
- The current state of the custom vocabulary. Valid values are
CREATION_IN_PROGRESS
,ACTIVE
,CREATION_FAILED
,DELETE_IN_PROGRESS
. - Mapping[str, str]
- Tags to apply 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]
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - vocabulary_
id str - The identifier of the custom vocabulary.
- arn String
- The Amazon Resource Name (ARN) of the vocabulary.
- content String
- The content of the custom vocabulary in plain-text format with a table of values. Each row in the table represents a word or a phrase, described with Phrase, IPA, SoundsLike, and DisplayAs fields. Separate the fields with TAB characters. For more information, see Create a custom vocabulary using a table. Minimum length of
1
. Maximum length of60000
. - failure
Reason String - The reason why the custom vocabulary was not created.
- instance
Id String - Specifies the identifier of the hosting Amazon Connect Instance.
- language
Code String - The language code of the vocabulary entries. For a list of languages and their corresponding language codes, see What is Amazon Transcribe?. Valid Values are
ar-AE
,de-CH
,de-DE
,en-AB
,en-AU
,en-GB
,en-IE
,en-IN
,en-US
,en-WL
,es-ES
,es-US
,fr-CA
,fr-FR
,hi-IN
,it-IT
,ja-JP
,ko-KR
,pt-BR
,pt-PT
,zh-CN
. - last
Modified StringTime - The timestamp when the custom vocabulary was last modified.
- name String
- A unique name of the custom vocabulary. Must not be more than 140 characters.
- state String
- The current state of the custom vocabulary. Valid values are
CREATION_IN_PROGRESS
,ACTIVE
,CREATION_FAILED
,DELETE_IN_PROGRESS
. - Map<String>
- Tags to apply 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>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - vocabulary
Id String - The identifier of the custom vocabulary.
Import
Using pulumi import
, import Amazon Connect Vocabularies using the instance_id
and vocabulary_id
separated by a colon (:
). For example:
$ pulumi import aws:connect/vocabulary:Vocabulary example f1288a1f-6193-445a-b47e-af739b2:c1d4e5f6-1b3c-1b3c-1b3c-c1d4e5f6c1d4e5
To learn more about importing existing cloud resources, see Importing resources.
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.