Show / Hide Table of Contents

Class CfnTestCasePropsMixin.DatabaseCDCProperty

Defines the Change Data Capture (CDC) of the database.

Inheritance
object
CfnTestCasePropsMixin.DatabaseCDCProperty
Implements
CfnTestCasePropsMixin.IDatabaseCDCProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.AppTest
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnTestCasePropsMixin.DatabaseCDCProperty : CfnTestCasePropsMixin.IDatabaseCDCProperty
Syntax (vb)
Public Class CfnTestCasePropsMixin.DatabaseCDCProperty Implements CfnTestCasePropsMixin.IDatabaseCDCProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-databasecdc.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.CfnPropertyMixins.AWS.AppTest;

             var databaseCDCProperty = new DatabaseCDCProperty {
                 SourceMetadata = new SourceDatabaseMetadataProperty {
                     CaptureTool = "captureTool",
                     Type = "type"
                 },
                 TargetMetadata = new TargetDatabaseMetadataProperty {
                     CaptureTool = "captureTool",
                     Type = "type"
                 }
             };

Synopsis

Constructors

DatabaseCDCProperty()

Defines the Change Data Capture (CDC) of the database.

Properties

SourceMetadata

The source metadata of the database CDC.

TargetMetadata

The target metadata of the database CDC.

Constructors

DatabaseCDCProperty()

Defines the Change Data Capture (CDC) of the database.

public DatabaseCDCProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-databasecdc.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.CfnPropertyMixins.AWS.AppTest;

             var databaseCDCProperty = new DatabaseCDCProperty {
                 SourceMetadata = new SourceDatabaseMetadataProperty {
                     CaptureTool = "captureTool",
                     Type = "type"
                 },
                 TargetMetadata = new TargetDatabaseMetadataProperty {
                     CaptureTool = "captureTool",
                     Type = "type"
                 }
             };

Properties

SourceMetadata

The source metadata of the database CDC.

public object? SourceMetadata { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-databasecdc.html#cfn-apptest-testcase-databasecdc-sourcemetadata

Type union: either IResolvable or CfnTestCasePropsMixin.ISourceDatabaseMetadataProperty

TargetMetadata

The target metadata of the database CDC.

public object? TargetMetadata { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-databasecdc.html#cfn-apptest-testcase-databasecdc-targetmetadata

Type union: either IResolvable or CfnTestCasePropsMixin.ITargetDatabaseMetadataProperty

Implements

CfnTestCasePropsMixin.IDatabaseCDCProperty
Back to top Generated by DocFX