Interface CfnRotationScheduleMixinProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnRotationScheduleMixinProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:20:05.303Z") @Stability(Stable) public interface CfnRotationScheduleMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnRotationSchedulePropsMixin.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.secretsmanager.*;
 CfnRotationScheduleMixinProps cfnRotationScheduleMixinProps = CfnRotationScheduleMixinProps.builder()
         .externalSecretRotationMetadata(List.of(ExternalSecretRotationMetadataItemProperty.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .externalSecretRotationRoleArn("externalSecretRotationRoleArn")
         .hostedRotationLambda(HostedRotationLambdaProperty.builder()
                 .excludeCharacters("excludeCharacters")
                 .kmsKeyArn("kmsKeyArn")
                 .masterSecretArn("masterSecretArn")
                 .masterSecretKmsKeyArn("masterSecretKmsKeyArn")
                 .rotationLambdaName("rotationLambdaName")
                 .rotationType("rotationType")
                 .runtime("runtime")
                 .superuserSecretArn("superuserSecretArn")
                 .superuserSecretKmsKeyArn("superuserSecretKmsKeyArn")
                 .vpcSecurityGroupIds("vpcSecurityGroupIds")
                 .vpcSubnetIds("vpcSubnetIds")
                 .build())
         .rotateImmediatelyOnUpdate(false)
         .rotationLambdaArn("rotationLambdaArn")
         .rotationRules(RotationRulesProperty.builder()
                 .automaticallyAfterDays(123)
                 .duration("duration")
                 .scheduleExpression("scheduleExpression")
                 .build())
         .secretId("secretId")
         .build();
 

See Also: