@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)", date="2023-03-22T19:35:44.609Z") public interface MultiUserHostedRotationOptions extends SingleUserHostedRotationOptions
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.ec2.*; import software.amazon.awscdk.services.secretsmanager.*; Secret secret; SecurityGroup securityGroup; Subnet subnet; SubnetFilter subnetFilter; Vpc vpc; MultiUserHostedRotationOptions multiUserHostedRotationOptions = MultiUserHostedRotationOptions.builder() .masterSecret(secret) // the properties below are optional .functionName("functionName") .securityGroups(List.of(securityGroup)) .vpc(vpc) .vpcSubnets(SubnetSelection.builder() .availabilityZones(List.of("availabilityZones")) .onePerAz(false) .subnetFilters(List.of(subnetFilter)) .subnetGroupName("subnetGroupName") .subnetName("subnetName") .subnets(List.of(subnet)) .subnetType(SubnetType.ISOLATED) .build()) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
MultiUserHostedRotationOptions.Builder
A builder for
MultiUserHostedRotationOptions |
static class |
MultiUserHostedRotationOptions.Jsii$Proxy
An implementation for
MultiUserHostedRotationOptions |
Modifier and Type | Method and Description |
---|---|
static MultiUserHostedRotationOptions.Builder |
builder() |
ISecret |
getMasterSecret()
The master secret for a multi user rotation scheme.
|
getFunctionName, getSecurityGroups, getVpc, getVpcSubnets
ISecret getMasterSecret()
static MultiUserHostedRotationOptions.Builder builder()
builder
in interface SingleUserHostedRotationOptions
MultiUserHostedRotationOptions.Builder
of MultiUserHostedRotationOptions