CfnPromptMixinProps
- class aws_cdk.mixins_preview.aws_connect.mixins.CfnPromptMixinProps(*, description=None, instance_arn=None, name=None, s3_uri=None, tags=None)
Bases:
objectProperties for CfnPromptPropsMixin.
- Parameters:
description (
Optional[str]) – The description of the prompt.instance_arn (
Optional[str]) – The identifier of the Amazon Connect instance.name (
Optional[str]) – The name of the prompt.s3_uri (
Optional[str]) – The URI for the S3 bucket where the prompt is stored. This property is required when you create a prompt.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The tags used to organize, track, or control access for this resource. For example, { “tags”: {“key1”:”value1”, “key2”:”value2”} }.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-prompt.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_connect import mixins as connect_mixins cfn_prompt_mixin_props = connect_mixins.CfnPromptMixinProps( description="description", instance_arn="instanceArn", name="name", s3_uri="s3Uri", tags=[CfnTag( key="key", value="value" )] )
Attributes
- description
The description of the prompt.
- instance_arn
The identifier of the Amazon Connect instance.
- name
The name of the prompt.
- s3_uri
The URI for the S3 bucket where the prompt is stored.
This property is required when you create a prompt.
- tags
The tags used to organize, track, or control access for this resource.
For example, { “tags”: {“key1”:”value1”, “key2”:”value2”} }.