describeWebAppCustomization method

Future<DescribeWebAppCustomizationResponse> describeWebAppCustomization({
  1. required String webAppId,
})

Describes the web app customization object that's identified by WebAppId.

May throw AccessDeniedException. May throw InternalServiceError. May throw InvalidRequestException. May throw ResourceNotFoundException. May throw ThrottlingException.

Parameter webAppId : Provide the unique identifier for the web app.

Implementation

Future<DescribeWebAppCustomizationResponse> describeWebAppCustomization({
  required String webAppId,
}) async {
  final headers = <String, String>{
    'Content-Type': 'application/x-amz-json-1.1',
    'X-Amz-Target': 'TransferService.DescribeWebAppCustomization'
  };
  final jsonResponse = await _protocol.send(
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    // TODO queryParams
    headers: headers,
    payload: {
      'WebAppId': webAppId,
    },
  );

  return DescribeWebAppCustomizationResponse.fromJson(jsonResponse.body);
}