deleteCloudFrontOriginAccessIdentity2017_10_30 method
Delete an origin access identity.
May throw AccessDenied. May throw InvalidIfMatchVersion. May throw NoSuchCloudFrontOriginAccessIdentity. May throw PreconditionFailed. May throw CloudFrontOriginAccessIdentityInUse.
Parameter id
:
The origin access identity's ID.
Parameter ifMatch
:
The value of the ETag
header you received from a previous
GET
or PUT
request. For example:
E2QWRUHAPOMQZL
.
Implementation
Future<void> deleteCloudFrontOriginAccessIdentity2017_10_30({
required String id,
String? ifMatch,
}) async {
ArgumentError.checkNotNull(id, 'id');
final headers = <String, String>{
if (ifMatch != null) 'If-Match': ifMatch.toString(),
};
await _protocol.send(
method: 'DELETE',
requestUri:
'/2017-10-30/origin-access-identity/cloudfront/${Uri.encodeComponent(id)}',
headers: headers,
exceptionFnMap: _exceptionFns,
);
}