Show / Hide Table of Contents

Class CfnDBCluster.MasterUserSecretProperty

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

Inheritance
object
CfnDBCluster.MasterUserSecretProperty
Implements
CfnDBCluster.IMasterUserSecretProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDBCluster.MasterUserSecretProperty : CfnDBCluster.IMasterUserSecretProperty
Syntax (vb)
Public Class CfnDBCluster.MasterUserSecretProperty Implements 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

Constructors

MasterUserSecretProperty()

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

Properties

KmsKeyId

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

SecretArn

The Amazon Resource Name (ARN) of the secret.

Constructors

MasterUserSecretProperty()

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

public MasterUserSecretProperty()
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"
             };

Properties

KmsKeyId

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

public string? KmsKeyId { get; set; }
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.

public string? SecretArn { get; set; }
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

Implements

CfnDBCluster.IMasterUserSecretProperty
Back to top Generated by DocFX