getManagedView method

Future<GetManagedViewOutput> getManagedView({
  1. required String managedViewArn,
})

Retrieves details of the specified Amazon Web Services-managed view.

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

Parameter managedViewArn : The Amazon resource name (ARN) of the managed view.

Implementation

Future<GetManagedViewOutput> getManagedView({
  required String managedViewArn,
}) async {
  final $payload = <String, dynamic>{
    'ManagedViewArn': managedViewArn,
  };
  final response = await _protocol.send(
    payload: $payload,
    method: 'POST',
    requestUri: '/GetManagedView',
    exceptionFnMap: _exceptionFns,
  );
  return GetManagedViewOutput.fromJson(response);
}