Interface CfnDeliveryStream.SecretsManagerConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDeliveryStream.SecretsManagerConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDeliveryStream
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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDeliveryStream.SecretsManagerConfigurationPropertystatic final classAn implementation forCfnDeliveryStream.SecretsManagerConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnabled
Specifies whether you want to use the secrets manager feature.When set as
Truethe secrets manager configuration overwrites the existing secrets in the destination configuration. When it's set toFalseFirehose falls back to the credentials in the destination configuration.Returns union: either
BooleanorIResolvable- See Also:
-
getRoleArn
Specifies the role that Firehose assumes when calling the Secrets Manager API operation.When you provide the role, it overrides any destination specific role defined in the destination configuration. If you do not provide the then we use the destination specific role. This parameter is required for Splunk.
- See Also:
-
getSecretArn
The ARN of the secret that stores your credentials.It must be in the same region as the Firehose stream and the role. The secret ARN can reside in a different account than the Firehose stream and role as Firehose supports cross-account secret access. This parameter is required when Enabled is set to
True.- See Also:
-
builder
-