package awsevents // Additional query string parameter for the connection. // // You can include up to 100 additional query string parameters per request. Each additional parameter counts towards the event payload size, which cannot exceed 64 KB. // // 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" // // parameterProperty := &ParameterProperty{ // Key: jsii.String("key"), // Value: jsii.String("value"), // // // the properties below are optional // IsValueSecret: jsii.Boolean(false), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-connection-parameter.html // type CfnConnection_ParameterProperty struct { // The key for a query string parameter. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-connection-parameter.html#cfn-events-connection-parameter-key // Key *string `field:"required" json:"key" yaml:"key"` // The value associated with the key for the query string parameter. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-connection-parameter.html#cfn-events-connection-parameter-value // Value *string `field:"required" json:"value" yaml:"value"` // Specifies whether the value is secret. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-connection-parameter.html#cfn-events-connection-parameter-isvaluesecret // IsValueSecret interface{} `field:"optional" json:"isValueSecret" yaml:"isValueSecret"` }