getConfiguredAudienceModel method
Future<GetConfiguredAudienceModelResponse>
getConfiguredAudienceModel({
- required String configuredAudienceModelArn,
Returns information about a specified configured audience model.
May throw AccessDeniedException.
May throw ResourceNotFoundException.
May throw ValidationException.
Parameter configuredAudienceModelArn :
The Amazon Resource Name (ARN) of the configured audience model that you
are interested in.
Implementation
Future<GetConfiguredAudienceModelResponse> getConfiguredAudienceModel({
required String configuredAudienceModelArn,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri:
'/configured-audience-model/${Uri.encodeComponent(configuredAudienceModelArn)}',
exceptionFnMap: _exceptionFns,
);
return GetConfiguredAudienceModelResponse.fromJson(response);
}