describeBrandAssignment method

Future<DescribeBrandAssignmentResponse> describeBrandAssignment({
  1. required String awsAccountId,
})

Describes a brand assignment.

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 assignment.

Implementation

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