package awsiotwireless import ( "github.com/aws/aws-cdk-go/awscdk/v2" ) // Properties for defining a `CfnDestination`. // // 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" // // cfnDestinationProps := &CfnDestinationProps{ // Expression: jsii.String("expression"), // ExpressionType: jsii.String("expressionType"), // Name: jsii.String("name"), // RoleArn: jsii.String("roleArn"), // // // the properties below are optional // Description: jsii.String("description"), // Tags: []cfnTag{ // &cfnTag{ // Key: jsii.String("key"), // Value: jsii.String("value"), // }, // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-destination.html // type CfnDestinationProps struct { // The rule name to send messages to. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-destination.html#cfn-iotwireless-destination-expression // Expression *string `field:"required" json:"expression" yaml:"expression"` // The type of value in `Expression` . // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-destination.html#cfn-iotwireless-destination-expressiontype // ExpressionType *string `field:"required" json:"expressionType" yaml:"expressionType"` // The name of the new resource. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-destination.html#cfn-iotwireless-destination-name // Name *string `field:"required" json:"name" yaml:"name"` // The ARN of the IAM Role that authorizes the destination. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-destination.html#cfn-iotwireless-destination-rolearn // RoleArn *string `field:"required" json:"roleArn" yaml:"roleArn"` // The description of the new resource. // // Maximum length is 2048 characters. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-destination.html#cfn-iotwireless-destination-description // Description *string `field:"optional" json:"description" yaml:"description"` // The tags are an array of key-value pairs to attach to the specified resource. // // Tags can have a minimum of 0 and a maximum of 50 items. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-destination.html#cfn-iotwireless-destination-tags // Tags *[]*awscdk.CfnTag `field:"optional" json:"tags" yaml:"tags"` }