getStorageConfiguration method

Future<GetStorageConfigurationResponse> getStorageConfiguration({
  1. required String arn,
})

Gets the storage configuration for the specified ARN.

May throw AccessDeniedException. May throw ConflictException. May throw InternalServerException. May throw ResourceNotFoundException. May throw ServiceQuotaExceededException. May throw ValidationException.

Parameter arn : ARN of the storage configuration to be retrieved.

Implementation

Future<GetStorageConfigurationResponse> getStorageConfiguration({
  required String arn,
}) async {
  final $payload = <String, dynamic>{
    'arn': arn,
  };
  final response = await _protocol.send(
    payload: $payload,
    method: 'POST',
    requestUri: '/GetStorageConfiguration',
    exceptionFnMap: _exceptionFns,
  );
  return GetStorageConfigurationResponse.fromJson(response);
}