getManagedCertificateDetails method
Future<GetManagedCertificateDetailsResult>
getManagedCertificateDetails({
- required String identifier,
Gets details about the CloudFront managed ACM certificate.
May throw AccessDenied.
May throw EntityNotFound.
Parameter identifier :
The identifier of the distribution tenant. You can specify the ARN, ID, or
name of the distribution tenant.
Implementation
Future<GetManagedCertificateDetailsResult> getManagedCertificateDetails({
required String identifier,
}) async {
final $result = await _protocol.sendRaw(
method: 'GET',
requestUri:
'/2020-05-31/managed-certificate/${Uri.encodeComponent(identifier)}',
exceptionFnMap: _exceptionFns,
);
final $elem = await _s.xmlFromResponse($result);
return GetManagedCertificateDetailsResult(
managedCertificateDetails: ManagedCertificateDetails.fromXml($elem),
);
}