Interface ISecretTargetAttachmentProps
- Namespace
- Amazon.CDK.AWS.SecretsManager
- Assembly
- Amazon.CDK.AWS.SecretsManager.dll
Construction properties for an AttachedSecret.
public interface ISecretTargetAttachmentProps : IAttachedSecretOptions
- Inherited Members
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;
Secret secret;
ISecretAttachmentTarget secretAttachmentTarget;
var secretTargetAttachmentProps = new SecretTargetAttachmentProps {
Secret = secret,
Target = secretAttachmentTarget
};
Remarks
ExampleMetadata: fixture=_generated
Properties
Secret
The secret to attach to the target.
ISecret Secret { get; }