getConfiguredTableAssociation method

Future<GetConfiguredTableAssociationOutput> getConfiguredTableAssociation({
  1. required String configuredTableAssociationIdentifier,
  2. required String membershipIdentifier,
})

Retrieves a configured table association.

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

Parameter configuredTableAssociationIdentifier : The unique ID for the configured table association to retrieve. Currently accepts the configured table ID.

Parameter membershipIdentifier : A unique identifier for the membership that the configured table association belongs to. Currently accepts the membership ID.

Implementation

Future<GetConfiguredTableAssociationOutput> getConfiguredTableAssociation({
  required String configuredTableAssociationIdentifier,
  required String membershipIdentifier,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri:
        '/memberships/${Uri.encodeComponent(membershipIdentifier)}/configuredTableAssociations/${Uri.encodeComponent(configuredTableAssociationIdentifier)}',
    exceptionFnMap: _exceptionFns,
  );
  return GetConfiguredTableAssociationOutput.fromJson(response);
}