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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-transfer/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.



7043
7044
7045
7046
7047
7048
7049
7050
7051
7052
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 7043

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



7043
7044
7045
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 7043

def unknown
  @unknown
end