1. Packages
  2. Packages
  3. AWS
  4. API Docs
  5. pinpoint
  6. Smsvoicev2EventDestination
Viewing docs for AWS v7.33.0
published on Monday, Jun 15, 2026 by Pulumi
aws logo
Viewing docs for AWS v7.33.0
published on Monday, Jun 15, 2026 by Pulumi

    Manages an AWS End User Messaging SMS Event Destination.

    An event destination is a location where messaging events are published. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured per event destination. Changing the sink type (e.g., from snsDestination to cloudwatchLogsDestination) forces resource replacement — AWS’s UpdateEventDestination rejects sink-type changes with ConflictException.

    Example Usage

    CloudWatch Logs Destination

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.pinpoint.Smsvoicev2ConfigurationSet("example", {name: "example-configuration-set"});
    const exampleSmsvoicev2EventDestination = new aws.pinpoint.Smsvoicev2EventDestination("example", {
        configurationSetName: example.name,
        eventDestinationName: "example",
        matchingEventTypes: ["ALL"],
        cloudwatchLogsDestination: {
            iamRoleArn: exampleAwsIamRole.arn,
            logGroupArn: exampleAwsCloudwatchLogGroup.arn,
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.pinpoint.Smsvoicev2ConfigurationSet("example", name="example-configuration-set")
    example_smsvoicev2_event_destination = aws.pinpoint.Smsvoicev2EventDestination("example",
        configuration_set_name=example.name,
        event_destination_name="example",
        matching_event_types=["ALL"],
        cloudwatch_logs_destination={
            "iam_role_arn": example_aws_iam_role["arn"],
            "log_group_arn": example_aws_cloudwatch_log_group["arn"],
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/pinpoint"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := pinpoint.NewSmsvoicev2ConfigurationSet(ctx, "example", &pinpoint.Smsvoicev2ConfigurationSetArgs{
    			Name: pulumi.String("example-configuration-set"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = pinpoint.NewSmsvoicev2EventDestination(ctx, "example", &pinpoint.Smsvoicev2EventDestinationArgs{
    			ConfigurationSetName: example.Name,
    			EventDestinationName: pulumi.String("example"),
    			MatchingEventTypes: pulumi.StringArray{
    				pulumi.String("ALL"),
    			},
    			CloudwatchLogsDestination: &pinpoint.Smsvoicev2EventDestinationCloudwatchLogsDestinationArgs{
    				IamRoleArn:  pulumi.Any(exampleAwsIamRole.Arn),
    				LogGroupArn: pulumi.Any(exampleAwsCloudwatchLogGroup.Arn),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.Pinpoint.Smsvoicev2ConfigurationSet("example", new()
        {
            Name = "example-configuration-set",
        });
    
        var exampleSmsvoicev2EventDestination = new Aws.Pinpoint.Smsvoicev2EventDestination("example", new()
        {
            ConfigurationSetName = example.Name,
            EventDestinationName = "example",
            MatchingEventTypes = new[]
            {
                "ALL",
            },
            CloudwatchLogsDestination = new Aws.Pinpoint.Inputs.Smsvoicev2EventDestinationCloudwatchLogsDestinationArgs
            {
                IamRoleArn = exampleAwsIamRole.Arn,
                LogGroupArn = exampleAwsCloudwatchLogGroup.Arn,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.pinpoint.Smsvoicev2ConfigurationSet;
    import com.pulumi.aws.pinpoint.Smsvoicev2ConfigurationSetArgs;
    import com.pulumi.aws.pinpoint.Smsvoicev2EventDestination;
    import com.pulumi.aws.pinpoint.Smsvoicev2EventDestinationArgs;
    import com.pulumi.aws.pinpoint.inputs.Smsvoicev2EventDestinationCloudwatchLogsDestinationArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new Smsvoicev2ConfigurationSet("example", Smsvoicev2ConfigurationSetArgs.builder()
                .name("example-configuration-set")
                .build());
    
            var exampleSmsvoicev2EventDestination = new Smsvoicev2EventDestination("exampleSmsvoicev2EventDestination", Smsvoicev2EventDestinationArgs.builder()
                .configurationSetName(example.name())
                .eventDestinationName("example")
                .matchingEventTypes("ALL")
                .cloudwatchLogsDestination(Smsvoicev2EventDestinationCloudwatchLogsDestinationArgs.builder()
                    .iamRoleArn(exampleAwsIamRole.arn())
                    .logGroupArn(exampleAwsCloudwatchLogGroup.arn())
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:pinpoint:Smsvoicev2ConfigurationSet
        properties:
          name: example-configuration-set
      exampleSmsvoicev2EventDestination:
        type: aws:pinpoint:Smsvoicev2EventDestination
        name: example
        properties:
          configurationSetName: ${example.name}
          eventDestinationName: example
          matchingEventTypes:
            - ALL
          cloudwatchLogsDestination:
            iamRoleArn: ${exampleAwsIamRole.arn}
            logGroupArn: ${exampleAwsCloudwatchLogGroup.arn}
    
    pulumi {
      required_providers {
        aws = {
          source = "pulumi/aws"
        }
      }
    }
    
    resource "aws_pinpoint_smsvoicev2configurationset" "example" {
      name = "example-configuration-set"
    }
    resource "aws_pinpoint_smsvoicev2eventdestination" "example" {
      configuration_set_name = aws_pinpoint_smsvoicev2configurationset.example.name
      event_destination_name = "example"
      matching_event_types   = ["ALL"]
      cloudwatch_logs_destination = {
        iam_role_arn  = exampleAwsIamRole.arn
        log_group_arn = exampleAwsCloudwatchLogGroup.arn
      }
    }
    

    Kinesis Firehose Destination

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.pinpoint.Smsvoicev2ConfigurationSet("example", {name: "example-configuration-set"});
    const exampleSmsvoicev2EventDestination = new aws.pinpoint.Smsvoicev2EventDestination("example", {
        configurationSetName: example.name,
        eventDestinationName: "example",
        matchingEventTypes: ["ALL"],
        kinesisFirehoseDestination: {
            deliveryStreamArn: exampleAwsKinesisFirehoseDeliveryStream.arn,
            iamRoleArn: exampleAwsIamRole.arn,
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.pinpoint.Smsvoicev2ConfigurationSet("example", name="example-configuration-set")
    example_smsvoicev2_event_destination = aws.pinpoint.Smsvoicev2EventDestination("example",
        configuration_set_name=example.name,
        event_destination_name="example",
        matching_event_types=["ALL"],
        kinesis_firehose_destination={
            "delivery_stream_arn": example_aws_kinesis_firehose_delivery_stream["arn"],
            "iam_role_arn": example_aws_iam_role["arn"],
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/pinpoint"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := pinpoint.NewSmsvoicev2ConfigurationSet(ctx, "example", &pinpoint.Smsvoicev2ConfigurationSetArgs{
    			Name: pulumi.String("example-configuration-set"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = pinpoint.NewSmsvoicev2EventDestination(ctx, "example", &pinpoint.Smsvoicev2EventDestinationArgs{
    			ConfigurationSetName: example.Name,
    			EventDestinationName: pulumi.String("example"),
    			MatchingEventTypes: pulumi.StringArray{
    				pulumi.String("ALL"),
    			},
    			KinesisFirehoseDestination: &pinpoint.Smsvoicev2EventDestinationKinesisFirehoseDestinationArgs{
    				DeliveryStreamArn: pulumi.Any(exampleAwsKinesisFirehoseDeliveryStream.Arn),
    				IamRoleArn:        pulumi.Any(exampleAwsIamRole.Arn),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.Pinpoint.Smsvoicev2ConfigurationSet("example", new()
        {
            Name = "example-configuration-set",
        });
    
        var exampleSmsvoicev2EventDestination = new Aws.Pinpoint.Smsvoicev2EventDestination("example", new()
        {
            ConfigurationSetName = example.Name,
            EventDestinationName = "example",
            MatchingEventTypes = new[]
            {
                "ALL",
            },
            KinesisFirehoseDestination = new Aws.Pinpoint.Inputs.Smsvoicev2EventDestinationKinesisFirehoseDestinationArgs
            {
                DeliveryStreamArn = exampleAwsKinesisFirehoseDeliveryStream.Arn,
                IamRoleArn = exampleAwsIamRole.Arn,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.pinpoint.Smsvoicev2ConfigurationSet;
    import com.pulumi.aws.pinpoint.Smsvoicev2ConfigurationSetArgs;
    import com.pulumi.aws.pinpoint.Smsvoicev2EventDestination;
    import com.pulumi.aws.pinpoint.Smsvoicev2EventDestinationArgs;
    import com.pulumi.aws.pinpoint.inputs.Smsvoicev2EventDestinationKinesisFirehoseDestinationArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new Smsvoicev2ConfigurationSet("example", Smsvoicev2ConfigurationSetArgs.builder()
                .name("example-configuration-set")
                .build());
    
            var exampleSmsvoicev2EventDestination = new Smsvoicev2EventDestination("exampleSmsvoicev2EventDestination", Smsvoicev2EventDestinationArgs.builder()
                .configurationSetName(example.name())
                .eventDestinationName("example")
                .matchingEventTypes("ALL")
                .kinesisFirehoseDestination(Smsvoicev2EventDestinationKinesisFirehoseDestinationArgs.builder()
                    .deliveryStreamArn(exampleAwsKinesisFirehoseDeliveryStream.arn())
                    .iamRoleArn(exampleAwsIamRole.arn())
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:pinpoint:Smsvoicev2ConfigurationSet
        properties:
          name: example-configuration-set
      exampleSmsvoicev2EventDestination:
        type: aws:pinpoint:Smsvoicev2EventDestination
        name: example
        properties:
          configurationSetName: ${example.name}
          eventDestinationName: example
          matchingEventTypes:
            - ALL
          kinesisFirehoseDestination:
            deliveryStreamArn: ${exampleAwsKinesisFirehoseDeliveryStream.arn}
            iamRoleArn: ${exampleAwsIamRole.arn}
    
    pulumi {
      required_providers {
        aws = {
          source = "pulumi/aws"
        }
      }
    }
    
    resource "aws_pinpoint_smsvoicev2configurationset" "example" {
      name = "example-configuration-set"
    }
    resource "aws_pinpoint_smsvoicev2eventdestination" "example" {
      configuration_set_name = aws_pinpoint_smsvoicev2configurationset.example.name
      event_destination_name = "example"
      matching_event_types   = ["ALL"]
      kinesis_firehose_destination = {
        delivery_stream_arn = exampleAwsKinesisFirehoseDeliveryStream.arn
        iam_role_arn        = exampleAwsIamRole.arn
      }
    }
    

    SNS Destination

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.pinpoint.Smsvoicev2ConfigurationSet("example", {name: "example-configuration-set"});
    const exampleSmsvoicev2EventDestination = new aws.pinpoint.Smsvoicev2EventDestination("example", {
        configurationSetName: example.name,
        eventDestinationName: "example",
        matchingEventTypes: ["ALL"],
        snsDestination: {
            topicArn: exampleAwsSnsTopic.arn,
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.pinpoint.Smsvoicev2ConfigurationSet("example", name="example-configuration-set")
    example_smsvoicev2_event_destination = aws.pinpoint.Smsvoicev2EventDestination("example",
        configuration_set_name=example.name,
        event_destination_name="example",
        matching_event_types=["ALL"],
        sns_destination={
            "topic_arn": example_aws_sns_topic["arn"],
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/pinpoint"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := pinpoint.NewSmsvoicev2ConfigurationSet(ctx, "example", &pinpoint.Smsvoicev2ConfigurationSetArgs{
    			Name: pulumi.String("example-configuration-set"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = pinpoint.NewSmsvoicev2EventDestination(ctx, "example", &pinpoint.Smsvoicev2EventDestinationArgs{
    			ConfigurationSetName: example.Name,
    			EventDestinationName: pulumi.String("example"),
    			MatchingEventTypes: pulumi.StringArray{
    				pulumi.String("ALL"),
    			},
    			SnsDestination: &pinpoint.Smsvoicev2EventDestinationSnsDestinationArgs{
    				TopicArn: pulumi.Any(exampleAwsSnsTopic.Arn),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.Pinpoint.Smsvoicev2ConfigurationSet("example", new()
        {
            Name = "example-configuration-set",
        });
    
        var exampleSmsvoicev2EventDestination = new Aws.Pinpoint.Smsvoicev2EventDestination("example", new()
        {
            ConfigurationSetName = example.Name,
            EventDestinationName = "example",
            MatchingEventTypes = new[]
            {
                "ALL",
            },
            SnsDestination = new Aws.Pinpoint.Inputs.Smsvoicev2EventDestinationSnsDestinationArgs
            {
                TopicArn = exampleAwsSnsTopic.Arn,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.pinpoint.Smsvoicev2ConfigurationSet;
    import com.pulumi.aws.pinpoint.Smsvoicev2ConfigurationSetArgs;
    import com.pulumi.aws.pinpoint.Smsvoicev2EventDestination;
    import com.pulumi.aws.pinpoint.Smsvoicev2EventDestinationArgs;
    import com.pulumi.aws.pinpoint.inputs.Smsvoicev2EventDestinationSnsDestinationArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new Smsvoicev2ConfigurationSet("example", Smsvoicev2ConfigurationSetArgs.builder()
                .name("example-configuration-set")
                .build());
    
            var exampleSmsvoicev2EventDestination = new Smsvoicev2EventDestination("exampleSmsvoicev2EventDestination", Smsvoicev2EventDestinationArgs.builder()
                .configurationSetName(example.name())
                .eventDestinationName("example")
                .matchingEventTypes("ALL")
                .snsDestination(Smsvoicev2EventDestinationSnsDestinationArgs.builder()
                    .topicArn(exampleAwsSnsTopic.arn())
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:pinpoint:Smsvoicev2ConfigurationSet
        properties:
          name: example-configuration-set
      exampleSmsvoicev2EventDestination:
        type: aws:pinpoint:Smsvoicev2EventDestination
        name: example
        properties:
          configurationSetName: ${example.name}
          eventDestinationName: example
          matchingEventTypes:
            - ALL
          snsDestination:
            topicArn: ${exampleAwsSnsTopic.arn}
    
    pulumi {
      required_providers {
        aws = {
          source = "pulumi/aws"
        }
      }
    }
    
    resource "aws_pinpoint_smsvoicev2configurationset" "example" {
      name = "example-configuration-set"
    }
    resource "aws_pinpoint_smsvoicev2eventdestination" "example" {
      configuration_set_name = aws_pinpoint_smsvoicev2configurationset.example.name
      event_destination_name = "example"
      matching_event_types   = ["ALL"]
      sns_destination = {
        topic_arn = exampleAwsSnsTopic.arn
      }
    }
    

    Create Smsvoicev2EventDestination Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Smsvoicev2EventDestination(name: string, args: Smsvoicev2EventDestinationArgs, opts?: CustomResourceOptions);
    @overload
    def Smsvoicev2EventDestination(resource_name: str,
                                   args: Smsvoicev2EventDestinationArgs,
                                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def Smsvoicev2EventDestination(resource_name: str,
                                   opts: Optional[ResourceOptions] = None,
                                   configuration_set_name: Optional[str] = None,
                                   event_destination_name: Optional[str] = None,
                                   matching_event_types: Optional[Sequence[str]] = None,
                                   cloudwatch_logs_destination: Optional[Smsvoicev2EventDestinationCloudwatchLogsDestinationArgs] = None,
                                   enabled: Optional[bool] = None,
                                   kinesis_firehose_destination: Optional[Smsvoicev2EventDestinationKinesisFirehoseDestinationArgs] = None,
                                   region: Optional[str] = None,
                                   sns_destination: Optional[Smsvoicev2EventDestinationSnsDestinationArgs] = None)
    func NewSmsvoicev2EventDestination(ctx *Context, name string, args Smsvoicev2EventDestinationArgs, opts ...ResourceOption) (*Smsvoicev2EventDestination, error)
    public Smsvoicev2EventDestination(string name, Smsvoicev2EventDestinationArgs args, CustomResourceOptions? opts = null)
    public Smsvoicev2EventDestination(String name, Smsvoicev2EventDestinationArgs args)
    public Smsvoicev2EventDestination(String name, Smsvoicev2EventDestinationArgs args, CustomResourceOptions options)
    
    type: aws:pinpoint:Smsvoicev2EventDestination
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "aws_pinpoint_smsvoicev2eventdestination" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args Smsvoicev2EventDestinationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args Smsvoicev2EventDestinationArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args Smsvoicev2EventDestinationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args Smsvoicev2EventDestinationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args Smsvoicev2EventDestinationArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var smsvoicev2EventDestinationResource = new Aws.Pinpoint.Smsvoicev2EventDestination("smsvoicev2EventDestinationResource", new()
    {
        ConfigurationSetName = "string",
        EventDestinationName = "string",
        MatchingEventTypes = new[]
        {
            "string",
        },
        CloudwatchLogsDestination = new Aws.Pinpoint.Inputs.Smsvoicev2EventDestinationCloudwatchLogsDestinationArgs
        {
            IamRoleArn = "string",
            LogGroupArn = "string",
        },
        Enabled = false,
        KinesisFirehoseDestination = new Aws.Pinpoint.Inputs.Smsvoicev2EventDestinationKinesisFirehoseDestinationArgs
        {
            DeliveryStreamArn = "string",
            IamRoleArn = "string",
        },
        Region = "string",
        SnsDestination = new Aws.Pinpoint.Inputs.Smsvoicev2EventDestinationSnsDestinationArgs
        {
            TopicArn = "string",
        },
    });
    
    example, err := pinpoint.NewSmsvoicev2EventDestination(ctx, "smsvoicev2EventDestinationResource", &pinpoint.Smsvoicev2EventDestinationArgs{
    	ConfigurationSetName: pulumi.String("string"),
    	EventDestinationName: pulumi.String("string"),
    	MatchingEventTypes: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	CloudwatchLogsDestination: &pinpoint.Smsvoicev2EventDestinationCloudwatchLogsDestinationArgs{
    		IamRoleArn:  pulumi.String("string"),
    		LogGroupArn: pulumi.String("string"),
    	},
    	Enabled: pulumi.Bool(false),
    	KinesisFirehoseDestination: &pinpoint.Smsvoicev2EventDestinationKinesisFirehoseDestinationArgs{
    		DeliveryStreamArn: pulumi.String("string"),
    		IamRoleArn:        pulumi.String("string"),
    	},
    	Region: pulumi.String("string"),
    	SnsDestination: &pinpoint.Smsvoicev2EventDestinationSnsDestinationArgs{
    		TopicArn: pulumi.String("string"),
    	},
    })
    
    resource "aws_pinpoint_smsvoicev2eventdestination" "smsvoicev2EventDestinationResource" {
      configuration_set_name = "string"
      event_destination_name = "string"
      matching_event_types   = ["string"]
      cloudwatch_logs_destination = {
        iam_role_arn  = "string"
        log_group_arn = "string"
      }
      enabled = false
      kinesis_firehose_destination = {
        delivery_stream_arn = "string"
        iam_role_arn        = "string"
      }
      region = "string"
      sns_destination = {
        topic_arn = "string"
      }
    }
    
    var smsvoicev2EventDestinationResource = new Smsvoicev2EventDestination("smsvoicev2EventDestinationResource", Smsvoicev2EventDestinationArgs.builder()
        .configurationSetName("string")
        .eventDestinationName("string")
        .matchingEventTypes("string")
        .cloudwatchLogsDestination(Smsvoicev2EventDestinationCloudwatchLogsDestinationArgs.builder()
            .iamRoleArn("string")
            .logGroupArn("string")
            .build())
        .enabled(false)
        .kinesisFirehoseDestination(Smsvoicev2EventDestinationKinesisFirehoseDestinationArgs.builder()
            .deliveryStreamArn("string")
            .iamRoleArn("string")
            .build())
        .region("string")
        .snsDestination(Smsvoicev2EventDestinationSnsDestinationArgs.builder()
            .topicArn("string")
            .build())
        .build());
    
    smsvoicev2_event_destination_resource = aws.pinpoint.Smsvoicev2EventDestination("smsvoicev2EventDestinationResource",
        configuration_set_name="string",
        event_destination_name="string",
        matching_event_types=["string"],
        cloudwatch_logs_destination={
            "iam_role_arn": "string",
            "log_group_arn": "string",
        },
        enabled=False,
        kinesis_firehose_destination={
            "delivery_stream_arn": "string",
            "iam_role_arn": "string",
        },
        region="string",
        sns_destination={
            "topic_arn": "string",
        })
    
    const smsvoicev2EventDestinationResource = new aws.pinpoint.Smsvoicev2EventDestination("smsvoicev2EventDestinationResource", {
        configurationSetName: "string",
        eventDestinationName: "string",
        matchingEventTypes: ["string"],
        cloudwatchLogsDestination: {
            iamRoleArn: "string",
            logGroupArn: "string",
        },
        enabled: false,
        kinesisFirehoseDestination: {
            deliveryStreamArn: "string",
            iamRoleArn: "string",
        },
        region: "string",
        snsDestination: {
            topicArn: "string",
        },
    });
    
    type: aws:pinpoint:Smsvoicev2EventDestination
    properties:
        cloudwatchLogsDestination:
            iamRoleArn: string
            logGroupArn: string
        configurationSetName: string
        enabled: false
        eventDestinationName: string
        kinesisFirehoseDestination:
            deliveryStreamArn: string
            iamRoleArn: string
        matchingEventTypes:
            - string
        region: string
        snsDestination:
            topicArn: string
    

    Smsvoicev2EventDestination Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The Smsvoicev2EventDestination resource accepts the following input properties:

    ConfigurationSetName string
    Name of the configuration set this event destination belongs to. Changing this forces a new resource.
    EventDestinationName string
    Name of the event destination. Changing this forces a new resource.
    MatchingEventTypes List<string>

    Event types for which the destination receives records. See the AWS API reference for valid values.

    The following arguments are optional:

    CloudwatchLogsDestination Smsvoicev2EventDestinationCloudwatchLogsDestination
    Send events to Amazon CloudWatch Logs. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See cloudwatchLogsDestination Block for details.
    Enabled bool
    Whether the event destination is enabled. Defaults to true.
    KinesisFirehoseDestination Smsvoicev2EventDestinationKinesisFirehoseDestination
    Send events to Amazon Data Firehose. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See kinesisFirehoseDestination Block for details.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    SnsDestination Smsvoicev2EventDestinationSnsDestination
    Send events to Amazon SNS. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See snsDestination Block for details.
    ConfigurationSetName string
    Name of the configuration set this event destination belongs to. Changing this forces a new resource.
    EventDestinationName string
    Name of the event destination. Changing this forces a new resource.
    MatchingEventTypes []string

    Event types for which the destination receives records. See the AWS API reference for valid values.

    The following arguments are optional:

    CloudwatchLogsDestination Smsvoicev2EventDestinationCloudwatchLogsDestinationArgs
    Send events to Amazon CloudWatch Logs. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See cloudwatchLogsDestination Block for details.
    Enabled bool
    Whether the event destination is enabled. Defaults to true.
    KinesisFirehoseDestination Smsvoicev2EventDestinationKinesisFirehoseDestinationArgs
    Send events to Amazon Data Firehose. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See kinesisFirehoseDestination Block for details.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    SnsDestination Smsvoicev2EventDestinationSnsDestinationArgs
    Send events to Amazon SNS. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See snsDestination Block for details.
    configuration_set_name string
    Name of the configuration set this event destination belongs to. Changing this forces a new resource.
    event_destination_name string
    Name of the event destination. Changing this forces a new resource.
    matching_event_types list(string)

    Event types for which the destination receives records. See the AWS API reference for valid values.

    The following arguments are optional:

    cloudwatch_logs_destination object
    Send events to Amazon CloudWatch Logs. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See cloudwatchLogsDestination Block for details.
    enabled bool
    Whether the event destination is enabled. Defaults to true.
    kinesis_firehose_destination object
    Send events to Amazon Data Firehose. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See kinesisFirehoseDestination Block for details.
    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    sns_destination object
    Send events to Amazon SNS. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See snsDestination Block for details.
    configurationSetName String
    Name of the configuration set this event destination belongs to. Changing this forces a new resource.
    eventDestinationName String
    Name of the event destination. Changing this forces a new resource.
    matchingEventTypes List<String>

    Event types for which the destination receives records. See the AWS API reference for valid values.

    The following arguments are optional:

    cloudwatchLogsDestination Smsvoicev2EventDestinationCloudwatchLogsDestination
    Send events to Amazon CloudWatch Logs. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See cloudwatchLogsDestination Block for details.
    enabled Boolean
    Whether the event destination is enabled. Defaults to true.
    kinesisFirehoseDestination Smsvoicev2EventDestinationKinesisFirehoseDestination
    Send events to Amazon Data Firehose. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See kinesisFirehoseDestination Block for details.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    snsDestination Smsvoicev2EventDestinationSnsDestination
    Send events to Amazon SNS. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See snsDestination Block for details.
    configurationSetName string
    Name of the configuration set this event destination belongs to. Changing this forces a new resource.
    eventDestinationName string
    Name of the event destination. Changing this forces a new resource.
    matchingEventTypes string[]

    Event types for which the destination receives records. See the AWS API reference for valid values.

    The following arguments are optional:

    cloudwatchLogsDestination Smsvoicev2EventDestinationCloudwatchLogsDestination
    Send events to Amazon CloudWatch Logs. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See cloudwatchLogsDestination Block for details.
    enabled boolean
    Whether the event destination is enabled. Defaults to true.
    kinesisFirehoseDestination Smsvoicev2EventDestinationKinesisFirehoseDestination
    Send events to Amazon Data Firehose. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See kinesisFirehoseDestination Block for details.
    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    snsDestination Smsvoicev2EventDestinationSnsDestination
    Send events to Amazon SNS. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See snsDestination Block for details.
    configuration_set_name str
    Name of the configuration set this event destination belongs to. Changing this forces a new resource.
    event_destination_name str
    Name of the event destination. Changing this forces a new resource.
    matching_event_types Sequence[str]

    Event types for which the destination receives records. See the AWS API reference for valid values.

    The following arguments are optional:

    cloudwatch_logs_destination Smsvoicev2EventDestinationCloudwatchLogsDestinationArgs
    Send events to Amazon CloudWatch Logs. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See cloudwatchLogsDestination Block for details.
    enabled bool
    Whether the event destination is enabled. Defaults to true.
    kinesis_firehose_destination Smsvoicev2EventDestinationKinesisFirehoseDestinationArgs
    Send events to Amazon Data Firehose. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See kinesisFirehoseDestination Block for details.
    region str
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    sns_destination Smsvoicev2EventDestinationSnsDestinationArgs
    Send events to Amazon SNS. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See snsDestination Block for details.
    configurationSetName String
    Name of the configuration set this event destination belongs to. Changing this forces a new resource.
    eventDestinationName String
    Name of the event destination. Changing this forces a new resource.
    matchingEventTypes List<String>

    Event types for which the destination receives records. See the AWS API reference for valid values.

    The following arguments are optional:

    cloudwatchLogsDestination Property Map
    Send events to Amazon CloudWatch Logs. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See cloudwatchLogsDestination Block for details.
    enabled Boolean
    Whether the event destination is enabled. Defaults to true.
    kinesisFirehoseDestination Property Map
    Send events to Amazon Data Firehose. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See kinesisFirehoseDestination Block for details.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    snsDestination Property Map
    Send events to Amazon SNS. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See snsDestination Block for details.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Smsvoicev2EventDestination resource produces the following output properties:

    ConfigurationSetArn string
    ARN of the parent configuration set.
    Id string
    The provider-assigned unique ID for this managed resource.
    ConfigurationSetArn string
    ARN of the parent configuration set.
    Id string
    The provider-assigned unique ID for this managed resource.
    configuration_set_arn string
    ARN of the parent configuration set.
    id string
    The provider-assigned unique ID for this managed resource.
    configurationSetArn String
    ARN of the parent configuration set.
    id String
    The provider-assigned unique ID for this managed resource.
    configurationSetArn string
    ARN of the parent configuration set.
    id string
    The provider-assigned unique ID for this managed resource.
    configuration_set_arn str
    ARN of the parent configuration set.
    id str
    The provider-assigned unique ID for this managed resource.
    configurationSetArn String
    ARN of the parent configuration set.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing Smsvoicev2EventDestination Resource

    Get an existing Smsvoicev2EventDestination resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: Smsvoicev2EventDestinationState, opts?: CustomResourceOptions): Smsvoicev2EventDestination
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cloudwatch_logs_destination: Optional[Smsvoicev2EventDestinationCloudwatchLogsDestinationArgs] = None,
            configuration_set_arn: Optional[str] = None,
            configuration_set_name: Optional[str] = None,
            enabled: Optional[bool] = None,
            event_destination_name: Optional[str] = None,
            kinesis_firehose_destination: Optional[Smsvoicev2EventDestinationKinesisFirehoseDestinationArgs] = None,
            matching_event_types: Optional[Sequence[str]] = None,
            region: Optional[str] = None,
            sns_destination: Optional[Smsvoicev2EventDestinationSnsDestinationArgs] = None) -> Smsvoicev2EventDestination
    func GetSmsvoicev2EventDestination(ctx *Context, name string, id IDInput, state *Smsvoicev2EventDestinationState, opts ...ResourceOption) (*Smsvoicev2EventDestination, error)
    public static Smsvoicev2EventDestination Get(string name, Input<string> id, Smsvoicev2EventDestinationState? state, CustomResourceOptions? opts = null)
    public static Smsvoicev2EventDestination get(String name, Output<String> id, Smsvoicev2EventDestinationState state, CustomResourceOptions options)
    resources:  _:    type: aws:pinpoint:Smsvoicev2EventDestination    get:      id: ${id}
    import {
      to = aws_pinpoint_smsvoicev2eventdestination.example
      id = "${id}"
    }
    
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CloudwatchLogsDestination Smsvoicev2EventDestinationCloudwatchLogsDestination
    Send events to Amazon CloudWatch Logs. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See cloudwatchLogsDestination Block for details.
    ConfigurationSetArn string
    ARN of the parent configuration set.
    ConfigurationSetName string
    Name of the configuration set this event destination belongs to. Changing this forces a new resource.
    Enabled bool
    Whether the event destination is enabled. Defaults to true.
    EventDestinationName string
    Name of the event destination. Changing this forces a new resource.
    KinesisFirehoseDestination Smsvoicev2EventDestinationKinesisFirehoseDestination
    Send events to Amazon Data Firehose. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See kinesisFirehoseDestination Block for details.
    MatchingEventTypes List<string>

    Event types for which the destination receives records. See the AWS API reference for valid values.

    The following arguments are optional:

    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    SnsDestination Smsvoicev2EventDestinationSnsDestination
    Send events to Amazon SNS. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See snsDestination Block for details.
    CloudwatchLogsDestination Smsvoicev2EventDestinationCloudwatchLogsDestinationArgs
    Send events to Amazon CloudWatch Logs. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See cloudwatchLogsDestination Block for details.
    ConfigurationSetArn string
    ARN of the parent configuration set.
    ConfigurationSetName string
    Name of the configuration set this event destination belongs to. Changing this forces a new resource.
    Enabled bool
    Whether the event destination is enabled. Defaults to true.
    EventDestinationName string
    Name of the event destination. Changing this forces a new resource.
    KinesisFirehoseDestination Smsvoicev2EventDestinationKinesisFirehoseDestinationArgs
    Send events to Amazon Data Firehose. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See kinesisFirehoseDestination Block for details.
    MatchingEventTypes []string

    Event types for which the destination receives records. See the AWS API reference for valid values.

    The following arguments are optional:

    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    SnsDestination Smsvoicev2EventDestinationSnsDestinationArgs
    Send events to Amazon SNS. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See snsDestination Block for details.
    cloudwatch_logs_destination object
    Send events to Amazon CloudWatch Logs. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See cloudwatchLogsDestination Block for details.
    configuration_set_arn string
    ARN of the parent configuration set.
    configuration_set_name string
    Name of the configuration set this event destination belongs to. Changing this forces a new resource.
    enabled bool
    Whether the event destination is enabled. Defaults to true.
    event_destination_name string
    Name of the event destination. Changing this forces a new resource.
    kinesis_firehose_destination object
    Send events to Amazon Data Firehose. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See kinesisFirehoseDestination Block for details.
    matching_event_types list(string)

    Event types for which the destination receives records. See the AWS API reference for valid values.

    The following arguments are optional:

    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    sns_destination object
    Send events to Amazon SNS. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See snsDestination Block for details.
    cloudwatchLogsDestination Smsvoicev2EventDestinationCloudwatchLogsDestination
    Send events to Amazon CloudWatch Logs. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See cloudwatchLogsDestination Block for details.
    configurationSetArn String
    ARN of the parent configuration set.
    configurationSetName String
    Name of the configuration set this event destination belongs to. Changing this forces a new resource.
    enabled Boolean
    Whether the event destination is enabled. Defaults to true.
    eventDestinationName String
    Name of the event destination. Changing this forces a new resource.
    kinesisFirehoseDestination Smsvoicev2EventDestinationKinesisFirehoseDestination
    Send events to Amazon Data Firehose. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See kinesisFirehoseDestination Block for details.
    matchingEventTypes List<String>

    Event types for which the destination receives records. See the AWS API reference for valid values.

    The following arguments are optional:

    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    snsDestination Smsvoicev2EventDestinationSnsDestination
    Send events to Amazon SNS. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See snsDestination Block for details.
    cloudwatchLogsDestination Smsvoicev2EventDestinationCloudwatchLogsDestination
    Send events to Amazon CloudWatch Logs. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See cloudwatchLogsDestination Block for details.
    configurationSetArn string
    ARN of the parent configuration set.
    configurationSetName string
    Name of the configuration set this event destination belongs to. Changing this forces a new resource.
    enabled boolean
    Whether the event destination is enabled. Defaults to true.
    eventDestinationName string
    Name of the event destination. Changing this forces a new resource.
    kinesisFirehoseDestination Smsvoicev2EventDestinationKinesisFirehoseDestination
    Send events to Amazon Data Firehose. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See kinesisFirehoseDestination Block for details.
    matchingEventTypes string[]

    Event types for which the destination receives records. See the AWS API reference for valid values.

    The following arguments are optional:

    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    snsDestination Smsvoicev2EventDestinationSnsDestination
    Send events to Amazon SNS. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See snsDestination Block for details.
    cloudwatch_logs_destination Smsvoicev2EventDestinationCloudwatchLogsDestinationArgs
    Send events to Amazon CloudWatch Logs. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See cloudwatchLogsDestination Block for details.
    configuration_set_arn str
    ARN of the parent configuration set.
    configuration_set_name str
    Name of the configuration set this event destination belongs to. Changing this forces a new resource.
    enabled bool
    Whether the event destination is enabled. Defaults to true.
    event_destination_name str
    Name of the event destination. Changing this forces a new resource.
    kinesis_firehose_destination Smsvoicev2EventDestinationKinesisFirehoseDestinationArgs
    Send events to Amazon Data Firehose. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See kinesisFirehoseDestination Block for details.
    matching_event_types Sequence[str]

    Event types for which the destination receives records. See the AWS API reference for valid values.

    The following arguments are optional:

    region str
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    sns_destination Smsvoicev2EventDestinationSnsDestinationArgs
    Send events to Amazon SNS. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See snsDestination Block for details.
    cloudwatchLogsDestination Property Map
    Send events to Amazon CloudWatch Logs. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See cloudwatchLogsDestination Block for details.
    configurationSetArn String
    ARN of the parent configuration set.
    configurationSetName String
    Name of the configuration set this event destination belongs to. Changing this forces a new resource.
    enabled Boolean
    Whether the event destination is enabled. Defaults to true.
    eventDestinationName String
    Name of the event destination. Changing this forces a new resource.
    kinesisFirehoseDestination Property Map
    Send events to Amazon Data Firehose. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See kinesisFirehoseDestination Block for details.
    matchingEventTypes List<String>

    Event types for which the destination receives records. See the AWS API reference for valid values.

    The following arguments are optional:

    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    snsDestination Property Map
    Send events to Amazon SNS. Exactly one of cloudwatchLogsDestination, kinesisFirehoseDestination, or snsDestination must be configured. See snsDestination Block for details.

    Supporting Types

    Smsvoicev2EventDestinationCloudwatchLogsDestination, Smsvoicev2EventDestinationCloudwatchLogsDestinationArgs

    IamRoleArn string
    ARN of the IAM role that End User Messaging SMS assumes to write to the log group.
    LogGroupArn string
    ARN of the Amazon CloudWatch log group that receives the events.
    IamRoleArn string
    ARN of the IAM role that End User Messaging SMS assumes to write to the log group.
    LogGroupArn string
    ARN of the Amazon CloudWatch log group that receives the events.
    iam_role_arn string
    ARN of the IAM role that End User Messaging SMS assumes to write to the log group.
    log_group_arn string
    ARN of the Amazon CloudWatch log group that receives the events.
    iamRoleArn String
    ARN of the IAM role that End User Messaging SMS assumes to write to the log group.
    logGroupArn String
    ARN of the Amazon CloudWatch log group that receives the events.
    iamRoleArn string
    ARN of the IAM role that End User Messaging SMS assumes to write to the log group.
    logGroupArn string
    ARN of the Amazon CloudWatch log group that receives the events.
    iam_role_arn str
    ARN of the IAM role that End User Messaging SMS assumes to write to the log group.
    log_group_arn str
    ARN of the Amazon CloudWatch log group that receives the events.
    iamRoleArn String
    ARN of the IAM role that End User Messaging SMS assumes to write to the log group.
    logGroupArn String
    ARN of the Amazon CloudWatch log group that receives the events.

    Smsvoicev2EventDestinationKinesisFirehoseDestination, Smsvoicev2EventDestinationKinesisFirehoseDestinationArgs

    DeliveryStreamArn string
    ARN of the Amazon Data Firehose delivery stream that receives the events.
    IamRoleArn string
    ARN of the IAM role that End User Messaging SMS assumes to write to the delivery stream.
    DeliveryStreamArn string
    ARN of the Amazon Data Firehose delivery stream that receives the events.
    IamRoleArn string
    ARN of the IAM role that End User Messaging SMS assumes to write to the delivery stream.
    delivery_stream_arn string
    ARN of the Amazon Data Firehose delivery stream that receives the events.
    iam_role_arn string
    ARN of the IAM role that End User Messaging SMS assumes to write to the delivery stream.
    deliveryStreamArn String
    ARN of the Amazon Data Firehose delivery stream that receives the events.
    iamRoleArn String
    ARN of the IAM role that End User Messaging SMS assumes to write to the delivery stream.
    deliveryStreamArn string
    ARN of the Amazon Data Firehose delivery stream that receives the events.
    iamRoleArn string
    ARN of the IAM role that End User Messaging SMS assumes to write to the delivery stream.
    delivery_stream_arn str
    ARN of the Amazon Data Firehose delivery stream that receives the events.
    iam_role_arn str
    ARN of the IAM role that End User Messaging SMS assumes to write to the delivery stream.
    deliveryStreamArn String
    ARN of the Amazon Data Firehose delivery stream that receives the events.
    iamRoleArn String
    ARN of the IAM role that End User Messaging SMS assumes to write to the delivery stream.

    Smsvoicev2EventDestinationSnsDestination, Smsvoicev2EventDestinationSnsDestinationArgs

    TopicArn string
    ARN of the Amazon SNS topic that receives the events.
    TopicArn string
    ARN of the Amazon SNS topic that receives the events.
    topic_arn string
    ARN of the Amazon SNS topic that receives the events.
    topicArn String
    ARN of the Amazon SNS topic that receives the events.
    topicArn string
    ARN of the Amazon SNS topic that receives the events.
    topic_arn str
    ARN of the Amazon SNS topic that receives the events.
    topicArn String
    ARN of the Amazon SNS topic that receives the events.

    Import

    Identity Schema

    Required

    • configurationSetName (String) Name of the configuration set this event destination belongs to.
    • eventDestinationName (String) Name of the event destination.

    Optional

    • accountId (String) AWS Account where this resource is managed.
    • region (String) Region where this resource is managed.

    Using pulumi import, import an event destination using the configurationSetName and eventDestinationName, separated by a comma. For example:

    $ pulumi import aws:pinpoint/smsvoicev2EventDestination:Smsvoicev2EventDestination example "example-configuration-set,example-event-destination"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo
    Viewing docs for AWS v7.33.0
    published on Monday, Jun 15, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial