SecretRotationApplicationOptions¶
-
class
aws_cdk.aws_secretsmanager.
SecretRotationApplicationOptions
(*, is_multi_user=None)¶ Bases:
object
Options for a SecretRotationApplication.
- Parameters
is_multi_user (
Optional
[bool
]) – Whether the rotation application uses the mutli user scheme. Default: false- ExampleMetadata
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_secretsmanager as secretsmanager secret_rotation_application_options = secretsmanager.SecretRotationApplicationOptions( is_multi_user=False )
Attributes
-
is_multi_user
¶ Whether the rotation application uses the mutli user scheme.
- Default
false
- Return type
Optional
[bool
]