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.AWS.RDS.dll
Syntax (csharp)
public interface IMasterUserSecretProperty
Syntax (vb)
Public Interface 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.

Link: 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.

virtual string KmsKeyId { get; }
Property Value

System.String

Remarks

Link: 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.

virtual string SecretArn { get; }
Property Value

System.String

Remarks

Link: 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