Package org.cdk8s.plus24
Interface SecretValue
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
SecretValue.Jsii$Proxy
@Generated(value="jsii-pacmak/1.69.0 (build f656c31)", date="2022-10-09T03:04:24.968Z") @Stability(Stable) public interface SecretValue extends software.amazon.jsii.JsiiSerializable
Represents a specific value in JSON secret.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
SecretValue.Builder
A builder forSecretValue
static class
SecretValue.Jsii$Proxy
An implementation forSecretValue
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static SecretValue.Builder
builder()
String
getKey()
The JSON key.ISecret
getSecret()
The secret.
-
-
-
Method Detail
-
getKey
@Stability(Stable) @NotNull String getKey()
The JSON key.
-
getSecret
@Stability(Stable) @NotNull ISecret getSecret()
The secret.
-
builder
@Stability(Stable) static SecretValue.Builder builder()
- Returns:
- a
SecretValue.Builder
ofSecretValue
-
-