Interface SecretVersionInfo
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
SecretVersionInfo.Jsii$Proxy
@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)",
date="2024-10-25T14:21:11.030Z")
@Stability(Stable)
public interface SecretVersionInfo
extends software.amazon.jsii.JsiiSerializable
Specify the secret's version id or version stage.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.batch.*; SecretVersionInfo secretVersionInfo = SecretVersionInfo.builder() .versionId("versionId") .versionStage("versionStage") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forSecretVersionInfo
static final class
An implementation forSecretVersionInfo
-
Method Summary
Modifier and TypeMethodDescriptionstatic SecretVersionInfo.Builder
builder()
default String
version id of the secret.default String
version stage of the secret.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getVersionId
version id of the secret.Default: - use default version id
-
getVersionStage
version stage of the secret.Default: - use default version stage
-
builder
- Returns:
- a
SecretVersionInfo.Builder
ofSecretVersionInfo
-