Method: Aws::Firehose::Types::RedshiftDestinationUpdate#username

Defined in:
lib/aws-sdk-firehose/types.rb

#usernameString

The name of the user.

Returns:

  • (String)


4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
# File 'lib/aws-sdk-firehose/types.rb', line 4091

class RedshiftDestinationUpdate < Struct.new(
  :role_arn,
  :cluster_jdbc_url,
  :copy_command,
  :username,
  :password,
  :retry_options,
  :s3_update,
  :processing_configuration,
  :s3_backup_mode,
  :s3_backup_update,
  :cloud_watch_logging_options,
  :secrets_manager_configuration)
  SENSITIVE = [:username, :password]
  include Aws::Structure
end