package awspinpointemail // An object that defines a Amazon Pinpoint destination for email events. // // You can use Amazon Pinpoint events to create attributes in Amazon Pinpoint projects. You can use these attributes to create segments for your campaigns. // // 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" // // pinpointDestinationProperty := &PinpointDestinationProperty{ // ApplicationArn: jsii.String("applicationArn"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationseteventdestination-pinpointdestination.html // type CfnConfigurationSetEventDestination_PinpointDestinationProperty struct { // The Amazon Resource Name (ARN) of the Amazon Pinpoint project that you want to send email events to. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationseteventdestination-pinpointdestination.html#cfn-pinpointemail-configurationseteventdestination-pinpointdestination-applicationarn // ApplicationArn *string `field:"optional" json:"applicationArn" yaml:"applicationArn"` }