deleteAppInstanceStreamingConfigurations method

Future<void> deleteAppInstanceStreamingConfigurations({
  1. required String appInstanceArn,
})

Deletes the streaming configurations of an app instance.

May throw BadRequestException. May throw ForbiddenException. May throw NotFoundException. May throw UnauthorizedClientException. May throw ThrottledClientException. May throw ServiceUnavailableException. May throw ServiceFailureException.

Parameter appInstanceArn : The ARN of the streaming configurations being deleted.

Implementation

Future<void> deleteAppInstanceStreamingConfigurations({
  required String appInstanceArn,
}) async {
  ArgumentError.checkNotNull(appInstanceArn, 'appInstanceArn');
  _s.validateStringLength(
    'appInstanceArn',
    appInstanceArn,
    5,
    1600,
    isRequired: true,
  );
  await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri:
        '/app-instances/${Uri.encodeComponent(appInstanceArn)}/streaming-configurations',
    exceptionFnMap: _exceptionFns,
  );
}