Class: Aws::Firehose::Types::SnowflakeRoleConfiguration

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

Overview

Optionally configure a Snowflake role. Otherwise the default user role will be used.

Constant Summary collapse

SENSITIVE =
[:snowflake_role]

Instance Attribute Summary collapse

Instance Attribute Details

#enabledBoolean

Enable Snowflake role

Returns:

  • (Boolean)


4292
4293
4294
4295
4296
4297
# File 'lib/aws-sdk-firehose/types.rb', line 4292

class SnowflakeRoleConfiguration < Struct.new(
  :enabled,
  :snowflake_role)
  SENSITIVE = [:snowflake_role]
  include Aws::Structure
end

#snowflake_roleString

The Snowflake role you wish to configure

Returns:

  • (String)


4292
4293
4294
4295
4296
4297
# File 'lib/aws-sdk-firehose/types.rb', line 4292

class SnowflakeRoleConfiguration < Struct.new(
  :enabled,
  :snowflake_role)
  SENSITIVE = [:snowflake_role]
  include Aws::Structure
end