Show / Hide Table of Contents

Class CfnEventStreamProps

Properties for defining a CfnEventStream.

Inheritance
object
CfnEventStreamProps
Implements
ICfnEventStreamProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Pinpoint
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnEventStreamProps : ICfnEventStreamProps
Syntax (vb)
Public Class CfnEventStreamProps Implements ICfnEventStreamProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Pinpoint;

             var cfnEventStreamProps = new CfnEventStreamProps {
                 ApplicationId = "applicationId",
                 DestinationStreamArn = "destinationStreamArn",
                 RoleArn = "roleArn"
             };

Synopsis

Constructors

CfnEventStreamProps()

Properties for defining a CfnEventStream.

Properties

ApplicationId

The unique identifier for the Amazon Pinpoint application that you want to export data from.

DestinationStreamArn

The Amazon Resource Name (ARN) of the Amazon Kinesis Data Stream or Amazon Data Firehose delivery stream that you want to publish event data to.

RoleArn

The AWS Identity and Access Management (IAM) role that authorizes Amazon Pinpoint to publish event data to the stream in your AWS account.

Constructors

CfnEventStreamProps()

Properties for defining a CfnEventStream.

public CfnEventStreamProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Pinpoint;

             var cfnEventStreamProps = new CfnEventStreamProps {
                 ApplicationId = "applicationId",
                 DestinationStreamArn = "destinationStreamArn",
                 RoleArn = "roleArn"
             };

Properties

ApplicationId

The unique identifier for the Amazon Pinpoint application that you want to export data from.

public string ApplicationId { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-applicationid

DestinationStreamArn

The Amazon Resource Name (ARN) of the Amazon Kinesis Data Stream or Amazon Data Firehose delivery stream that you want to publish event data to.

public string DestinationStreamArn { get; set; }
Property Value

string

Remarks

For a Kinesis Data Stream, the ARN format is: arn:aws:kinesis: region : account-id :stream/ stream_name

For a Firehose delivery stream, the ARN format is: arn:aws:firehose: region : account-id :deliverystream/ stream_name

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-destinationstreamarn

RoleArn

The AWS Identity and Access Management (IAM) role that authorizes Amazon Pinpoint to publish event data to the stream in your AWS account.

public string RoleArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-eventstream.html#cfn-pinpoint-eventstream-rolearn

Implements

ICfnEventStreamProps
Back to top Generated by DocFX