listDomainAssociations method
Returns the domain associations for an Amplify app.
May throw BadRequestException. May throw UnauthorizedException. May throw InternalFailureException.
Parameter appId
:
The unique ID for an Amplify app.
Parameter maxResults
:
The maximum number of records to list in a single response.
Parameter nextToken
:
A pagination token. Set to null to start listing apps from the start. If
non-null, a pagination token is returned in a result. Pass its value in
here to list more projects.
Implementation
Future<ListDomainAssociationsResult> listDomainAssociations({
required String appId,
int? maxResults,
String? nextToken,
}) async {
ArgumentError.checkNotNull(appId, 'appId');
_s.validateStringLength(
'appId',
appId,
1,
20,
isRequired: true,
);
_s.validateNumRange(
'maxResults',
maxResults,
0,
100,
);
_s.validateStringLength(
'nextToken',
nextToken,
0,
2000,
);
final $query = <String, List<String>>{
if (maxResults != null) 'maxResults': [maxResults.toString()],
if (nextToken != null) 'nextToken': [nextToken],
};
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/apps/${Uri.encodeComponent(appId)}/domains',
queryParams: $query,
exceptionFnMap: _exceptionFns,
);
return ListDomainAssociationsResult.fromJson(response);
}