getIngestConfiguration method
Gets information about the specified IngestConfiguration.
May throw AccessDeniedException.
May throw ResourceNotFoundException.
May throw ValidationException.
Parameter arn :
ARN of the ingest for which the information is to be retrieved.
Implementation
Future<GetIngestConfigurationResponse> getIngestConfiguration({
required String arn,
}) async {
final $payload = <String, dynamic>{
'arn': arn,
};
final response = await _protocol.send(
payload: $payload,
method: 'POST',
requestUri: '/GetIngestConfiguration',
exceptionFnMap: _exceptionFns,
);
return GetIngestConfigurationResponse.fromJson(response);
}