Show / Hide Table of Contents

Class CfnGlobalTable.KinesisStreamSpecificationProperty

The Kinesis Data Streams configuration for the specified global table replica.

Inheritance
object
CfnGlobalTable.KinesisStreamSpecificationProperty
Implements
CfnGlobalTable.IKinesisStreamSpecificationProperty
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.DynamoDB
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnGlobalTable.KinesisStreamSpecificationProperty : CfnGlobalTable.IKinesisStreamSpecificationProperty
Syntax (vb)
Public Class CfnGlobalTable.KinesisStreamSpecificationProperty Implements CfnGlobalTable.IKinesisStreamSpecificationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-globaltable-kinesisstreamspecification.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.DynamoDB;

             var kinesisStreamSpecificationProperty = new KinesisStreamSpecificationProperty {
                 StreamArn = "streamArn",

                 // the properties below are optional
                 ApproximateCreationDateTimePrecision = "approximateCreationDateTimePrecision"
             };

Synopsis

Constructors

KinesisStreamSpecificationProperty()

The Kinesis Data Streams configuration for the specified global table replica.

Properties

ApproximateCreationDateTimePrecision

The precision for the time and date that the stream was created.

StreamArn

The ARN for a specific Kinesis data stream.

Constructors

KinesisStreamSpecificationProperty()

The Kinesis Data Streams configuration for the specified global table replica.

public KinesisStreamSpecificationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-globaltable-kinesisstreamspecification.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.DynamoDB;

             var kinesisStreamSpecificationProperty = new KinesisStreamSpecificationProperty {
                 StreamArn = "streamArn",

                 // the properties below are optional
                 ApproximateCreationDateTimePrecision = "approximateCreationDateTimePrecision"
             };

Properties

ApproximateCreationDateTimePrecision

The precision for the time and date that the stream was created.

public string? ApproximateCreationDateTimePrecision { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-globaltable-kinesisstreamspecification.html#cfn-dynamodb-globaltable-kinesisstreamspecification-approximatecreationdatetimeprecision

StreamArn

The ARN for a specific Kinesis data stream.

public string StreamArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-globaltable-kinesisstreamspecification.html#cfn-dynamodb-globaltable-kinesisstreamspecification-streamarn

Implements

CfnGlobalTable.IKinesisStreamSpecificationProperty
Back to top Generated by DocFX