Resource Type definition for AWS::Connect::Prompt
Note that the AWS provider resources for aws_connect_instance and aws_s3_object are used.
resource "awscc_connect_prompt" "example" {
instance_arn = aws_connect_instance.example.arn
name = "example.wav"
description = "example prompt"
s3_uri = "s3://${aws_s3_object.example.bucket}/${aws_s3_object.example.key}"
}
instance_arn
(String) The identifier of the Amazon Connect instance.name
(String) The name of the prompt.description
(String) The description of the prompt.s3_uri
(String) S3 URI of the customer's audio file for creating prompts resource..tags
(Attributes Set) An array of key-value pairs to apply to this resource. (see below for nested schema)id
(String) Uniquely identifies the resource.prompt_arn
(String) The Amazon Resource Name (ARN) for the prompt.tags
Required:
key
(String) The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.value
(String) The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.Import is supported using the following syntax:
$ terraform import awscc_connect_prompt.example <resource ID>