getAppBundle method

Future<GetAppBundleResponse> getAppBundle({
  1. required String appBundleIdentifier,
})

Returns information about an app bundle.

May throw AccessDeniedException. May throw InternalServerException. May throw ResourceNotFoundException. May throw ThrottlingException. May throw ValidationException.

Parameter appBundleIdentifier : The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.

Implementation

Future<GetAppBundleResponse> getAppBundle({
  required String appBundleIdentifier,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/appbundles/${Uri.encodeComponent(appBundleIdentifier)}',
    exceptionFnMap: _exceptionFns,
  );
  return GetAppBundleResponse.fromJson(response);
}