getCodeSecurityIntegration method
Retrieves information about a code security integration.
May throw AccessDeniedException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter integrationArn :
The Amazon Resource Name (ARN) of the code security integration to
retrieve.
Parameter tags :
The tags associated with the code security integration.
Implementation
Future<GetCodeSecurityIntegrationResponse> getCodeSecurityIntegration({
required String integrationArn,
Map<String, String>? tags,
}) async {
final $payload = <String, dynamic>{
'integrationArn': integrationArn,
if (tags != null) 'tags': tags,
};
final response = await _protocol.send(
payload: $payload,
method: 'POST',
requestUri: '/codesecurity/integration/get',
exceptionFnMap: _exceptionFns,
);
return GetCodeSecurityIntegrationResponse.fromJson(response);
}