Class: Aws::Transfer::Types::DescribedWebAppIdentityProviderDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::DescribedWebAppIdentityProviderDetails
- 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
Defined Under Namespace
Classes: IdentityCenterConfig, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#identity_center_config ⇒ Types::DescribedIdentityCenterConfig
Returns a structure for your identity provider details.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#identity_center_config ⇒ Types::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 |
#unknown ⇒ Object
Returns the value of attribute unknown
3173 3174 3175 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3173 def unknown @unknown end |