deleteMessagingStreamingConfigurations method
Deletes the streaming configurations for an AppInstance. For
more information, see Streaming
messaging data in the Amazon Chime SDK Developer Guide.
May throw BadRequestException.
May throw ForbiddenException.
May throw ServiceFailureException.
May throw ServiceUnavailableException.
May throw ThrottledClientException.
May throw UnauthorizedClientException.
Parameter appInstanceArn :
The ARN of the streaming configurations being deleted.
Implementation
Future<void> deleteMessagingStreamingConfigurations({
required String appInstanceArn,
}) async {
await _protocol.send(
payload: null,
method: 'DELETE',
requestUri:
'/app-instances/${Uri.encodeComponent(appInstanceArn)}/streaming-configurations',
exceptionFnMap: _exceptionFns,
);
}