Class: Aws::DataZone::Types::IdentityMapping

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

Overview

Contains the configuration for mapping user identities to Snowflake users, including the username attribute and optional prefix applied during the mapping.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#prefixString

The prefix used for the identity mapping.

Returns:

  • (String)


13266
13267
13268
13269
13270
13271
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 13266

class IdentityMapping < Struct.new(
  :username_attribute,
  :prefix)
  SENSITIVE = []
  include Aws::Structure
end

#username_attributeString

The username attribute used for the identity mapping.

Returns:

  • (String)


13266
13267
13268
13269
13270
13271
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 13266

class IdentityMapping < Struct.new(
  :username_attribute,
  :prefix)
  SENSITIVE = []
  include Aws::Structure
end