Class: Aws::Transfer::Types::WebAppIdentityProviderDetails

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

Overview

Note:

WebAppIdentityProviderDetails is a union - when making an API calls you must set exactly one of the members.

A union that contains the ‘IdentityCenterConfig` object.

Direct Known Subclasses

IdentityCenterConfig, Unknown

Defined Under Namespace

Classes: IdentityCenterConfig, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#identity_center_configTypes::IdentityCenterConfig

A structure that describes the values to use for the IAM Identity Center settings when you create a web app.



7141
7142
7143
7144
7145
7146
7147
7148
7149
7150
# File 'lib/aws-sdk-transfer/types.rb', line 7141

class WebAppIdentityProviderDetails < Struct.new(
  :identity_center_config,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class IdentityCenterConfig < WebAppIdentityProviderDetails; end
  class Unknown < WebAppIdentityProviderDetails; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



7141
7142
7143
# File 'lib/aws-sdk-transfer/types.rb', line 7141

def unknown
  @unknown
end