Class: Aws::LicenseManagerUserSubscriptions::Types::IdentityProvider

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

Overview

Note:

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

Note:

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

Details about an identity provider.

Direct Known Subclasses

ActiveDirectoryIdentityProvider, Unknown

Defined Under Namespace

Classes: ActiveDirectoryIdentityProvider, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#active_directory_identity_providerTypes::ActiveDirectoryIdentityProvider

An object that details an Active Directory identity provider.



200
201
202
203
204
205
206
207
208
209
# File 'gems/aws-sdk-licensemanagerusersubscriptions/lib/aws-sdk-licensemanagerusersubscriptions/types.rb', line 200

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

  class ActiveDirectoryIdentityProvider < IdentityProvider; end
  class Unknown < IdentityProvider; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



200
201
202
# File 'gems/aws-sdk-licensemanagerusersubscriptions/lib/aws-sdk-licensemanagerusersubscriptions/types.rb', line 200

def unknown
  @unknown
end