validateAwsAssociations method

Future<void> validateAwsAssociations({
  1. required String agentSpaceId,
})

Validates an aws association and set status and returns a 204 No Content response on success.

May throw InternalServerException. May throw ResourceNotFoundException. May throw ThrottlingException. May throw ValidationException.

Parameter agentSpaceId : The unique identifier of the AgentSpace

Implementation

Future<void> validateAwsAssociations({
  required String agentSpaceId,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'POST',
    requestUri:
        '/v1/agentspaces/${Uri.encodeComponent(agentSpaceId)}/associations/validate',
    hostPrefix: 'cp.',
    exceptionFnMap: _exceptionFns,
  );
}