1. Packages
  2. AWS Classic
  3. API Docs
  4. connect
  5. Vocabulary

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.32.0 published on Friday, Apr 19, 2024 by Pulumi

aws.connect.Vocabulary

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.32.0 published on Friday, Apr 19, 2024 by Pulumi

    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	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",
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.connect.Vocabulary("example",
        instance_id="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	""",
        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.

    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 of 60000.
    InstanceId string
    Specifies the identifier of the hosting Amazon Connect Instance.
    LanguageCode 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.
    Tags 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 of 60000.
    InstanceId string
    Specifies the identifier of the hosting Amazon Connect Instance.
    LanguageCode 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.
    Tags 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 of 60000.
    instanceId String
    Specifies the identifier of the hosting Amazon Connect Instance.
    languageCode 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.
    tags 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 of 60000.
    instanceId string
    Specifies the identifier of the hosting Amazon Connect Instance.
    languageCode 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.
    tags {[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 of 60000.
    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.
    tags 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 of 60000.
    instanceId String
    Specifies the identifier of the hosting Amazon Connect Instance.
    languageCode 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.
    tags 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.
    FailureReason string
    The reason why the custom vocabulary was not created.
    Id string
    The provider-assigned unique ID for this managed resource.
    LastModifiedTime string
    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.
    TagsAll Dictionary<string, string>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    VocabularyId string
    The identifier of the custom vocabulary.
    Arn string
    The Amazon Resource Name (ARN) of the vocabulary.
    FailureReason string
    The reason why the custom vocabulary was not created.
    Id string
    The provider-assigned unique ID for this managed resource.
    LastModifiedTime string
    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.
    TagsAll map[string]string
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    VocabularyId string
    The identifier of the custom vocabulary.
    arn String
    The Amazon Resource Name (ARN) of the vocabulary.
    failureReason String
    The reason why the custom vocabulary was not created.
    id String
    The provider-assigned unique ID for this managed resource.
    lastModifiedTime String
    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.
    tagsAll Map<String,String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    vocabularyId String
    The identifier of the custom vocabulary.
    arn string
    The Amazon Resource Name (ARN) of the vocabulary.
    failureReason string
    The reason why the custom vocabulary was not created.
    id string
    The provider-assigned unique ID for this managed resource.
    lastModifiedTime string
    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.
    tagsAll {[key: string]: string}
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    vocabularyId 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_time str
    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.
    tags_all Mapping[str, str]
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    vocabulary_id str
    The identifier of the custom vocabulary.
    arn String
    The Amazon Resource Name (ARN) of the vocabulary.
    failureReason String
    The reason why the custom vocabulary was not created.
    id String
    The provider-assigned unique ID for this managed resource.
    lastModifiedTime String
    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.
    tagsAll Map<String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    vocabularyId 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.
    The following state arguments are supported:
    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 of 60000.
    FailureReason string
    The reason why the custom vocabulary was not created.
    InstanceId string
    Specifies the identifier of the hosting Amazon Connect Instance.
    LanguageCode 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.
    LastModifiedTime string
    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.
    Tags 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.
    TagsAll Dictionary<string, string>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    VocabularyId 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 of 60000.
    FailureReason string
    The reason why the custom vocabulary was not created.
    InstanceId string
    Specifies the identifier of the hosting Amazon Connect Instance.
    LanguageCode 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.
    LastModifiedTime string
    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.
    Tags 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.
    TagsAll map[string]string
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    VocabularyId 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 of 60000.
    failureReason String
    The reason why the custom vocabulary was not created.
    instanceId String
    Specifies the identifier of the hosting Amazon Connect Instance.
    languageCode 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.
    lastModifiedTime String
    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.
    tags 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.
    tagsAll Map<String,String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    vocabularyId 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 of 60000.
    failureReason string
    The reason why the custom vocabulary was not created.
    instanceId string
    Specifies the identifier of the hosting Amazon Connect Instance.
    languageCode 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.
    lastModifiedTime string
    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.
    tags {[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.
    tagsAll {[key: string]: string}
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    vocabularyId 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 of 60000.
    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_time str
    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.
    tags 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.
    tags_all Mapping[str, str]
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    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 of 60000.
    failureReason String
    The reason why the custom vocabulary was not created.
    instanceId String
    Specifies the identifier of the hosting Amazon Connect Instance.
    languageCode 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.
    lastModifiedTime String
    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.
    tags 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.
    tagsAll Map<String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    vocabularyId 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.
    aws logo

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v6.32.0 published on Friday, Apr 19, 2024 by Pulumi