Show / Hide Table of Contents

Enum PerformanceInsightRetention

The retention period for Performance Insight data, in days.

Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public enum PerformanceInsightRetention
Syntax (vb)
Public Enum PerformanceInsightRetention
Remarks

Per https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbinstance.html#cfn-rds-dbinstance-performanceinsightsretentionperiod This must be either

    ExampleMetadata: infused

    Examples
    Vpc vpc;
                 Key kmsKey;
    
                 new DatabaseCluster(this, "Database", new DatabaseClusterProps {
                     Engine = DatabaseClusterEngine.AURORA,
                     Vpc = vpc,
                     EnablePerformanceInsights = true,
                     PerformanceInsightRetention = PerformanceInsightRetention.LONG_TERM,
                     PerformanceInsightEncryptionKey = kmsKey,
                     Writer = ClusterInstance.Provisioned("Writer", new ProvisionedClusterInstanceProps {
                         InstanceType = InstanceType.Of(InstanceClass.R7G, InstanceSize.LARGE)
                     })
                 });

    Synopsis

    Fields

    DEFAULT

    Default retention period of 7 days.

    LONG_TERM

    Long term retention period of 2 years.

    MONTHS_1

    The retention period for Performance Insight data, in days.

    MONTHS_10

    The retention period for Performance Insight data, in days.

    MONTHS_11

    The retention period for Performance Insight data, in days.

    MONTHS_12

    The retention period for Performance Insight data, in days.

    MONTHS_13

    The retention period for Performance Insight data, in days.

    MONTHS_14

    The retention period for Performance Insight data, in days.

    MONTHS_15

    The retention period for Performance Insight data, in days.

    MONTHS_16

    The retention period for Performance Insight data, in days.

    MONTHS_17

    The retention period for Performance Insight data, in days.

    MONTHS_18

    The retention period for Performance Insight data, in days.

    MONTHS_19

    The retention period for Performance Insight data, in days.

    MONTHS_2

    The retention period for Performance Insight data, in days.

    MONTHS_20

    The retention period for Performance Insight data, in days.

    MONTHS_21

    The retention period for Performance Insight data, in days.

    MONTHS_22

    The retention period for Performance Insight data, in days.

    MONTHS_23

    The retention period for Performance Insight data, in days.

    MONTHS_3

    The retention period for Performance Insight data, in days.

    MONTHS_4

    The retention period for Performance Insight data, in days.

    MONTHS_5

    The retention period for Performance Insight data, in days.

    MONTHS_6

    The retention period for Performance Insight data, in days.

    MONTHS_7

    The retention period for Performance Insight data, in days.

    MONTHS_8

    The retention period for Performance Insight data, in days.

    MONTHS_9

    The retention period for Performance Insight data, in days.

    Fields

    Name Description
    DEFAULT

    Default retention period of 7 days.

    LONG_TERM

    Long term retention period of 2 years.

    MONTHS_1

    The retention period for Performance Insight data, in days.

    MONTHS_10

    The retention period for Performance Insight data, in days.

    MONTHS_11

    The retention period for Performance Insight data, in days.

    MONTHS_12

    The retention period for Performance Insight data, in days.

    MONTHS_13

    The retention period for Performance Insight data, in days.

    MONTHS_14

    The retention period for Performance Insight data, in days.

    MONTHS_15

    The retention period for Performance Insight data, in days.

    MONTHS_16

    The retention period for Performance Insight data, in days.

    MONTHS_17

    The retention period for Performance Insight data, in days.

    MONTHS_18

    The retention period for Performance Insight data, in days.

    MONTHS_19

    The retention period for Performance Insight data, in days.

    MONTHS_2

    The retention period for Performance Insight data, in days.

    MONTHS_20

    The retention period for Performance Insight data, in days.

    MONTHS_21

    The retention period for Performance Insight data, in days.

    MONTHS_22

    The retention period for Performance Insight data, in days.

    MONTHS_23

    The retention period for Performance Insight data, in days.

    MONTHS_3

    The retention period for Performance Insight data, in days.

    MONTHS_4

    The retention period for Performance Insight data, in days.

    MONTHS_5

    The retention period for Performance Insight data, in days.

    MONTHS_6

    The retention period for Performance Insight data, in days.

    MONTHS_7

    The retention period for Performance Insight data, in days.

    MONTHS_8

    The retention period for Performance Insight data, in days.

    MONTHS_9

    The retention period for Performance Insight data, in days.

    Back to top Generated by DocFX