AWSChimeSDKIdentity
Objective-C
@interface AWSChimeSDKIdentity
Swift
class AWSChimeSDKIdentity
The Amazon Chime SDK Identity APIs in this section allow software developers to create and manage unique instances of their messaging applications. These APIs provide the overarching framework for creating and sending messages. For more information about the identity APIs, refer to Amazon Chime SDK identity.
-
The service configuration used to instantiate this service client.
Warning
Once the client is instantiated, do not modify the configuration object. It may cause unspecified behaviors.Declaration
Objective-C
@property (nonatomic, strong, readonly) AWSServiceConfiguration *configuration -
Returns the singleton service client. If the singleton object does not exist, the SDK instantiates the default service client with
defaultServiceConfigurationfrom[AWSServiceManager defaultServiceManager]. The reference to this object is maintained by the SDK, and you do not need to retain it manually.For example, set the default service configuration in
- application:didFinishLaunchingWithOptions:Swift
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { let credentialProvider = AWSCognitoCredentialsProvider(regionType: .USEast1, identityPoolId: "YourIdentityPoolId") let configuration = AWSServiceConfiguration(region: .USEast1, credentialsProvider: credentialProvider) AWSServiceManager.default().defaultServiceConfiguration = configuration return true}
Objective-C
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { AWSCognitoCredentialsProvider *credentialsProvider = [[AWSCognitoCredentialsProvider alloc] initWithRegionType:AWSRegionUSEast1 identityPoolId:@"YourIdentityPoolId"]; AWSServiceConfiguration *configuration = [[AWSServiceConfiguration alloc] initWithRegion:AWSRegionUSEast1 credentialsProvider:credentialsProvider]; [AWSServiceManager defaultServiceManager].defaultServiceConfiguration = configuration; return YES; }Then call the following to get the default service client:
Swift
let ChimeSDKIdentity = AWSChimeSDKIdentity.default()Objective-C
AWSChimeSDKIdentity *ChimeSDKIdentity = [AWSChimeSDKIdentity defaultChimeSDKIdentity];Declaration
Objective-C
+ (nonnull instancetype)defaultChimeSDKIdentity;Swift
class func `default`() -> SelfReturn Value
The default service client.
-
Creates a service client with the given service configuration and registers it for the key.
For example, set the default service configuration in
- application:didFinishLaunchingWithOptions:Swift
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { let credentialProvider = AWSCognitoCredentialsProvider(regionType: .USEast1, identityPoolId: "YourIdentityPoolId") let configuration = AWSServiceConfiguration(region: .USWest2, credentialsProvider: credentialProvider) AWSChimeSDKIdentity.register(with: configuration!, forKey: "USWest2ChimeSDKIdentity") return true}
Objective-C
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { AWSCognitoCredentialsProvider *credentialsProvider = [[AWSCognitoCredentialsProvider alloc] initWithRegionType:AWSRegionUSEast1 identityPoolId:@"YourIdentityPoolId"]; AWSServiceConfiguration *configuration = [[AWSServiceConfiguration alloc] initWithRegion:AWSRegionUSWest2 credentialsProvider:credentialsProvider]; [AWSChimeSDKIdentity registerChimeSDKIdentityWithConfiguration:configuration forKey:@"USWest2ChimeSDKIdentity"]; return YES; }Then call the following to get the service client:
Swift
let ChimeSDKIdentity = AWSChimeSDKIdentity(forKey: "USWest2ChimeSDKIdentity")Objective-C
AWSChimeSDKIdentity *ChimeSDKIdentity = [AWSChimeSDKIdentity ChimeSDKIdentityForKey:@"USWest2ChimeSDKIdentity"];Warning
After calling this method, do not modify the configuration object. It may cause unspecified behaviors.
Declaration
Objective-C
+ (void)registerChimeSDKIdentityWithConfiguration:(id)configuration forKey:(nonnull NSString *)key;Swift
class func register(withConfiguration configuration: Any!, forKey key: String)Parameters
configurationA service configuration object.
keyA string to identify the service client.
-
Retrieves the service client associated with the key. You need to call
+ registerChimeSDKIdentityWithConfiguration:forKey:before invoking this method.For example, set the default service configuration in
- application:didFinishLaunchingWithOptions:Swift
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { let credentialProvider = AWSCognitoCredentialsProvider(regionType: .USEast1, identityPoolId: "YourIdentityPoolId") let configuration = AWSServiceConfiguration(region: .USWest2, credentialsProvider: credentialProvider) AWSChimeSDKIdentity.register(with: configuration!, forKey: "USWest2ChimeSDKIdentity") return true}
Objective-C
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { AWSCognitoCredentialsProvider *credentialsProvider = [[AWSCognitoCredentialsProvider alloc] initWithRegionType:AWSRegionUSEast1 identityPoolId:@"YourIdentityPoolId"]; AWSServiceConfiguration *configuration = [[AWSServiceConfiguration alloc] initWithRegion:AWSRegionUSWest2 credentialsProvider:credentialsProvider]; [AWSChimeSDKIdentity registerChimeSDKIdentityWithConfiguration:configuration forKey:@"USWest2ChimeSDKIdentity"]; return YES; }Then call the following to get the service client:
Swift
let ChimeSDKIdentity = AWSChimeSDKIdentity(forKey: "USWest2ChimeSDKIdentity")Objective-C
AWSChimeSDKIdentity *ChimeSDKIdentity = [AWSChimeSDKIdentity ChimeSDKIdentityForKey:@"USWest2ChimeSDKIdentity"];Declaration
Objective-C
+ (nonnull instancetype)ChimeSDKIdentityForKey:(nonnull NSString *)key;Swift
convenience init(forKey key: String)Parameters
keyA string to identify the service client.
Return Value
An instance of the service client.
-
Removes the service client associated with the key and release it.
Warning
Before calling this method, make sure no method is running on this client.
Declaration
Objective-C
+ (void)removeChimeSDKIdentityForKey:(nonnull NSString *)key;Swift
class func remove(forKey key: String)Parameters
keyA string to identify the service client.
-
Creates an Amazon Chime SDK messaging
AppInstanceunder an AWS account. Only SDK messaging customers use this API.CreateAppInstancesupports idempotency behavior as described in the AWS API Standard.identity
See
AWSChimeSDKIdentityCreateAppInstanceRequest
See
AWSChimeSDKIdentityCreateAppInstanceResponse
Declaration
Objective-C
- (id)createAppInstance: (nonnull AWSChimeSDKIdentityCreateAppInstanceRequest *)request;Swift
func createAppInstance(_ request: AWSChimeSDKIdentityCreateAppInstanceRequest) -> Any!Parameters
requestA container for the necessary parameters to execute the CreateAppInstance service method.
Return Value
An instance of
AWSTask. On successful execution,task.resultwill contain an instance ofAWSChimeSDKIdentityCreateAppInstanceResponse. On failed execution,task.errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorConflict,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorResourceLimitExceeded,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Creates an Amazon Chime SDK messaging
AppInstanceunder an AWS account. Only SDK messaging customers use this API.CreateAppInstancesupports idempotency behavior as described in the AWS API Standard.identity
See
AWSChimeSDKIdentityCreateAppInstanceRequest
See
AWSChimeSDKIdentityCreateAppInstanceResponse
Declaration
Objective-C
- (void)createAppInstance: (nonnull AWSChimeSDKIdentityCreateAppInstanceRequest *)request completionHandler: (void (^_Nullable)( AWSChimeSDKIdentityCreateAppInstanceResponse *_Nullable, NSError *_Nullable))completionHandler;Swift
func createAppInstance(_ request: AWSChimeSDKIdentityCreateAppInstanceRequest) async throws -> AWSChimeSDKIdentityCreateAppInstanceResponseParameters
requestA container for the necessary parameters to execute the CreateAppInstance service method.
completionHandlerThe completion handler to call when the load request is complete.
response- A response object, ornilif the request failed.error- An error object that indicates why the request failed, ornilif the request was successful. On failed execution,errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorConflict,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorResourceLimitExceeded,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Promotes an
AppInstanceUserorAppInstanceBotto anAppInstanceAdmin. The promoted entity can perform the following actions.ChannelModeratoractions across all channels in theAppInstance.DeleteChannelMessageactions.
Only an
AppInstanceUserandAppInstanceBotcan be promoted to anAppInstanceAdminrole.See
AWSChimeSDKIdentityCreateAppInstanceAdminRequest
See
AWSChimeSDKIdentityCreateAppInstanceAdminResponse
Declaration
Objective-C
- (id)createAppInstanceAdmin: (nonnull AWSChimeSDKIdentityCreateAppInstanceAdminRequest *)request;Swift
func createAppInstanceAdmin(_ request: AWSChimeSDKIdentityCreateAppInstanceAdminRequest) -> Any!Parameters
requestA container for the necessary parameters to execute the CreateAppInstanceAdmin service method.
Return Value
An instance of
AWSTask. On successful execution,task.resultwill contain an instance ofAWSChimeSDKIdentityCreateAppInstanceAdminResponse. On failed execution,task.errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorConflict,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorResourceLimitExceeded,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Promotes an
AppInstanceUserorAppInstanceBotto anAppInstanceAdmin. The promoted entity can perform the following actions.ChannelModeratoractions across all channels in theAppInstance.DeleteChannelMessageactions.
Only an
AppInstanceUserandAppInstanceBotcan be promoted to anAppInstanceAdminrole.See
AWSChimeSDKIdentityCreateAppInstanceAdminRequest
See
AWSChimeSDKIdentityCreateAppInstanceAdminResponse
Declaration
Objective-C
- (void) createAppInstanceAdmin: (nonnull AWSChimeSDKIdentityCreateAppInstanceAdminRequest *)request completionHandler: (void (^_Nullable)( AWSChimeSDKIdentityCreateAppInstanceAdminResponse *_Nullable, NSError *_Nullable))completionHandler;Swift
func createAppInstanceAdmin(_ request: AWSChimeSDKIdentityCreateAppInstanceAdminRequest) async throws -> AWSChimeSDKIdentityCreateAppInstanceAdminResponseParameters
requestA container for the necessary parameters to execute the CreateAppInstanceAdmin service method.
completionHandlerThe completion handler to call when the load request is complete.
response- A response object, ornilif the request failed.error- An error object that indicates why the request failed, ornilif the request was successful. On failed execution,errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorConflict,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorResourceLimitExceeded,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Creates a bot under an Amazon Chime
AppInstance. The request consists of a uniqueConfigurationandNamefor that bot.See
AWSChimeSDKIdentityCreateAppInstanceBotRequest
See
AWSChimeSDKIdentityCreateAppInstanceBotResponse
Declaration
Objective-C
- (id)createAppInstanceBot: (nonnull AWSChimeSDKIdentityCreateAppInstanceBotRequest *)request;Swift
func createAppInstanceBot(_ request: AWSChimeSDKIdentityCreateAppInstanceBotRequest) -> Any!Parameters
requestA container for the necessary parameters to execute the CreateAppInstanceBot service method.
Return Value
An instance of
AWSTask. On successful execution,task.resultwill contain an instance ofAWSChimeSDKIdentityCreateAppInstanceBotResponse. On failed execution,task.errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorConflict,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorResourceLimitExceeded,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Creates a bot under an Amazon Chime
AppInstance. The request consists of a uniqueConfigurationandNamefor that bot.See
AWSChimeSDKIdentityCreateAppInstanceBotRequest
See
AWSChimeSDKIdentityCreateAppInstanceBotResponse
Declaration
Objective-C
- (void)createAppInstanceBot: (nonnull AWSChimeSDKIdentityCreateAppInstanceBotRequest *)request completionHandler: (void (^_Nullable)( AWSChimeSDKIdentityCreateAppInstanceBotResponse *_Nullable, NSError *_Nullable))completionHandler;Swift
func createAppInstanceBot(_ request: AWSChimeSDKIdentityCreateAppInstanceBotRequest) async throws -> AWSChimeSDKIdentityCreateAppInstanceBotResponseParameters
requestA container for the necessary parameters to execute the CreateAppInstanceBot service method.
completionHandlerThe completion handler to call when the load request is complete.
response- A response object, ornilif the request failed.error- An error object that indicates why the request failed, ornilif the request was successful. On failed execution,errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorConflict,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorResourceLimitExceeded,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Creates a user under an Amazon Chime
AppInstance. The request consists of a uniqueappInstanceUserIdandNamefor that user.See
AWSChimeSDKIdentityCreateAppInstanceUserRequest
See
AWSChimeSDKIdentityCreateAppInstanceUserResponse
Declaration
Objective-C
- (id)createAppInstanceUser: (nonnull AWSChimeSDKIdentityCreateAppInstanceUserRequest *)request;Swift
func createAppInstanceUser(_ request: AWSChimeSDKIdentityCreateAppInstanceUserRequest) -> Any!Parameters
requestA container for the necessary parameters to execute the CreateAppInstanceUser service method.
Return Value
An instance of
AWSTask. On successful execution,task.resultwill contain an instance ofAWSChimeSDKIdentityCreateAppInstanceUserResponse. On failed execution,task.errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorConflict,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorResourceLimitExceeded,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Creates a user under an Amazon Chime
AppInstance. The request consists of a uniqueappInstanceUserIdandNamefor that user.See
AWSChimeSDKIdentityCreateAppInstanceUserRequest
See
AWSChimeSDKIdentityCreateAppInstanceUserResponse
Declaration
Objective-C
- (void)createAppInstanceUser: (nonnull AWSChimeSDKIdentityCreateAppInstanceUserRequest *)request completionHandler: (void (^_Nullable)( AWSChimeSDKIdentityCreateAppInstanceUserResponse *_Nullable, NSError *_Nullable))completionHandler;Swift
func createAppInstanceUser(_ request: AWSChimeSDKIdentityCreateAppInstanceUserRequest) async throws -> AWSChimeSDKIdentityCreateAppInstanceUserResponseParameters
requestA container for the necessary parameters to execute the CreateAppInstanceUser service method.
completionHandlerThe completion handler to call when the load request is complete.
response- A response object, ornilif the request failed.error- An error object that indicates why the request failed, ornilif the request was successful. On failed execution,errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorConflict,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorResourceLimitExceeded,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Deletes an
AppInstanceand all associated data asynchronously.See
AWSChimeSDKIdentityDeleteAppInstanceRequest
Declaration
Objective-C
- (id)deleteAppInstance: (nonnull AWSChimeSDKIdentityDeleteAppInstanceRequest *)request;Swift
func deleteAppInstance(_ request: AWSChimeSDKIdentityDeleteAppInstanceRequest) -> Any!Parameters
requestA container for the necessary parameters to execute the DeleteAppInstance service method.
Return Value
An instance of
AWSTask. On successful execution,task.resultwill benil. On failed execution,task.errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorResourceLimitExceeded,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Deletes an
AppInstanceand all associated data asynchronously.See
AWSChimeSDKIdentityDeleteAppInstanceRequest
Declaration
Objective-C
- (void)deleteAppInstance: (nonnull AWSChimeSDKIdentityDeleteAppInstanceRequest *)request completionHandler: (void (^_Nullable)(NSError *_Nullable))completionHandler;Swift
func deleteAppInstance(_ request: AWSChimeSDKIdentityDeleteAppInstanceRequest) async throwsParameters
requestA container for the necessary parameters to execute the DeleteAppInstance service method.
completionHandlerThe completion handler to call when the load request is complete.
error- An error object that indicates why the request failed, ornilif the request was successful. On failed execution,errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorResourceLimitExceeded,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Demotes an
AppInstanceAdminto anAppInstanceUserorAppInstanceBot. This action does not delete the user.See
AWSChimeSDKIdentityDeleteAppInstanceAdminRequest
Declaration
Objective-C
- (id)deleteAppInstanceAdmin: (nonnull AWSChimeSDKIdentityDeleteAppInstanceAdminRequest *)request;Swift
func deleteAppInstanceAdmin(_ request: AWSChimeSDKIdentityDeleteAppInstanceAdminRequest) -> Any!Parameters
requestA container for the necessary parameters to execute the DeleteAppInstanceAdmin service method.
Return Value
An instance of
AWSTask. On successful execution,task.resultwill benil. On failed execution,task.errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorConflict,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorResourceLimitExceeded,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Demotes an
AppInstanceAdminto anAppInstanceUserorAppInstanceBot. This action does not delete the user.See
AWSChimeSDKIdentityDeleteAppInstanceAdminRequest
Declaration
Objective-C
- (void)deleteAppInstanceAdmin: (nonnull AWSChimeSDKIdentityDeleteAppInstanceAdminRequest *)request completionHandler: (void (^_Nullable)(NSError *_Nullable))completionHandler;Swift
func deleteAppInstanceAdmin(_ request: AWSChimeSDKIdentityDeleteAppInstanceAdminRequest) async throwsParameters
requestA container for the necessary parameters to execute the DeleteAppInstanceAdmin service method.
completionHandlerThe completion handler to call when the load request is complete.
error- An error object that indicates why the request failed, ornilif the request was successful. On failed execution,errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorConflict,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorResourceLimitExceeded,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Deletes an
AppInstanceBot.See
AWSChimeSDKIdentityDeleteAppInstanceBotRequest
Declaration
Objective-C
- (id)deleteAppInstanceBot: (nonnull AWSChimeSDKIdentityDeleteAppInstanceBotRequest *)request;Swift
func deleteAppInstanceBot(_ request: AWSChimeSDKIdentityDeleteAppInstanceBotRequest) -> Any!Parameters
requestA container for the necessary parameters to execute the DeleteAppInstanceBot service method.
Return Value
An instance of
AWSTask. On successful execution,task.resultwill benil. On failed execution,task.errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorConflict,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorResourceLimitExceeded,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Deletes an
AppInstanceBot.See
AWSChimeSDKIdentityDeleteAppInstanceBotRequest
Declaration
Objective-C
- (void)deleteAppInstanceBot: (nonnull AWSChimeSDKIdentityDeleteAppInstanceBotRequest *)request completionHandler: (void (^_Nullable)(NSError *_Nullable))completionHandler;Swift
func deleteAppInstanceBot(_ request: AWSChimeSDKIdentityDeleteAppInstanceBotRequest) async throwsParameters
requestA container for the necessary parameters to execute the DeleteAppInstanceBot service method.
completionHandlerThe completion handler to call when the load request is complete.
error- An error object that indicates why the request failed, ornilif the request was successful. On failed execution,errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorConflict,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorResourceLimitExceeded,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Deletes an
AppInstanceUser.See
AWSChimeSDKIdentityDeleteAppInstanceUserRequest
Declaration
Objective-C
- (id)deleteAppInstanceUser: (nonnull AWSChimeSDKIdentityDeleteAppInstanceUserRequest *)request;Swift
func deleteAppInstanceUser(_ request: AWSChimeSDKIdentityDeleteAppInstanceUserRequest) -> Any!Parameters
requestA container for the necessary parameters to execute the DeleteAppInstanceUser service method.
Return Value
An instance of
AWSTask. On successful execution,task.resultwill benil. On failed execution,task.errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorConflict,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorResourceLimitExceeded,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Deletes an
AppInstanceUser.See
AWSChimeSDKIdentityDeleteAppInstanceUserRequest
Declaration
Objective-C
- (void)deleteAppInstanceUser: (nonnull AWSChimeSDKIdentityDeleteAppInstanceUserRequest *)request completionHandler: (void (^_Nullable)(NSError *_Nullable))completionHandler;Swift
func deleteAppInstanceUser(_ request: AWSChimeSDKIdentityDeleteAppInstanceUserRequest) async throwsParameters
requestA container for the necessary parameters to execute the DeleteAppInstanceUser service method.
completionHandlerThe completion handler to call when the load request is complete.
error- An error object that indicates why the request failed, ornilif the request was successful. On failed execution,errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorConflict,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorResourceLimitExceeded,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Deregisters an
AppInstanceUserEndpoint.See
AWSChimeSDKIdentityDeregisterAppInstanceUserEndpointRequest
Declaration
Objective-C
- (id)deregisterAppInstanceUserEndpoint: (nonnull AWSChimeSDKIdentityDeregisterAppInstanceUserEndpointRequest *) request;Swift
func deregisterAppInstanceUserEndpoint(_ request: AWSChimeSDKIdentityDeregisterAppInstanceUserEndpointRequest) -> Any!Parameters
requestA container for the necessary parameters to execute the DeregisterAppInstanceUserEndpoint service method.
Return Value
An instance of
AWSTask. On successful execution,task.resultwill benil. On failed execution,task.errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Deregisters an
AppInstanceUserEndpoint.See
AWSChimeSDKIdentityDeregisterAppInstanceUserEndpointRequest
Declaration
Objective-C
- (void) deregisterAppInstanceUserEndpoint: (nonnull AWSChimeSDKIdentityDeregisterAppInstanceUserEndpointRequest *) request completionHandler:(void (^_Nullable)(NSError *_Nullable)) completionHandler;Swift
func deregisterAppInstanceUserEndpoint(_ request: AWSChimeSDKIdentityDeregisterAppInstanceUserEndpointRequest) async throwsParameters
requestA container for the necessary parameters to execute the DeregisterAppInstanceUserEndpoint service method.
completionHandlerThe completion handler to call when the load request is complete.
error- An error object that indicates why the request failed, ornilif the request was successful. On failed execution,errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Returns the full details of an
AppInstance.See
AWSChimeSDKIdentityDescribeAppInstanceRequest
See
AWSChimeSDKIdentityDescribeAppInstanceResponse
Declaration
Objective-C
- (id)describeAppInstance: (nonnull AWSChimeSDKIdentityDescribeAppInstanceRequest *)request;Swift
func describeAppInstance(_ request: AWSChimeSDKIdentityDescribeAppInstanceRequest) -> Any!Parameters
requestA container for the necessary parameters to execute the DescribeAppInstance service method.
Return Value
An instance of
AWSTask. On successful execution,task.resultwill contain an instance ofAWSChimeSDKIdentityDescribeAppInstanceResponse. On failed execution,task.errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Returns the full details of an
AppInstance.See
AWSChimeSDKIdentityDescribeAppInstanceRequest
See
AWSChimeSDKIdentityDescribeAppInstanceResponse
Declaration
Objective-C
- (void)describeAppInstance: (nonnull AWSChimeSDKIdentityDescribeAppInstanceRequest *)request completionHandler: (void (^_Nullable)( AWSChimeSDKIdentityDescribeAppInstanceResponse *_Nullable, NSError *_Nullable))completionHandler;Swift
func describeAppInstance(_ request: AWSChimeSDKIdentityDescribeAppInstanceRequest) async throws -> AWSChimeSDKIdentityDescribeAppInstanceResponseParameters
requestA container for the necessary parameters to execute the DescribeAppInstance service method.
completionHandlerThe completion handler to call when the load request is complete.
response- A response object, ornilif the request failed.error- An error object that indicates why the request failed, ornilif the request was successful. On failed execution,errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Returns the full details of an
AppInstanceAdmin.See
AWSChimeSDKIdentityDescribeAppInstanceAdminRequest
See
AWSChimeSDKIdentityDescribeAppInstanceAdminResponse
Declaration
Objective-C
- (id)describeAppInstanceAdmin: (nonnull AWSChimeSDKIdentityDescribeAppInstanceAdminRequest *)request;Swift
func describeAppInstanceAdmin(_ request: AWSChimeSDKIdentityDescribeAppInstanceAdminRequest) -> Any!Parameters
requestA container for the necessary parameters to execute the DescribeAppInstanceAdmin service method.
Return Value
An instance of
AWSTask. On successful execution,task.resultwill contain an instance ofAWSChimeSDKIdentityDescribeAppInstanceAdminResponse. On failed execution,task.errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Returns the full details of an
AppInstanceAdmin.See
AWSChimeSDKIdentityDescribeAppInstanceAdminRequest
See
AWSChimeSDKIdentityDescribeAppInstanceAdminResponse
Declaration
Objective-C
- (void)describeAppInstanceAdmin: (nonnull AWSChimeSDKIdentityDescribeAppInstanceAdminRequest *) request completionHandler: (void (^_Nullable)( AWSChimeSDKIdentityDescribeAppInstanceAdminResponse *_Nullable, NSError *_Nullable))completionHandler;Swift
func describeAppInstanceAdmin(_ request: AWSChimeSDKIdentityDescribeAppInstanceAdminRequest) async throws -> AWSChimeSDKIdentityDescribeAppInstanceAdminResponseParameters
requestA container for the necessary parameters to execute the DescribeAppInstanceAdmin service method.
completionHandlerThe completion handler to call when the load request is complete.
response- A response object, ornilif the request failed.error- An error object that indicates why the request failed, ornilif the request was successful. On failed execution,errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
The
AppInstanceBot'sinformation.See
AWSChimeSDKIdentityDescribeAppInstanceBotRequest
See
AWSChimeSDKIdentityDescribeAppInstanceBotResponse
Declaration
Objective-C
- (id)describeAppInstanceBot: (nonnull AWSChimeSDKIdentityDescribeAppInstanceBotRequest *)request;Swift
func describeAppInstanceBot(_ request: AWSChimeSDKIdentityDescribeAppInstanceBotRequest) -> Any!Parameters
requestA container for the necessary parameters to execute the DescribeAppInstanceBot service method.
Return Value
An instance of
AWSTask. On successful execution,task.resultwill contain an instance ofAWSChimeSDKIdentityDescribeAppInstanceBotResponse. On failed execution,task.errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorNotFound,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
The
AppInstanceBot'sinformation.See
AWSChimeSDKIdentityDescribeAppInstanceBotRequest
See
AWSChimeSDKIdentityDescribeAppInstanceBotResponse
Declaration
Objective-C
- (void) describeAppInstanceBot: (nonnull AWSChimeSDKIdentityDescribeAppInstanceBotRequest *)request completionHandler: (void (^_Nullable)( AWSChimeSDKIdentityDescribeAppInstanceBotResponse *_Nullable, NSError *_Nullable))completionHandler;Swift
func describeAppInstanceBot(_ request: AWSChimeSDKIdentityDescribeAppInstanceBotRequest) async throws -> AWSChimeSDKIdentityDescribeAppInstanceBotResponseParameters
requestA container for the necessary parameters to execute the DescribeAppInstanceBot service method.
completionHandlerThe completion handler to call when the load request is complete.
response- A response object, ornilif the request failed.error- An error object that indicates why the request failed, ornilif the request was successful. On failed execution,errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorNotFound,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Returns the full details of an
AppInstanceUser.See
AWSChimeSDKIdentityDescribeAppInstanceUserRequest
See
AWSChimeSDKIdentityDescribeAppInstanceUserResponse
Declaration
Objective-C
- (id)describeAppInstanceUser: (nonnull AWSChimeSDKIdentityDescribeAppInstanceUserRequest *)request;Swift
func describeAppInstanceUser(_ request: AWSChimeSDKIdentityDescribeAppInstanceUserRequest) -> Any!Parameters
requestA container for the necessary parameters to execute the DescribeAppInstanceUser service method.
Return Value
An instance of
AWSTask. On successful execution,task.resultwill contain an instance ofAWSChimeSDKIdentityDescribeAppInstanceUserResponse. On failed execution,task.errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Returns the full details of an
AppInstanceUser.See
AWSChimeSDKIdentityDescribeAppInstanceUserRequest
See
AWSChimeSDKIdentityDescribeAppInstanceUserResponse
Declaration
Objective-C
- (void) describeAppInstanceUser: (nonnull AWSChimeSDKIdentityDescribeAppInstanceUserRequest *)request completionHandler: (void (^_Nullable)( AWSChimeSDKIdentityDescribeAppInstanceUserResponse *_Nullable, NSError *_Nullable))completionHandler;Swift
func describeAppInstanceUser(_ request: AWSChimeSDKIdentityDescribeAppInstanceUserRequest) async throws -> AWSChimeSDKIdentityDescribeAppInstanceUserResponseParameters
requestA container for the necessary parameters to execute the DescribeAppInstanceUser service method.
completionHandlerThe completion handler to call when the load request is complete.
response- A response object, ornilif the request failed.error- An error object that indicates why the request failed, ornilif the request was successful. On failed execution,errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Returns the full details of an
AppInstanceUserEndpoint.See
AWSChimeSDKIdentityDescribeAppInstanceUserEndpointRequest
See
AWSChimeSDKIdentityDescribeAppInstanceUserEndpointResponse
Declaration
Objective-C
- (id)describeAppInstanceUserEndpoint: (nonnull AWSChimeSDKIdentityDescribeAppInstanceUserEndpointRequest *) request;Swift
func describeAppInstanceUserEndpoint(_ request: AWSChimeSDKIdentityDescribeAppInstanceUserEndpointRequest) -> Any!Parameters
requestA container for the necessary parameters to execute the DescribeAppInstanceUserEndpoint service method.
Return Value
An instance of
AWSTask. On successful execution,task.resultwill contain an instance ofAWSChimeSDKIdentityDescribeAppInstanceUserEndpointResponse. On failed execution,task.errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Returns the full details of an
AppInstanceUserEndpoint.See
AWSChimeSDKIdentityDescribeAppInstanceUserEndpointRequest
See
AWSChimeSDKIdentityDescribeAppInstanceUserEndpointResponse
Declaration
Objective-C
- (void) describeAppInstanceUserEndpoint: (nonnull AWSChimeSDKIdentityDescribeAppInstanceUserEndpointRequest *) request completionHandler: (void (^_Nullable)( AWSChimeSDKIdentityDescribeAppInstanceUserEndpointResponse *_Nullable, NSError *_Nullable))completionHandler;Swift
func describeAppInstanceUserEndpoint(_ request: AWSChimeSDKIdentityDescribeAppInstanceUserEndpointRequest) async throws -> AWSChimeSDKIdentityDescribeAppInstanceUserEndpointResponseParameters
requestA container for the necessary parameters to execute the DescribeAppInstanceUserEndpoint service method.
completionHandlerThe completion handler to call when the load request is complete.
response- A response object, ornilif the request failed.error- An error object that indicates why the request failed, ornilif the request was successful. On failed execution,errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Gets the retention settings for an
AppInstance.See
AWSChimeSDKIdentityGetAppInstanceRetentionSettingsRequest
See
AWSChimeSDKIdentityGetAppInstanceRetentionSettingsResponse
Declaration
Objective-C
- (id)getAppInstanceRetentionSettings: (nonnull AWSChimeSDKIdentityGetAppInstanceRetentionSettingsRequest *) request;Swift
func getAppInstanceRetentionSettings(_ request: AWSChimeSDKIdentityGetAppInstanceRetentionSettingsRequest) -> Any!Parameters
requestA container for the necessary parameters to execute the GetAppInstanceRetentionSettings service method.
Return Value
An instance of
AWSTask. On successful execution,task.resultwill contain an instance ofAWSChimeSDKIdentityGetAppInstanceRetentionSettingsResponse. On failed execution,task.errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Gets the retention settings for an
AppInstance.See
AWSChimeSDKIdentityGetAppInstanceRetentionSettingsRequest
See
AWSChimeSDKIdentityGetAppInstanceRetentionSettingsResponse
Declaration
Objective-C
- (void) getAppInstanceRetentionSettings: (nonnull AWSChimeSDKIdentityGetAppInstanceRetentionSettingsRequest *) request completionHandler: (void (^_Nullable)( AWSChimeSDKIdentityGetAppInstanceRetentionSettingsResponse *_Nullable, NSError *_Nullable))completionHandler;Swift
func appInstanceRetentionSettings(_ request: AWSChimeSDKIdentityGetAppInstanceRetentionSettingsRequest) async throws -> AWSChimeSDKIdentityGetAppInstanceRetentionSettingsResponseParameters
requestA container for the necessary parameters to execute the GetAppInstanceRetentionSettings service method.
completionHandlerThe completion handler to call when the load request is complete.
response- A response object, ornilif the request failed.error- An error object that indicates why the request failed, ornilif the request was successful. On failed execution,errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Returns a list of the administrators in the
AppInstance.See
AWSChimeSDKIdentityListAppInstanceAdminsRequest
See
AWSChimeSDKIdentityListAppInstanceAdminsResponse
Declaration
Objective-C
- (id)listAppInstanceAdmins: (nonnull AWSChimeSDKIdentityListAppInstanceAdminsRequest *)request;Swift
func listAppInstanceAdmins(_ request: AWSChimeSDKIdentityListAppInstanceAdminsRequest) -> Any!Parameters
requestA container for the necessary parameters to execute the ListAppInstanceAdmins service method.
Return Value
An instance of
AWSTask. On successful execution,task.resultwill contain an instance ofAWSChimeSDKIdentityListAppInstanceAdminsResponse. On failed execution,task.errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorResourceLimitExceeded,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Returns a list of the administrators in the
AppInstance.See
AWSChimeSDKIdentityListAppInstanceAdminsRequest
See
AWSChimeSDKIdentityListAppInstanceAdminsResponse
Declaration
Objective-C
- (void)listAppInstanceAdmins: (nonnull AWSChimeSDKIdentityListAppInstanceAdminsRequest *)request completionHandler: (void (^_Nullable)( AWSChimeSDKIdentityListAppInstanceAdminsResponse *_Nullable, NSError *_Nullable))completionHandler;Swift
func listAppInstanceAdmins(_ request: AWSChimeSDKIdentityListAppInstanceAdminsRequest) async throws -> AWSChimeSDKIdentityListAppInstanceAdminsResponseParameters
requestA container for the necessary parameters to execute the ListAppInstanceAdmins service method.
completionHandlerThe completion handler to call when the load request is complete.
response- A response object, ornilif the request failed.error- An error object that indicates why the request failed, ornilif the request was successful. On failed execution,errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorResourceLimitExceeded,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Lists all
AppInstanceBotscreated under a singleAppInstance.See
AWSChimeSDKIdentityListAppInstanceBotsRequest
See
AWSChimeSDKIdentityListAppInstanceBotsResponse
Declaration
Objective-C
- (id)listAppInstanceBots: (nonnull AWSChimeSDKIdentityListAppInstanceBotsRequest *)request;Swift
func listAppInstanceBots(_ request: AWSChimeSDKIdentityListAppInstanceBotsRequest) -> Any!Parameters
requestA container for the necessary parameters to execute the ListAppInstanceBots service method.
Return Value
An instance of
AWSTask. On successful execution,task.resultwill contain an instance ofAWSChimeSDKIdentityListAppInstanceBotsResponse. On failed execution,task.errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorResourceLimitExceeded,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Lists all
AppInstanceBotscreated under a singleAppInstance.See
AWSChimeSDKIdentityListAppInstanceBotsRequest
See
AWSChimeSDKIdentityListAppInstanceBotsResponse
Declaration
Objective-C
- (void)listAppInstanceBots: (nonnull AWSChimeSDKIdentityListAppInstanceBotsRequest *)request completionHandler: (void (^_Nullable)( AWSChimeSDKIdentityListAppInstanceBotsResponse *_Nullable, NSError *_Nullable))completionHandler;Swift
func listAppInstanceBots(_ request: AWSChimeSDKIdentityListAppInstanceBotsRequest) async throws -> AWSChimeSDKIdentityListAppInstanceBotsResponseParameters
requestA container for the necessary parameters to execute the ListAppInstanceBots service method.
completionHandlerThe completion handler to call when the load request is complete.
response- A response object, ornilif the request failed.error- An error object that indicates why the request failed, ornilif the request was successful. On failed execution,errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorResourceLimitExceeded,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Lists all the
AppInstanceUserEndpointscreated under a singleAppInstanceUser.See
AWSChimeSDKIdentityListAppInstanceUserEndpointsRequest
See
AWSChimeSDKIdentityListAppInstanceUserEndpointsResponse
Declaration
Objective-C
- (id)listAppInstanceUserEndpoints: (nonnull AWSChimeSDKIdentityListAppInstanceUserEndpointsRequest *)request;Swift
func listAppInstanceUserEndpoints(_ request: AWSChimeSDKIdentityListAppInstanceUserEndpointsRequest) -> Any!Parameters
requestA container for the necessary parameters to execute the ListAppInstanceUserEndpoints service method.
Return Value
An instance of
AWSTask. On successful execution,task.resultwill contain an instance ofAWSChimeSDKIdentityListAppInstanceUserEndpointsResponse. On failed execution,task.errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Lists all the
AppInstanceUserEndpointscreated under a singleAppInstanceUser.See
AWSChimeSDKIdentityListAppInstanceUserEndpointsRequest
See
AWSChimeSDKIdentityListAppInstanceUserEndpointsResponse
Declaration
Objective-C
- (void) listAppInstanceUserEndpoints: (nonnull AWSChimeSDKIdentityListAppInstanceUserEndpointsRequest *) request completionHandler: (void (^_Nullable)( AWSChimeSDKIdentityListAppInstanceUserEndpointsResponse *_Nullable, NSError *_Nullable))completionHandler;Swift
func listAppInstanceUserEndpoints(_ request: AWSChimeSDKIdentityListAppInstanceUserEndpointsRequest) async throws -> AWSChimeSDKIdentityListAppInstanceUserEndpointsResponseParameters
requestA container for the necessary parameters to execute the ListAppInstanceUserEndpoints service method.
completionHandlerThe completion handler to call when the load request is complete.
response- A response object, ornilif the request failed.error- An error object that indicates why the request failed, ornilif the request was successful. On failed execution,errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
List all
AppInstanceUserscreated under a singleAppInstance.See
AWSChimeSDKIdentityListAppInstanceUsersRequest
See
AWSChimeSDKIdentityListAppInstanceUsersResponse
Declaration
Objective-C
- (id)listAppInstanceUsers: (nonnull AWSChimeSDKIdentityListAppInstanceUsersRequest *)request;Swift
func listAppInstanceUsers(_ request: AWSChimeSDKIdentityListAppInstanceUsersRequest) -> Any!Parameters
requestA container for the necessary parameters to execute the ListAppInstanceUsers service method.
Return Value
An instance of
AWSTask. On successful execution,task.resultwill contain an instance ofAWSChimeSDKIdentityListAppInstanceUsersResponse. On failed execution,task.errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
List all
AppInstanceUserscreated under a singleAppInstance.See
AWSChimeSDKIdentityListAppInstanceUsersRequest
See
AWSChimeSDKIdentityListAppInstanceUsersResponse
Declaration
Objective-C
- (void)listAppInstanceUsers: (nonnull AWSChimeSDKIdentityListAppInstanceUsersRequest *)request completionHandler: (void (^_Nullable)( AWSChimeSDKIdentityListAppInstanceUsersResponse *_Nullable, NSError *_Nullable))completionHandler;Swift
func listAppInstanceUsers(_ request: AWSChimeSDKIdentityListAppInstanceUsersRequest) async throws -> AWSChimeSDKIdentityListAppInstanceUsersResponseParameters
requestA container for the necessary parameters to execute the ListAppInstanceUsers service method.
completionHandlerThe completion handler to call when the load request is complete.
response- A response object, ornilif the request failed.error- An error object that indicates why the request failed, ornilif the request was successful. On failed execution,errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Lists all Amazon Chime
AppInstances created under a single AWS account.See
AWSChimeSDKIdentityListAppInstancesRequest
See
AWSChimeSDKIdentityListAppInstancesResponse
Declaration
Objective-C
- (id)listAppInstances: (nonnull AWSChimeSDKIdentityListAppInstancesRequest *)request;Swift
func listAppInstances(_ request: AWSChimeSDKIdentityListAppInstancesRequest) -> Any!Parameters
requestA container for the necessary parameters to execute the ListAppInstances service method.
Return Value
An instance of
AWSTask. On successful execution,task.resultwill contain an instance ofAWSChimeSDKIdentityListAppInstancesResponse. On failed execution,task.errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Lists all Amazon Chime
AppInstances created under a single AWS account.See
AWSChimeSDKIdentityListAppInstancesRequest
See
AWSChimeSDKIdentityListAppInstancesResponse
Declaration
Objective-C
- (void)listAppInstances: (nonnull AWSChimeSDKIdentityListAppInstancesRequest *)request completionHandler: (void (^_Nullable)( AWSChimeSDKIdentityListAppInstancesResponse *_Nullable, NSError *_Nullable))completionHandler;Swift
func listAppInstances(_ request: AWSChimeSDKIdentityListAppInstancesRequest) async throws -> AWSChimeSDKIdentityListAppInstancesResponseParameters
requestA container for the necessary parameters to execute the ListAppInstances service method.
completionHandlerThe completion handler to call when the load request is complete.
response- A response object, ornilif the request failed.error- An error object that indicates why the request failed, ornilif the request was successful. On failed execution,errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Lists the tags applied to an Amazon Chime SDK identity resource.
See
AWSChimeSDKIdentityListTagsForResourceRequest
See
AWSChimeSDKIdentityListTagsForResourceResponse
Declaration
Objective-C
- (id)listTagsForResource: (nonnull AWSChimeSDKIdentityListTagsForResourceRequest *)request;Swift
func listTags(forResource request: AWSChimeSDKIdentityListTagsForResourceRequest) -> Any!Parameters
requestA container for the necessary parameters to execute the ListTagsForResource service method.
Return Value
An instance of
AWSTask. On successful execution,task.resultwill contain an instance ofAWSChimeSDKIdentityListTagsForResourceResponse. On failed execution,task.errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Lists the tags applied to an Amazon Chime SDK identity resource.
See
AWSChimeSDKIdentityListTagsForResourceRequest
See
AWSChimeSDKIdentityListTagsForResourceResponse
Declaration
Objective-C
- (void)listTagsForResource: (nonnull AWSChimeSDKIdentityListTagsForResourceRequest *)request completionHandler: (void (^_Nullable)( AWSChimeSDKIdentityListTagsForResourceResponse *_Nullable, NSError *_Nullable))completionHandler;Swift
func listTags(forResource request: AWSChimeSDKIdentityListTagsForResourceRequest) async throws -> AWSChimeSDKIdentityListTagsForResourceResponseParameters
requestA container for the necessary parameters to execute the ListTagsForResource service method.
completionHandlerThe completion handler to call when the load request is complete.
response- A response object, ornilif the request failed.error- An error object that indicates why the request failed, ornilif the request was successful. On failed execution,errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Sets the amount of time in days that a given
AppInstanceretains data.See
AWSChimeSDKIdentityPutAppInstanceRetentionSettingsRequest
See
AWSChimeSDKIdentityPutAppInstanceRetentionSettingsResponse
Declaration
Objective-C
- (id)putAppInstanceRetentionSettings: (nonnull AWSChimeSDKIdentityPutAppInstanceRetentionSettingsRequest *) request;Swift
func putAppInstanceRetentionSettings(_ request: AWSChimeSDKIdentityPutAppInstanceRetentionSettingsRequest) -> Any!Parameters
requestA container for the necessary parameters to execute the PutAppInstanceRetentionSettings service method.
Return Value
An instance of
AWSTask. On successful execution,task.resultwill contain an instance ofAWSChimeSDKIdentityPutAppInstanceRetentionSettingsResponse. On failed execution,task.errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Sets the amount of time in days that a given
AppInstanceretains data.See
AWSChimeSDKIdentityPutAppInstanceRetentionSettingsRequest
See
AWSChimeSDKIdentityPutAppInstanceRetentionSettingsResponse
Declaration
Objective-C
- (void) putAppInstanceRetentionSettings: (nonnull AWSChimeSDKIdentityPutAppInstanceRetentionSettingsRequest *) request completionHandler: (void (^_Nullable)( AWSChimeSDKIdentityPutAppInstanceRetentionSettingsResponse *_Nullable, NSError *_Nullable))completionHandler;Swift
func putAppInstanceRetentionSettings(_ request: AWSChimeSDKIdentityPutAppInstanceRetentionSettingsRequest) async throws -> AWSChimeSDKIdentityPutAppInstanceRetentionSettingsResponseParameters
requestA container for the necessary parameters to execute the PutAppInstanceRetentionSettings service method.
completionHandlerThe completion handler to call when the load request is complete.
response- A response object, ornilif the request failed.error- An error object that indicates why the request failed, ornilif the request was successful. On failed execution,errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Sets the number of days before the
AppInstanceUseris automatically deleted.A background process deletes expired
AppInstanceUserswithin 6 hours of expiration. Actual deletion times may vary.Expired
AppInstanceUsersthat have not yet been deleted appear as active, and you can update their expiration settings. The system honors the new settings.See
AWSChimeSDKIdentityPutAppInstanceUserExpirationSettingsRequest
See
AWSChimeSDKIdentityPutAppInstanceUserExpirationSettingsResponse
Declaration
Objective-C
- (id)putAppInstanceUserExpirationSettings: (nonnull AWSChimeSDKIdentityPutAppInstanceUserExpirationSettingsRequest *) request;Swift
func putAppInstanceUserExpirationSettings(_ request: AWSChimeSDKIdentityPutAppInstanceUserExpirationSettingsRequest) -> Any!Parameters
requestA container for the necessary parameters to execute the PutAppInstanceUserExpirationSettings service method.
Return Value
An instance of
AWSTask. On successful execution,task.resultwill contain an instance ofAWSChimeSDKIdentityPutAppInstanceUserExpirationSettingsResponse. On failed execution,task.errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorConflict,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Sets the number of days before the
AppInstanceUseris automatically deleted.A background process deletes expired
AppInstanceUserswithin 6 hours of expiration. Actual deletion times may vary.Expired
AppInstanceUsersthat have not yet been deleted appear as active, and you can update their expiration settings. The system honors the new settings.See
AWSChimeSDKIdentityPutAppInstanceUserExpirationSettingsRequest
See
AWSChimeSDKIdentityPutAppInstanceUserExpirationSettingsResponse
Declaration
Objective-C
- (void) putAppInstanceUserExpirationSettings: (nonnull AWSChimeSDKIdentityPutAppInstanceUserExpirationSettingsRequest *)request completionHandler: (void (^_Nullable)( AWSChimeSDKIdentityPutAppInstanceUserExpirationSettingsResponse *_Nullable, NSError *_Nullable))completionHandler;Swift
func putAppInstanceUserExpirationSettings(_ request: AWSChimeSDKIdentityPutAppInstanceUserExpirationSettingsRequest) async throws -> AWSChimeSDKIdentityPutAppInstanceUserExpirationSettingsResponseParameters
requestA container for the necessary parameters to execute the PutAppInstanceUserExpirationSettings service method.
completionHandlerThe completion handler to call when the load request is complete.
response- A response object, ornilif the request failed.error- An error object that indicates why the request failed, ornilif the request was successful. On failed execution,errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorConflict,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Registers an endpoint under an Amazon Chime
AppInstanceUser. The endpoint receives messages for a user. For push notifications, the endpoint is a mobile device used to receive mobile push notifications for a user.See
AWSChimeSDKIdentityRegisterAppInstanceUserEndpointRequest
See
AWSChimeSDKIdentityRegisterAppInstanceUserEndpointResponse
Declaration
Objective-C
- (id)registerAppInstanceUserEndpoint: (nonnull AWSChimeSDKIdentityRegisterAppInstanceUserEndpointRequest *) request;Swift
func registerAppInstanceUserEndpoint(_ request: AWSChimeSDKIdentityRegisterAppInstanceUserEndpointRequest) -> Any!Parameters
requestA container for the necessary parameters to execute the RegisterAppInstanceUserEndpoint service method.
Return Value
An instance of
AWSTask. On successful execution,task.resultwill contain an instance ofAWSChimeSDKIdentityRegisterAppInstanceUserEndpointResponse. On failed execution,task.errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorConflict,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorResourceLimitExceeded,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Registers an endpoint under an Amazon Chime
AppInstanceUser. The endpoint receives messages for a user. For push notifications, the endpoint is a mobile device used to receive mobile push notifications for a user.See
AWSChimeSDKIdentityRegisterAppInstanceUserEndpointRequest
See
AWSChimeSDKIdentityRegisterAppInstanceUserEndpointResponse
Declaration
Objective-C
- (void) registerAppInstanceUserEndpoint: (nonnull AWSChimeSDKIdentityRegisterAppInstanceUserEndpointRequest *) request completionHandler: (void (^_Nullable)( AWSChimeSDKIdentityRegisterAppInstanceUserEndpointResponse *_Nullable, NSError *_Nullable))completionHandler;Swift
func registerAppInstanceUserEndpoint(_ request: AWSChimeSDKIdentityRegisterAppInstanceUserEndpointRequest) async throws -> AWSChimeSDKIdentityRegisterAppInstanceUserEndpointResponseParameters
requestA container for the necessary parameters to execute the RegisterAppInstanceUserEndpoint service method.
completionHandlerThe completion handler to call when the load request is complete.
response- A response object, ornilif the request failed.error- An error object that indicates why the request failed, ornilif the request was successful. On failed execution,errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorConflict,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorResourceLimitExceeded,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Applies the specified tags to the specified Amazon Chime SDK identity resource.
See
AWSChimeSDKIdentityTagResourceRequest
Declaration
Objective-C
- (id)tagResource:(nonnull AWSChimeSDKIdentityTagResourceRequest *)request;Swift
func tagResource(_ request: AWSChimeSDKIdentityTagResourceRequest) -> Any!Parameters
requestA container for the necessary parameters to execute the TagResource service method.
Return Value
An instance of
AWSTask. On successful execution,task.resultwill benil. On failed execution,task.errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorResourceLimitExceeded,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Applies the specified tags to the specified Amazon Chime SDK identity resource.
See
AWSChimeSDKIdentityTagResourceRequest
Declaration
Objective-C
- (void)tagResource:(nonnull AWSChimeSDKIdentityTagResourceRequest *)request completionHandler:(void (^_Nullable)(NSError *_Nullable))completionHandler;Swift
func tagResource(_ request: AWSChimeSDKIdentityTagResourceRequest) async throwsParameters
requestA container for the necessary parameters to execute the TagResource service method.
completionHandlerThe completion handler to call when the load request is complete.
error- An error object that indicates why the request failed, ornilif the request was successful. On failed execution,errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorResourceLimitExceeded,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Removes the specified tags from the specified Amazon Chime SDK identity resource.
See
AWSChimeSDKIdentityUntagResourceRequest
Declaration
Objective-C
- (id)untagResource:(nonnull AWSChimeSDKIdentityUntagResourceRequest *)request;Swift
func untagResource(_ request: AWSChimeSDKIdentityUntagResourceRequest) -> Any!Parameters
requestA container for the necessary parameters to execute the UntagResource service method.
Return Value
An instance of
AWSTask. On successful execution,task.resultwill benil. On failed execution,task.errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Removes the specified tags from the specified Amazon Chime SDK identity resource.
See
AWSChimeSDKIdentityUntagResourceRequest
Declaration
Objective-C
- (void)untagResource:(nonnull AWSChimeSDKIdentityUntagResourceRequest *)request completionHandler:(void (^_Nullable)(NSError *_Nullable))completionHandler;Swift
func untagResource(_ request: AWSChimeSDKIdentityUntagResourceRequest) async throwsParameters
requestA container for the necessary parameters to execute the UntagResource service method.
completionHandlerThe completion handler to call when the load request is complete.
error- An error object that indicates why the request failed, ornilif the request was successful. On failed execution,errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Updates
AppInstancemetadata.See
AWSChimeSDKIdentityUpdateAppInstanceRequest
See
AWSChimeSDKIdentityUpdateAppInstanceResponse
Declaration
Objective-C
- (id)updateAppInstance: (nonnull AWSChimeSDKIdentityUpdateAppInstanceRequest *)request;Swift
func updateAppInstance(_ request: AWSChimeSDKIdentityUpdateAppInstanceRequest) -> Any!Parameters
requestA container for the necessary parameters to execute the UpdateAppInstance service method.
Return Value
An instance of
AWSTask. On successful execution,task.resultwill contain an instance ofAWSChimeSDKIdentityUpdateAppInstanceResponse. On failed execution,task.errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorConflict,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Updates
AppInstancemetadata.See
AWSChimeSDKIdentityUpdateAppInstanceRequest
See
AWSChimeSDKIdentityUpdateAppInstanceResponse
Declaration
Objective-C
- (void)updateAppInstance: (nonnull AWSChimeSDKIdentityUpdateAppInstanceRequest *)request completionHandler: (void (^_Nullable)( AWSChimeSDKIdentityUpdateAppInstanceResponse *_Nullable, NSError *_Nullable))completionHandler;Swift
func updateAppInstance(_ request: AWSChimeSDKIdentityUpdateAppInstanceRequest) async throws -> AWSChimeSDKIdentityUpdateAppInstanceResponseParameters
requestA container for the necessary parameters to execute the UpdateAppInstance service method.
completionHandlerThe completion handler to call when the load request is complete.
response- A response object, ornilif the request failed.error- An error object that indicates why the request failed, ornilif the request was successful. On failed execution,errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorConflict,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Updates the name and metadata of an
AppInstanceBot.See
AWSChimeSDKIdentityUpdateAppInstanceBotRequest
See
AWSChimeSDKIdentityUpdateAppInstanceBotResponse
Declaration
Objective-C
- (id)updateAppInstanceBot: (nonnull AWSChimeSDKIdentityUpdateAppInstanceBotRequest *)request;Swift
func updateAppInstanceBot(_ request: AWSChimeSDKIdentityUpdateAppInstanceBotRequest) -> Any!Parameters
requestA container for the necessary parameters to execute the UpdateAppInstanceBot service method.
Return Value
An instance of
AWSTask. On successful execution,task.resultwill contain an instance ofAWSChimeSDKIdentityUpdateAppInstanceBotResponse. On failed execution,task.errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorConflict,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorResourceLimitExceeded,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Updates the name and metadata of an
AppInstanceBot.See
AWSChimeSDKIdentityUpdateAppInstanceBotRequest
See
AWSChimeSDKIdentityUpdateAppInstanceBotResponse
Declaration
Objective-C
- (void)updateAppInstanceBot: (nonnull AWSChimeSDKIdentityUpdateAppInstanceBotRequest *)request completionHandler: (void (^_Nullable)( AWSChimeSDKIdentityUpdateAppInstanceBotResponse *_Nullable, NSError *_Nullable))completionHandler;Swift
func updateAppInstanceBot(_ request: AWSChimeSDKIdentityUpdateAppInstanceBotRequest) async throws -> AWSChimeSDKIdentityUpdateAppInstanceBotResponseParameters
requestA container for the necessary parameters to execute the UpdateAppInstanceBot service method.
completionHandlerThe completion handler to call when the load request is complete.
response- A response object, ornilif the request failed.error- An error object that indicates why the request failed, ornilif the request was successful. On failed execution,errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorConflict,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorResourceLimitExceeded,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Updates the details of an
AppInstanceUser. You can update names and metadata.See
AWSChimeSDKIdentityUpdateAppInstanceUserRequest
See
AWSChimeSDKIdentityUpdateAppInstanceUserResponse
Declaration
Objective-C
- (id)updateAppInstanceUser: (nonnull AWSChimeSDKIdentityUpdateAppInstanceUserRequest *)request;Swift
func updateAppInstanceUser(_ request: AWSChimeSDKIdentityUpdateAppInstanceUserRequest) -> Any!Parameters
requestA container for the necessary parameters to execute the UpdateAppInstanceUser service method.
Return Value
An instance of
AWSTask. On successful execution,task.resultwill contain an instance ofAWSChimeSDKIdentityUpdateAppInstanceUserResponse. On failed execution,task.errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorConflict,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorResourceLimitExceeded,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Updates the details of an
AppInstanceUser. You can update names and metadata.See
AWSChimeSDKIdentityUpdateAppInstanceUserRequest
See
AWSChimeSDKIdentityUpdateAppInstanceUserResponse
Declaration
Objective-C
- (void)updateAppInstanceUser: (nonnull AWSChimeSDKIdentityUpdateAppInstanceUserRequest *)request completionHandler: (void (^_Nullable)( AWSChimeSDKIdentityUpdateAppInstanceUserResponse *_Nullable, NSError *_Nullable))completionHandler;Swift
func updateAppInstanceUser(_ request: AWSChimeSDKIdentityUpdateAppInstanceUserRequest) async throws -> AWSChimeSDKIdentityUpdateAppInstanceUserResponseParameters
requestA container for the necessary parameters to execute the UpdateAppInstanceUser service method.
completionHandlerThe completion handler to call when the load request is complete.
response- A response object, ornilif the request failed.error- An error object that indicates why the request failed, ornilif the request was successful. On failed execution,errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorConflict,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorResourceLimitExceeded,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Updates the details of an
AppInstanceUserEndpoint. You can update the name andAllowMessagevalues.See
AWSChimeSDKIdentityUpdateAppInstanceUserEndpointRequest
See
AWSChimeSDKIdentityUpdateAppInstanceUserEndpointResponse
Declaration
Objective-C
- (id)updateAppInstanceUserEndpoint: (nonnull AWSChimeSDKIdentityUpdateAppInstanceUserEndpointRequest *)request;Swift
func updateAppInstanceUserEndpoint(_ request: AWSChimeSDKIdentityUpdateAppInstanceUserEndpointRequest) -> Any!Parameters
requestA container for the necessary parameters to execute the UpdateAppInstanceUserEndpoint service method.
Return Value
An instance of
AWSTask. On successful execution,task.resultwill contain an instance ofAWSChimeSDKIdentityUpdateAppInstanceUserEndpointResponse. On failed execution,task.errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorConflict,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure. -
Updates the details of an
AppInstanceUserEndpoint. You can update the name andAllowMessagevalues.See
AWSChimeSDKIdentityUpdateAppInstanceUserEndpointRequest
See
AWSChimeSDKIdentityUpdateAppInstanceUserEndpointResponse
Declaration
Objective-C
- (void) updateAppInstanceUserEndpoint: (nonnull AWSChimeSDKIdentityUpdateAppInstanceUserEndpointRequest *) request completionHandler: (void (^_Nullable)( AWSChimeSDKIdentityUpdateAppInstanceUserEndpointResponse *_Nullable, NSError *_Nullable))completionHandler;Swift
func updateAppInstanceUserEndpoint(_ request: AWSChimeSDKIdentityUpdateAppInstanceUserEndpointRequest) async throws -> AWSChimeSDKIdentityUpdateAppInstanceUserEndpointResponseParameters
requestA container for the necessary parameters to execute the UpdateAppInstanceUserEndpoint service method.
completionHandlerThe completion handler to call when the load request is complete.
response- A response object, ornilif the request failed.error- An error object that indicates why the request failed, ornilif the request was successful. On failed execution,errormay contain anNSErrorwithAWSChimeSDKIdentityErrorDomaindomain and the following error code:AWSChimeSDKIdentityErrorBadRequest,AWSChimeSDKIdentityErrorConflict,AWSChimeSDKIdentityErrorForbidden,AWSChimeSDKIdentityErrorThrottledClient,AWSChimeSDKIdentityErrorUnauthorizedClient,AWSChimeSDKIdentityErrorServiceUnavailable,AWSChimeSDKIdentityErrorServiceFailure.
View on GitHub
Install in Dash
AWSChimeSDKIdentity Class Reference