deleteSharedTrustStoreAssociation method

Future<void> deleteSharedTrustStoreAssociation({
  1. required String resourceArn,
  2. required String trustStoreArn,
})

Deletes a shared trust store association.

May throw DeleteAssociationSameAccountException. May throw TrustStoreAssociationNotFoundException. May throw TrustStoreNotFoundException.

Parameter resourceArn : The Amazon Resource Name (ARN) of the resource.

Parameter trustStoreArn : The Amazon Resource Name (ARN) of the trust store.

Implementation

Future<void> deleteSharedTrustStoreAssociation({
  required String resourceArn,
  required String trustStoreArn,
}) async {
  final $request = <String, String>{
    'ResourceArn': resourceArn,
    'TrustStoreArn': trustStoreArn,
  };
  await _protocol.send(
    $request,
    action: 'DeleteSharedTrustStoreAssociation',
    version: '2015-12-01',
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    resultWrapper: 'DeleteSharedTrustStoreAssociationResult',
  );
}