package awsconnect import ( "github.com/aws/aws-cdk-go/awscdk/v2" ) // Properties for defining a `CfnPrompt`. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // cfnPromptProps := &CfnPromptProps{ // InstanceArn: jsii.String("instanceArn"), // Name: jsii.String("name"), // // // the properties below are optional // Description: jsii.String("description"), // S3Uri: jsii.String("s3Uri"), // Tags: []cfnTag{ // &cfnTag{ // Key: jsii.String("key"), // Value: jsii.String("value"), // }, // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-prompt.html // type CfnPromptProps struct { // The identifier of the Amazon Connect instance. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-prompt.html#cfn-connect-prompt-instancearn // InstanceArn *string `field:"required" json:"instanceArn" yaml:"instanceArn"` // The name of the prompt. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-prompt.html#cfn-connect-prompt-name // Name *string `field:"required" json:"name" yaml:"name"` // The description of the prompt. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-prompt.html#cfn-connect-prompt-description // Description *string `field:"optional" json:"description" yaml:"description"` // The URI for the S3 bucket where the prompt is stored. // // This property is required when you create a prompt. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-prompt.html#cfn-connect-prompt-s3uri // S3Uri *string `field:"optional" json:"s3Uri" yaml:"s3Uri"` // 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#cfn-connect-prompt-tags // Tags *[]*awscdk.CfnTag `field:"optional" json:"tags" yaml:"tags"` }