describeProtectedResource method
Returns information about a saved resource, including the last time it was backed up, its Amazon Resource Name (ARN), and the AWS service type of the saved resource.
May throw MissingParameterValueException. May throw InvalidParameterValueException. May throw ServiceUnavailableException. May throw ResourceNotFoundException.
Parameter resourceArn
:
An Amazon Resource Name (ARN) that uniquely identifies a resource. The
format of the ARN depends on the resource type.
Implementation
Future<DescribeProtectedResourceOutput> describeProtectedResource({
required String resourceArn,
}) async {
ArgumentError.checkNotNull(resourceArn, 'resourceArn');
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/resources/${Uri.encodeComponent(resourceArn)}',
exceptionFnMap: _exceptionFns,
);
return DescribeProtectedResourceOutput.fromJson(response);
}