Show / Hide Table of Contents

Class AttachedSecretOptions

Options to add a secret attachment to a secret.

Inheritance
object
AttachedSecretOptions
Implements
IAttachedSecretOptions
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.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

ISecretAttachmentTarget

Remarks

ExampleMetadata: fixture=_generated

Implements

IAttachedSecretOptions
Back to top Generated by DocFX