describeDomainConfiguration method

Future<DescribeDomainConfigurationResponse> describeDomainConfiguration({
  1. required String domainConfigurationName,
})

Gets summary information about a domain configuration.

Requires permission to access the DescribeDomainConfiguration action.

May throw InternalFailureException. May throw InvalidRequestException. May throw ResourceNotFoundException. May throw ServiceUnavailableException. May throw ThrottlingException. May throw UnauthorizedException.

Parameter domainConfigurationName : The name of the domain configuration.

Implementation

Future<DescribeDomainConfigurationResponse> describeDomainConfiguration({
  required String domainConfigurationName,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri:
        '/domainConfigurations/${Uri.encodeComponent(domainConfigurationName)}',
    exceptionFnMap: _exceptionFns,
  );
  return DescribeDomainConfigurationResponse.fromJson(response);
}