Class: Aws::Transfer::Types::DescribedWebAppIdentityProviderDetails

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

Overview

Note:

DescribedWebAppIdentityProviderDetails is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of DescribedWebAppIdentityProviderDetails corresponding to the set member.

Returns a structure that contains the identity provider details for your web app.

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::DescribedIdentityCenterConfig

Returns a structure for your identity provider details. This structure contains the instance ARN and role being used for the web app.



3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3173

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

  class IdentityCenterConfig < DescribedWebAppIdentityProviderDetails; end
  class Unknown < DescribedWebAppIdentityProviderDetails; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



3173
3174
3175
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3173

def unknown
  @unknown
end