getMessagingStreamingConfigurations method

Future<GetMessagingStreamingConfigurationsResponse> getMessagingStreamingConfigurations({
  1. required String appInstanceArn,
})

Retrieves the data streaming configuration 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 NotFoundException. May throw ServiceFailureException. May throw ServiceUnavailableException. May throw ThrottledClientException. May throw UnauthorizedClientException.

Parameter appInstanceArn : The ARN of the streaming configurations.

Implementation

Future<GetMessagingStreamingConfigurationsResponse>
    getMessagingStreamingConfigurations({
  required String appInstanceArn,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri:
        '/app-instances/${Uri.encodeComponent(appInstanceArn)}/streaming-configurations',
    exceptionFnMap: _exceptionFns,
  );
  return GetMessagingStreamingConfigurationsResponse.fromJson(response);
}