getDistribution2020_05_31 method
Get the information about a distribution.
May throw NoSuchDistribution. May throw AccessDenied.
Parameter id
:
The distribution's ID. If the ID is empty, an empty distribution
configuration is returned.
Implementation
Future<GetDistributionResult> getDistribution2020_05_31({
required String id,
}) async {
ArgumentError.checkNotNull(id, 'id');
final $result = await _protocol.sendRaw(
method: 'GET',
requestUri: '/2020-05-31/distribution/${Uri.encodeComponent(id)}',
exceptionFnMap: _exceptionFns,
);
final $elem = await _s.xmlFromResponse($result);
return GetDistributionResult(
distribution: Distribution.fromXml($elem),
eTag: _s.extractHeaderStringValue($result.headers, 'ETag'),
);
}