package awssecretsmanager // Construction properties for an AttachedSecret. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // var secret secret // var secretAttachmentTarget iSecretAttachmentTarget // // secretTargetAttachmentProps := &SecretTargetAttachmentProps{ // Secret: secret, // Target: secretAttachmentTarget, // } // type SecretTargetAttachmentProps struct { // The target to attach the secret to. Target ISecretAttachmentTarget `field:"required" json:"target" yaml:"target"` // The secret to attach to the target. Secret ISecret `field:"required" json:"secret" yaml:"secret"` }