AWSFirehoseSecretsManagerConfiguration

Objective-C

@interface AWSFirehoseSecretsManagerConfiguration

Swift

class AWSFirehoseSecretsManagerConfiguration

The structure that defines how Firehose accesses the secret.

Required parameters: [Enabled]

  • Specifies whether you want to use the the secrets manager feature. When set as True the secrets manager configuration overwrites the existing secrets in the destination configuration. When it’s set to False Firehose falls back to the credentials in the destination configuration.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable enabled;

    Swift

    var enabled: NSNumber? { get set }
  • 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.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable roleARN;

    Swift

    var roleARN: String? { get set }
  • 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 delivery stream and role as Firehose supports cross-account secret access. This parameter is required when Enabled is set to True.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable secretARN;

    Swift

    var secretARN: String? { get set }