describeBackupAccessPoint method
Future<DescribeBackupAccessPointResponse>
describeBackupAccessPoint({
- required String accessPointArn,
Returns metadata about a backup access point, including its status and the details of the underlying Amazon S3 access point.
After a backup access point reaches the AVAILABLE status, use
this operation to retrieve the Amazon S3 access point ARN and alias that
you need to read the backup data.
May throw InvalidParameterValueException.
May throw InvalidRequestException.
May throw MissingParameterValueException.
May throw ResourceNotFoundException.
May throw ServiceUnavailableException.
Parameter accessPointArn :
The Amazon Resource Name (ARN) of the backup access point to describe.
Implementation
Future<DescribeBackupAccessPointResponse> describeBackupAccessPoint({
required String accessPointArn,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/backup-access-point/${Uri.encodeComponent(accessPointArn)}',
exceptionFnMap: _exceptionFns,
);
return DescribeBackupAccessPointResponse.fromJson(response);
}