CreateIdentityPoolInput
public struct CreateIdentityPoolInput : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
Enables or disables the Basic (Classic) authentication flow. For more information, see Identity Pools (Federated Identities) Authentication Flow in the Amazon Cognito Developer Guide.
Declaration
Swift
public let allowClassicFlow: Bool?
-
TRUE if the identity pool supports unauthenticated logins.
Declaration
Swift
public let allowUnauthenticatedIdentities: Bool
-
An array of Amazon Cognito user pools and their client IDs.
Declaration
Swift
public let cognitoIdentityProviders: [CognitoIdentityProvider]?
-
The “domain” by which Cognito will refer to your users. This name acts as a placeholder that allows your backend and the Cognito service to communicate about the developer provider. For the DeveloperProviderName, you can use letters as well as period (.), underscore (_), and dash (-). Once you have set a developer provider name, you cannot change it. Please take care in setting this parameter.
Declaration
Swift
public let developerProviderName: String?
-
A string that you provide.
Declaration
Swift
public let identityPoolName: String
-
Tags to assign to the identity pool. A tag is a label that you can apply to identity pools to categorize and manage them in different ways, such as by purpose, owner, environment, or other criteria.
Declaration
Swift
public let identityPoolTags: [String : String]?
-
A list of OpendID Connect provider ARNs.
Declaration
Swift
public let openIdConnectProviderARNs: [String]?
-
An array of Amazon Resource Names (ARNs) of the SAML provider for your identity pool.
Declaration
Swift
public let samlProviderARNs: [String]?
-
Optional key:value pairs mapping provider names to provider app IDs.
Declaration
Swift
public let supportedLoginProviders: [String : String]?
-
init(allowClassicFlow:allowUnauthenticatedIdentities:cognitoIdentityProviders:developerProviderName:identityPoolName:identityPoolTags:openIdConnectProviderARNs:samlProviderARNs:supportedLoginProviders:)
Undocumented
Declaration
Swift
public init(allowClassicFlow: Bool? = nil, allowUnauthenticatedIdentities: Bool, cognitoIdentityProviders: [CognitoIdentityProvider]? = nil, developerProviderName: String? = nil, identityPoolName: String, identityPoolTags: [String : String]? = nil, openIdConnectProviderARNs: [String]? = nil, samlProviderARNs: [String]? = nil, supportedLoginProviders: [String : String]? = nil)
-
Declaration
Swift
public func validate(name: String) throws