describeOAuthClientApplication method
Describes an OAuthClientApplication.
May throw AccessDeniedException.
May throw InternalFailureException.
May throw InvalidParameterValueException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
Parameter awsAccountId :
The Amazon Web Services account ID.
Parameter oAuthClientApplicationId :
The ID of the OAuthClientApplication that you want to describe.
Implementation
Future<DescribeOAuthClientApplicationResponse>
describeOAuthClientApplication({
required String awsAccountId,
required String oAuthClientApplicationId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri:
'/accounts/${Uri.encodeComponent(awsAccountId)}/oauth-client-applications/${Uri.encodeComponent(oAuthClientApplicationId)}',
exceptionFnMap: _exceptionFns,
);
return DescribeOAuthClientApplicationResponse.fromJson(response);
}