Show / Hide Table of Contents

Interface CfnDBCluster.IMasterUserSecretProperty

The MasterUserSecret return value specifies the secret managed by RDS in AWS Secrets Manager for the master user password.

Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnDBCluster.IMasterUserSecretProperty
Syntax (vb)
Public Interface CfnDBCluster.IMasterUserSecretProperty
Remarks

For more information, see Password management with AWS Secrets Manager in the Amazon RDS User Guide and Password management with AWS Secrets Manager in the Amazon Aurora User Guide.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-masterusersecret.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.RDS;

             var masterUserSecretProperty = new MasterUserSecretProperty {
                 KmsKeyId = "kmsKeyId",
                 SecretArn = "secretArn"
             };

Synopsis

Properties

KmsKeyId

The AWS KMS key identifier that is used to encrypt the secret.

SecretArn

The Amazon Resource Name (ARN) of the secret.

Properties

KmsKeyId

The AWS KMS key identifier that is used to encrypt the secret.

string? KmsKeyId { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-masterusersecret.html#cfn-rds-dbcluster-masterusersecret-kmskeyid

SecretArn

The Amazon Resource Name (ARN) of the secret.

string? SecretArn { get; }
Property Value

string

Remarks

This parameter is a return value that you can retrieve using the Fn::GetAtt intrinsic function. For more information, see Return values .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-masterusersecret.html#cfn-rds-dbcluster-masterusersecret-secretarn

Back to top Generated by DocFX