Class AttachedSecretOptions
Options to add a secret attachment to a secret.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.SecretsManager
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class AttachedSecretOptions : IAttachedSecretOptions
Syntax (vb)
Public Class AttachedSecretOptions Implements IAttachedSecretOptions
Remarks
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.SecretsManager;
ISecretAttachmentTarget secretAttachmentTarget;
var attachedSecretOptions = new AttachedSecretOptions {
Target = secretAttachmentTarget
};
Synopsis
Constructors
AttachedSecretOptions() | Options to add a secret attachment to a secret. |
Properties
Target | The target to attach the secret to. |
Constructors
AttachedSecretOptions()
Options to add a secret attachment to a secret.
public AttachedSecretOptions()
Remarks
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.SecretsManager;
ISecretAttachmentTarget secretAttachmentTarget;
var attachedSecretOptions = new AttachedSecretOptions {
Target = secretAttachmentTarget
};
Properties
Target
The target to attach the secret to.
public ISecretAttachmentTarget Target { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated