Show / Hide Table of Contents

Class CfnTable.ContributorInsightsSpecificationProperty

Configures contributor insights settings for a table or one of its indexes.

Inheritance
object
CfnTable.ContributorInsightsSpecificationProperty
Implements
CfnTable.IContributorInsightsSpecificationProperty
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 CfnTable.ContributorInsightsSpecificationProperty : CfnTable.IContributorInsightsSpecificationProperty
Syntax (vb)
Public Class CfnTable.ContributorInsightsSpecificationProperty Implements CfnTable.IContributorInsightsSpecificationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-contributorinsightsspecification.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 contributorInsightsSpecificationProperty = new ContributorInsightsSpecificationProperty {
                 Enabled = false,

                 // the properties below are optional
                 Mode = "mode"
             };

Synopsis

Constructors

ContributorInsightsSpecificationProperty()

Configures contributor insights settings for a table or one of its indexes.

Properties

Enabled

Indicates whether CloudWatch Contributor Insights are to be enabled (true) or disabled (false).

Mode

Specifies the CloudWatch Contributor Insights mode for a table.

Constructors

ContributorInsightsSpecificationProperty()

Configures contributor insights settings for a table or one of its indexes.

public ContributorInsightsSpecificationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-contributorinsightsspecification.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 contributorInsightsSpecificationProperty = new ContributorInsightsSpecificationProperty {
                 Enabled = false,

                 // the properties below are optional
                 Mode = "mode"
             };

Properties

Enabled

Indicates whether CloudWatch Contributor Insights are to be enabled (true) or disabled (false).

public object Enabled { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-contributorinsightsspecification.html#cfn-dynamodb-table-contributorinsightsspecification-enabled

Mode

Specifies the CloudWatch Contributor Insights mode for a table.

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

string

Remarks

Valid values are ACCESSED_AND_THROTTLED_KEYS (tracks all access and throttled events) or THROTTLED_KEYS (tracks only throttled events). This setting determines what type of contributor insights data is collected for the table.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-contributorinsightsspecification.html#cfn-dynamodb-table-contributorinsightsspecification-mode

Implements

CfnTable.IContributorInsightsSpecificationProperty
Back to top Generated by DocFX