Interface CfnApiKeyCredentialProviderPropsMixin.SecretReferenceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApiKeyCredentialProviderPropsMixin.SecretReferenceProperty.Jsii$Proxy
- Enclosing class:
CfnApiKeyCredentialProviderPropsMixin
@Stability(Stable)
public static interface CfnApiKeyCredentialProviderPropsMixin.SecretReferenceProperty
extends software.amazon.jsii.JsiiSerializable
A reference to a customer-provided secret stored in AWS Secrets Manager.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.*;
SecretReferenceProperty secretReferenceProperty = SecretReferenceProperty.builder()
.jsonKey("jsonKey")
.secretId("secretId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnApiKeyCredentialProviderPropsMixin.SecretReferenceProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getJsonKey
The JSON key within the secret that contains the credential value.- See Also:
-
getSecretId
The ID or ARN of the secret in AWS Secrets Manager.- See Also:
-
builder
@Stability(Stable) static CfnApiKeyCredentialProviderPropsMixin.SecretReferenceProperty.Builder builder()
-