getServiceNetworkServiceAssociation method

Future<GetServiceNetworkServiceAssociationResponse> getServiceNetworkServiceAssociation({
  1. required String serviceNetworkServiceAssociationIdentifier,
})

Retrieves information about the specified association between a service network and a service.

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

Parameter serviceNetworkServiceAssociationIdentifier : The ID or ARN of the association.

Implementation

Future<GetServiceNetworkServiceAssociationResponse>
    getServiceNetworkServiceAssociation({
  required String serviceNetworkServiceAssociationIdentifier,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri:
        '/servicenetworkserviceassociations/${Uri.encodeComponent(serviceNetworkServiceAssociationIdentifier)}',
    exceptionFnMap: _exceptionFns,
  );
  return GetServiceNetworkServiceAssociationResponse.fromJson(response);
}