Show / Hide Table of Contents

Interface ISecretVersionInfo

Specify the secret's version id or version stage.

Namespace: Amazon.CDK.AWS.Batch
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ISecretVersionInfo
Syntax (vb)
Public Interface ISecretVersionInfo
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.Batch;

            var secretVersionInfo = new SecretVersionInfo {
                VersionId = "versionId",
                VersionStage = "versionStage"
            };

Synopsis

Properties

VersionId

version id of the secret.

VersionStage

version stage of the secret.

Properties

VersionId

version id of the secret.

string? VersionId { get; }
Property Value

string

Remarks

Default: - use default version id

VersionStage

version stage of the secret.

string? VersionStage { get; }
Property Value

string

Remarks

Default: - use default version stage

Back to top Generated by DocFX