AWS Fundamentals Logo
AWS Fundamentals
AWS::Transcribe::VocabularyFilter

Transcribe VocabularyFilter

Creates a custom vocabulary filter that you can use to mask, delete, or flag specific words from your transcript.

Properties

6 configurable properties. 2 required. Click a row to see details.

Filter:
PropertyTypeFlags
LanguageCode
string
RequiredCreate-only
VocabularyFilterName
string
RequiredCreate-only
DataAccessRoleArn
string
Write-only
Tags
Array<Tag>
VocabularyFilterFileUri
string
Write-only
Words
Array<string>
Write-only

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
ArnstringThe Amazon Resource Name (ARN) of the vocabulary filter.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::Transcribe::VocabularyFilter

Resources:
  MyResource:
    Type: AWS::Transcribe::VocabularyFilter
    Properties:
      VocabularyFilterName: "my-vocabularyfiltername"
      LanguageCode: "value"
      Tags:
        - Key: Environment
          Value: Production

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

transcribe:CreateVocabularyFiltertranscribe:GetVocabularyFiltertranscribe:TagResourceiam:PassRole

read

transcribe:GetVocabularyFiltertranscribe:ListTagsForResource

update

transcribe:UpdateVocabularyFiltertranscribe:GetVocabularyFiltertranscribe:TagResourcetranscribe:UntagResourcetranscribe:ListTagsForResourceiam:PassRole

delete

transcribe:DeleteVocabularyFiltertranscribe:GetVocabularyFilter

list

transcribe:ListVocabularyFilters

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceTranscribe
Properties7
Required2
TaggingSupported
Primary IDArn

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

VocabularyFilterNameLanguageCode

Related Resources

External Links