Show / Hide Table of Contents

Interface IRotationSingleUserOptions

Options to add the multi user rotation.

Inherited Members
ICommonRotationUserOptions.AutomaticallyAfter
ICommonRotationUserOptions.Endpoint
ICommonRotationUserOptions.ExcludeCharacters
ICommonRotationUserOptions.RotateImmediatelyOnUpdate
ICommonRotationUserOptions.SecurityGroup
ICommonRotationUserOptions.VpcSubnets
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IRotationSingleUserOptions : ICommonRotationUserOptions
Syntax (vb)
Public Interface IRotationSingleUserOptions Inherits ICommonRotationUserOptions
Remarks

ExampleMetadata: infused

Examples
DatabaseInstance instance;
            SecurityGroup mySecurityGroup;


            instance.AddRotationSingleUser(new RotationSingleUserOptions {
                AutomaticallyAfter = Duration.Days(7),  // defaults to 30 days
                ExcludeCharacters = "!@#$%^&*",  // defaults to the set " %+~`#/// here*()|[]{}:;<>?!'/@\"\\"
                SecurityGroup = mySecurityGroup,  // defaults to an auto-created security group
                RotateImmediatelyOnUpdate = false
            });

Synopsis

Back to top Generated by DocFX