Interface CfnDeliveryStream.SecretsManagerConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDeliveryStream.SecretsManagerConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnDeliveryStream

@Stability(Stable) public static interface CfnDeliveryStream.SecretsManagerConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The structure that defines how Firehose accesses the secret.

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.kinesisfirehose.*;
 SecretsManagerConfigurationProperty secretsManagerConfigurationProperty = SecretsManagerConfigurationProperty.builder()
         .enabled(false)
         // the properties below are optional
         .roleArn("roleArn")
         .secretArn("secretArn")
         .build();
 

See Also: