@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:42.056Z") @Stability(value=Stable) public class SecretRotationApplication extends software.amazon.jsii.JsiiObject
Example:
Secret mySecret;
IConnectable myDatabase;
Vpc myVpc;
SecretRotation.Builder.create(this, "SecretRotation")
.application(SecretRotationApplication.MYSQL_ROTATION_SINGLE_USER) // MySQL single user scheme
.secret(mySecret)
.target(myDatabase) // a Connectable
.vpc(myVpc) // The VPC where the secret rotation application will be deployed
.excludeCharacters(" %+:;{}")
.build();
| Modifier and Type | Class and Description |
|---|---|
static class |
SecretRotationApplication.Builder
A fluent builder for
SecretRotationApplication. |
| Modifier and Type | Field and Description |
|---|---|
static SecretRotationApplication |
MARIADB_ROTATION_MULTI_USER
Conducts an AWS SecretsManager secret rotation for RDS MariaDB using the multi user rotation scheme.
|
static SecretRotationApplication |
MARIADB_ROTATION_SINGLE_USER
Conducts an AWS SecretsManager secret rotation for RDS MariaDB using the single user rotation scheme.
|
static SecretRotationApplication |
MONGODB_ROTATION_MULTI_USER
Conducts an AWS SecretsManager secret rotation for MongoDB using the multi user rotation scheme.
|
static SecretRotationApplication |
MONGODB_ROTATION_SINGLE_USER
Conducts an AWS SecretsManager secret rotation for MongoDB using the single user rotation scheme.
|
static SecretRotationApplication |
MYSQL_ROTATION_MULTI_USER
Conducts an AWS SecretsManager secret rotation for RDS MySQL using the multi user rotation scheme.
|
static SecretRotationApplication |
MYSQL_ROTATION_SINGLE_USER
Conducts an AWS SecretsManager secret rotation for RDS MySQL using the single user rotation scheme.
|
static SecretRotationApplication |
ORACLE_ROTATION_MULTI_USER
Conducts an AWS SecretsManager secret rotation for RDS Oracle using the multi user rotation scheme.
|
static SecretRotationApplication |
ORACLE_ROTATION_SINGLE_USER
Conducts an AWS SecretsManager secret rotation for RDS Oracle using the single user rotation scheme.
|
static SecretRotationApplication |
POSTGRES_ROTATION_MULTI_USER
Conducts an AWS SecretsManager secret rotation for RDS PostgreSQL using the multi user rotation scheme.
|
static SecretRotationApplication |
POSTGRES_ROTATION_SINGLE_USER
Conducts an AWS SecretsManager secret rotation for RDS PostgreSQL using the single user rotation scheme.
|
static SecretRotationApplication |
REDSHIFT_ROTATION_MULTI_USER
Conducts an AWS SecretsManager secret rotation for Amazon Redshift using the multi user rotation scheme.
|
static SecretRotationApplication |
REDSHIFT_ROTATION_SINGLE_USER
Conducts an AWS SecretsManager secret rotation for Amazon Redshift using the single user rotation scheme.
|
static SecretRotationApplication |
SQLSERVER_ROTATION_MULTI_USER
Conducts an AWS SecretsManager secret rotation for RDS SQL Server using the multi user rotation scheme.
|
static SecretRotationApplication |
SQLSERVER_ROTATION_SINGLE_USER
Conducts an AWS SecretsManager secret rotation for RDS SQL Server using the single user rotation scheme.
|
| Modifier | Constructor and Description |
|---|---|
protected |
SecretRotationApplication(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) |
protected |
SecretRotationApplication(software.amazon.jsii.JsiiObjectRef objRef) |
|
SecretRotationApplication(String applicationId,
String semanticVersion) |
|
SecretRotationApplication(String applicationId,
String semanticVersion,
SecretRotationApplicationOptions options) |
| Modifier and Type | Method and Description |
|---|---|
String |
applicationArnForPartition(String partition)
Returns the application ARN for the current partition.
|
Boolean |
getIsMultiUser()
Whether the rotation application uses the mutli user scheme.
|
String |
semanticVersionForPartition(String partition)
The semantic version of the app for the current partition.
|
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet@Stability(value=Stable) public static final SecretRotationApplication MARIADB_ROTATION_MULTI_USER
@Stability(value=Stable) public static final SecretRotationApplication MARIADB_ROTATION_SINGLE_USER
@Stability(value=Stable) public static final SecretRotationApplication MONGODB_ROTATION_MULTI_USER
@Stability(value=Stable) public static final SecretRotationApplication MONGODB_ROTATION_SINGLE_USER
@Stability(value=Stable) public static final SecretRotationApplication MYSQL_ROTATION_MULTI_USER
@Stability(value=Stable) public static final SecretRotationApplication MYSQL_ROTATION_SINGLE_USER
@Stability(value=Stable) public static final SecretRotationApplication ORACLE_ROTATION_MULTI_USER
@Stability(value=Stable) public static final SecretRotationApplication ORACLE_ROTATION_SINGLE_USER
@Stability(value=Stable) public static final SecretRotationApplication POSTGRES_ROTATION_MULTI_USER
@Stability(value=Stable) public static final SecretRotationApplication POSTGRES_ROTATION_SINGLE_USER
@Stability(value=Stable) public static final SecretRotationApplication REDSHIFT_ROTATION_MULTI_USER
@Stability(value=Stable) public static final SecretRotationApplication REDSHIFT_ROTATION_SINGLE_USER
@Stability(value=Stable) public static final SecretRotationApplication SQLSERVER_ROTATION_MULTI_USER
@Stability(value=Stable) public static final SecretRotationApplication SQLSERVER_ROTATION_SINGLE_USER
protected SecretRotationApplication(software.amazon.jsii.JsiiObjectRef objRef)
protected SecretRotationApplication(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
@Stability(value=Stable)
public SecretRotationApplication(@NotNull
String applicationId,
@NotNull
String semanticVersion,
@Nullable
SecretRotationApplicationOptions options)
applicationId - This parameter is required.semanticVersion - This parameter is required.options - @Stability(value=Stable) @NotNull public String applicationArnForPartition(@NotNull String partition)
Can be used in combination with a CfnMapping to automatically select the correct ARN based on the current partition.
partition - This parameter is required.@Stability(value=Stable) @NotNull public String semanticVersionForPartition(@NotNull String partition)
Can be used in combination with a CfnMapping to automatically select the correct version based on the current partition.
partition - This parameter is required.@Stability(value=Stable) @Nullable public Boolean getIsMultiUser()
Copyright © 2022. All rights reserved.