@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:42.049Z") @Stability(value=Stable) public interface MultiUserHostedRotationOptions extends software.amazon.jsii.JsiiSerializable, 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
.excludeCharacters("excludeCharacters")
.functionName("functionName")
.securityGroups(List.of(securityGroup))
.vpc(vpc)
.vpcSubnets(SubnetSelection.builder()
.availabilityZones(List.of("availabilityZones"))
.onePerAz(false)
.subnetFilters(List.of(subnetFilter))
.subnetGroupName("subnetGroupName")
.subnets(List.of(subnet))
.subnetType(SubnetType.PRIVATE_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.
|
getExcludeCharacters, getFunctionName, getSecurityGroups, getVpc, getVpcSubnets@Stability(value=Stable) @NotNull ISecret getMasterSecret()
@Stability(value=Stable) static MultiUserHostedRotationOptions.Builder builder()
builder in interface SingleUserHostedRotationOptionsMultiUserHostedRotationOptions.Builder of MultiUserHostedRotationOptionsCopyright © 2022. All rights reserved.