describeBrandPublishedVersion method

Future<DescribeBrandPublishedVersionResponse> describeBrandPublishedVersion({
  1. required String awsAccountId,
  2. required String brandId,
})

Describes the published version of the brand.

May throw AccessDeniedException. May throw ConflictException. May throw InternalServerException. May throw InvalidRequestException. May throw ResourceNotFoundException. May throw ThrottlingException.

Parameter awsAccountId : The ID of the Amazon Web Services account that owns the brand.

Parameter brandId : The ID of the Quick brand.

Implementation

Future<DescribeBrandPublishedVersionResponse> describeBrandPublishedVersion({
  required String awsAccountId,
  required String brandId,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri:
        '/accounts/${Uri.encodeComponent(awsAccountId)}/brands/${Uri.encodeComponent(brandId)}/publishedversion',
    exceptionFnMap: _exceptionFns,
  );
  return DescribeBrandPublishedVersionResponse.fromJson(response);
}