package awsdlm // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // archiveRuleProperty := &ArchiveRuleProperty{ // RetainRule: &ArchiveRetainRuleProperty{ // RetentionArchiveTier: &RetentionArchiveTierProperty{ // Count: jsii.Number(123), // Interval: jsii.Number(123), // IntervalUnit: jsii.String("intervalUnit"), // }, // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dlm-lifecyclepolicy-archiverule.html // type CfnLifecyclePolicy_ArchiveRuleProperty struct { // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dlm-lifecyclepolicy-archiverule.html#cfn-dlm-lifecyclepolicy-archiverule-retainrule // RetainRule interface{} `field:"required" json:"retainRule" yaml:"retainRule"` }