Interface ISecretAttachmentTargetProps
- Namespace
- Amazon.CDK.AWS.SecretsManager
- Assembly
- Amazon.CDK.AWS.SecretsManager.dll
Attachment target specifications.
public interface ISecretAttachmentTargetProps
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;
var secretAttachmentTargetProps = new SecretAttachmentTargetProps {
TargetId = "targetId",
TargetType = AttachmentTargetType.INSTANCE
};
Remarks
ExampleMetadata: fixture=_generated
Properties
TargetId
The id of the target to attach the secret to.
string TargetId { get; }
Property Value
TargetType
The type of the target to attach the secret to.
AttachmentTargetType TargetType { get; }