Class: Aws::Firehose::Types::SecretsManagerConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb

Overview

The structure that defines how Firehose accesses the secret.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#enabledBoolean

Specifies whether you want to use 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.

Returns:

  • (Boolean)


4511
4512
4513
4514
4515
4516
4517
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 4511

class SecretsManagerConfiguration < Struct.new(
  :secret_arn,
  :role_arn,
  :enabled)
  SENSITIVE = []
  include Aws::Structure
end

#role_arnString

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.

Returns:

  • (String)


4511
4512
4513
4514
4515
4516
4517
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 4511

class SecretsManagerConfiguration < Struct.new(
  :secret_arn,
  :role_arn,
  :enabled)
  SENSITIVE = []
  include Aws::Structure
end

#secret_arnString

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.

Returns:

  • (String)


4511
4512
4513
4514
4515
4516
4517
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 4511

class SecretsManagerConfiguration < Struct.new(
  :secret_arn,
  :role_arn,
  :enabled)
  SENSITIVE = []
  include Aws::Structure
end