CfnPromptProps
- class aws_cdk.aws_connect.CfnPromptProps(*, instance_arn, name, description=None, s3_uri=None, tags=None)
- Bases: - object- Properties for defining a - CfnPrompt.- Parameters:
- instance_arn ( - str) – The identifier of the Amazon Connect instance.
- name ( - str) – The name of the prompt.
- description ( - Optional[- str]) – The description 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 import aws_connect as connect cfn_prompt_props = connect.CfnPromptProps( instance_arn="instanceArn", name="name", # the properties below are optional description="description", 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”} }.