AWSCognitoIdentityGetIdentityPoolRolesResponse
Objective-C
@interface AWSCognitoIdentityGetIdentityPoolRolesResponse : AWSModel
Swift
class AWSCognitoIdentityGetIdentityPoolRolesResponse : AWSModel
Returned in response to a successful GetIdentityPoolRoles
operation.
-
An identity pool ID in the format REGION:GUID.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable identityPoolId;
Swift
var identityPoolId: String? { get set }
-
How users for a specific identity provider are to mapped to roles. This is a String-to-RoleMapping object map. The string identifies the identity provider, for example, “graph.facebook.com” or “cognito-idp.us-east-1.amazonaws.com/us-east-1_abcdefghi:app_client_id”.
Declaration
Objective-C
@property (nonatomic, strong) NSDictionary<NSString *, AWSCognitoIdentityRoleMapping *> *_Nullable roleMappings;
Swift
var roleMappings: [String : AWSCognitoIdentityRoleMapping]? { get set }
-
The map of roles associated with this pool. Currently only authenticated and unauthenticated roles are supported.
Declaration
Objective-C
@property (nonatomic, strong) NSDictionary<NSString *, NSString *> *_Nullable roles;
Swift
var roles: [String : String]? { get set }