/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include
#include
#include
#include
#include
#include
namespace Aws
{
namespace GuardDuty
{
/**
* Amazon GuardDuty is a continuous security monitoring service that analyzes
* and processes the following data sources: VPC flow logs, Amazon Web Services
* CloudTrail management event logs, CloudTrail S3 data event logs, EKS audit logs,
* DNS logs, and Amazon EBS volume data. It uses threat intelligence feeds, such as
* lists of malicious IPs and domains, and machine learning to identify unexpected,
* potentially unauthorized, and malicious activity within your Amazon Web Services
* environment. This can include issues like escalations of privileges, uses of
* exposed credentials, or communication with malicious IPs, domains, or presence
* of malware on your Amazon EC2 instances and container workloads. For example,
* GuardDuty can detect compromised EC2 instances and container workloads serving
* malware, or mining bitcoin.
GuardDuty also monitors Amazon Web Services
* account access behavior for signs of compromise, such as unauthorized
* infrastructure deployments like EC2 instances deployed in a Region that has
* never been used, or unusual API calls like a password policy change to reduce
* password strength.
GuardDuty informs you about the status of your Amazon
* Web Services environment by producing security findings that you can view in the
* GuardDuty console or through Amazon EventBridge. For more information, see the
* Amazon
* GuardDuty User Guide .
*/
class AWS_GUARDDUTY_API GuardDutyClient : public Aws::Client::AWSJsonClient, public Aws::Client::ClientWithAsyncTemplateMethods
{
public:
typedef Aws::Client::AWSJsonClient BASECLASS;
static const char* SERVICE_NAME;
static const char* ALLOCATION_TAG;
typedef GuardDutyClientConfiguration ClientConfigurationType;
typedef GuardDutyEndpointProvider EndpointProviderType;
/**
* Initializes client to use DefaultCredentialProviderChain, with default http client factory, and optional client config. If client config
* is not specified, it will be initialized to default values.
*/
GuardDutyClient(const Aws::GuardDuty::GuardDutyClientConfiguration& clientConfiguration = Aws::GuardDuty::GuardDutyClientConfiguration(),
std::shared_ptr endpointProvider = Aws::MakeShared(ALLOCATION_TAG));
/**
* Initializes client to use SimpleAWSCredentialsProvider, with default http client factory, and optional client config. If client config
* is not specified, it will be initialized to default values.
*/
GuardDutyClient(const Aws::Auth::AWSCredentials& credentials,
std::shared_ptr endpointProvider = Aws::MakeShared(ALLOCATION_TAG),
const Aws::GuardDuty::GuardDutyClientConfiguration& clientConfiguration = Aws::GuardDuty::GuardDutyClientConfiguration());
/**
* Initializes client to use specified credentials provider with specified client config. If http client factory is not supplied,
* the default http client factory will be used
*/
GuardDutyClient(const std::shared_ptr& credentialsProvider,
std::shared_ptr endpointProvider = Aws::MakeShared(ALLOCATION_TAG),
const Aws::GuardDuty::GuardDutyClientConfiguration& clientConfiguration = Aws::GuardDuty::GuardDutyClientConfiguration());
/* Legacy constructors due deprecation */
/**
* Initializes client to use DefaultCredentialProviderChain, with default http client factory, and optional client config. If client config
* is not specified, it will be initialized to default values.
*/
GuardDutyClient(const Aws::Client::ClientConfiguration& clientConfiguration);
/**
* Initializes client to use SimpleAWSCredentialsProvider, with default http client factory, and optional client config. If client config
* is not specified, it will be initialized to default values.
*/
GuardDutyClient(const Aws::Auth::AWSCredentials& credentials,
const Aws::Client::ClientConfiguration& clientConfiguration);
/**
* Initializes client to use specified credentials provider with specified client config. If http client factory is not supplied,
* the default http client factory will be used
*/
GuardDutyClient(const std::shared_ptr& credentialsProvider,
const Aws::Client::ClientConfiguration& clientConfiguration);
/* End of legacy constructors due deprecation */
virtual ~GuardDutyClient();
/**
* Accepts the invitation to be a member account and get monitored by a
* GuardDuty administrator account that sent the invitation.
See
* Also:
AWS
* API Reference
*/
virtual Model::AcceptAdministratorInvitationOutcome AcceptAdministratorInvitation(const Model::AcceptAdministratorInvitationRequest& request) const;
/**
* A Callable wrapper for AcceptAdministratorInvitation that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::AcceptAdministratorInvitationOutcomeCallable AcceptAdministratorInvitationCallable(const AcceptAdministratorInvitationRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::AcceptAdministratorInvitation, request);
}
/**
* An Async wrapper for AcceptAdministratorInvitation that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void AcceptAdministratorInvitationAsync(const AcceptAdministratorInvitationRequestT& request, const AcceptAdministratorInvitationResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::AcceptAdministratorInvitation, request, handler, context);
}
/**
* Archives GuardDuty findings that are specified by the list of finding
* IDs.
Only the administrator account can archive findings. Member
* accounts don't have permission to archive findings from their accounts.
* See Also:
AWS
* API Reference
*/
virtual Model::ArchiveFindingsOutcome ArchiveFindings(const Model::ArchiveFindingsRequest& request) const;
/**
* A Callable wrapper for ArchiveFindings that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::ArchiveFindingsOutcomeCallable ArchiveFindingsCallable(const ArchiveFindingsRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::ArchiveFindings, request);
}
/**
* An Async wrapper for ArchiveFindings that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void ArchiveFindingsAsync(const ArchiveFindingsRequestT& request, const ArchiveFindingsResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::ArchiveFindings, request, handler, context);
}
/**
* Creates a single Amazon GuardDuty detector. A detector is a resource that
* represents the GuardDuty service. To start using GuardDuty, you must create a
* detector in each Region where you enable the service. You can have only one
* detector per account per Region. All data sources are enabled in a new detector
* by default.
There might be regional differences because some data sources
* might not be available in all the Amazon Web Services Regions where GuardDuty is
* presently supported. For more information, see Regions
* and endpoints.
See Also:
AWS
* API Reference
*/
virtual Model::CreateDetectorOutcome CreateDetector(const Model::CreateDetectorRequest& request) const;
/**
* A Callable wrapper for CreateDetector that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::CreateDetectorOutcomeCallable CreateDetectorCallable(const CreateDetectorRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::CreateDetector, request);
}
/**
* An Async wrapper for CreateDetector that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void CreateDetectorAsync(const CreateDetectorRequestT& request, const CreateDetectorResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::CreateDetector, request, handler, context);
}
/**
* Creates a filter using the specified finding criteria. The maximum number of
* saved filters per Amazon Web Services account per Region is 100. For more
* information, see Quotas
* for GuardDuty.
See Also:
AWS
* API Reference
*/
virtual Model::CreateFilterOutcome CreateFilter(const Model::CreateFilterRequest& request) const;
/**
* A Callable wrapper for CreateFilter that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::CreateFilterOutcomeCallable CreateFilterCallable(const CreateFilterRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::CreateFilter, request);
}
/**
* An Async wrapper for CreateFilter that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void CreateFilterAsync(const CreateFilterRequestT& request, const CreateFilterResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::CreateFilter, request, handler, context);
}
/**
* Creates a new IPSet, which is called a trusted IP list in the console user
* interface. An IPSet is a list of IP addresses that are trusted for secure
* communication with Amazon Web Services infrastructure and applications.
* GuardDuty doesn't generate findings for IP addresses that are included in
* IPSets. Only users from the administrator account can use this
* operation.
See Also:
AWS
* API Reference
*/
virtual Model::CreateIPSetOutcome CreateIPSet(const Model::CreateIPSetRequest& request) const;
/**
* A Callable wrapper for CreateIPSet that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::CreateIPSetOutcomeCallable CreateIPSetCallable(const CreateIPSetRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::CreateIPSet, request);
}
/**
* An Async wrapper for CreateIPSet that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void CreateIPSetAsync(const CreateIPSetRequestT& request, const CreateIPSetResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::CreateIPSet, request, handler, context);
}
/**
* Creates member accounts of the current Amazon Web Services account by
* specifying a list of Amazon Web Services account IDs. This step is a
* prerequisite for managing the associated member accounts either by invitation or
* through an organization.
As a delegated administrator, using
* CreateMembers
will enable GuardDuty in the added member accounts,
* with the exception of the organization delegated administrator account. A
* delegated administrator must enable GuardDuty prior to being added as a
* member.
If you are adding accounts by invitation, before using InviteMembers,
* use CreateMembers
after GuardDuty has been enabled in potential
* member accounts.
If you disassociate a member from a GuardDuty delegated
* administrator, the member account details obtained from this API, including the
* associated email addresses, will be retained. This is done so that the delegated
* administrator can invoke the InviteMembers
* API without the need to invoke the CreateMembers API again. To remove the
* details associated with a member account, the delegated administrator must
* invoke the DeleteMembers
* API.
See Also:
AWS
* API Reference
*/
virtual Model::CreateMembersOutcome CreateMembers(const Model::CreateMembersRequest& request) const;
/**
* A Callable wrapper for CreateMembers that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::CreateMembersOutcomeCallable CreateMembersCallable(const CreateMembersRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::CreateMembers, request);
}
/**
* An Async wrapper for CreateMembers that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void CreateMembersAsync(const CreateMembersRequestT& request, const CreateMembersResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::CreateMembers, request, handler, context);
}
/**
* Creates a publishing destination to export findings to. The resource to
* export findings to must exist before you use this operation.
See
* Also:
AWS
* API Reference
*/
virtual Model::CreatePublishingDestinationOutcome CreatePublishingDestination(const Model::CreatePublishingDestinationRequest& request) const;
/**
* A Callable wrapper for CreatePublishingDestination that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::CreatePublishingDestinationOutcomeCallable CreatePublishingDestinationCallable(const CreatePublishingDestinationRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::CreatePublishingDestination, request);
}
/**
* An Async wrapper for CreatePublishingDestination that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void CreatePublishingDestinationAsync(const CreatePublishingDestinationRequestT& request, const CreatePublishingDestinationResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::CreatePublishingDestination, request, handler, context);
}
/**
* Generates sample findings of types specified by the list of finding types. If
* 'NULL' is specified for findingTypes
, the API generates sample
* findings of all supported finding types.
See Also:
AWS
* API Reference
*/
virtual Model::CreateSampleFindingsOutcome CreateSampleFindings(const Model::CreateSampleFindingsRequest& request) const;
/**
* A Callable wrapper for CreateSampleFindings that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::CreateSampleFindingsOutcomeCallable CreateSampleFindingsCallable(const CreateSampleFindingsRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::CreateSampleFindings, request);
}
/**
* An Async wrapper for CreateSampleFindings that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void CreateSampleFindingsAsync(const CreateSampleFindingsRequestT& request, const CreateSampleFindingsResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::CreateSampleFindings, request, handler, context);
}
/**
* Creates a new ThreatIntelSet. ThreatIntelSets consist of known malicious IP
* addresses. GuardDuty generates findings based on ThreatIntelSets. Only users of
* the administrator account can use this operation.
See Also:
AWS
* API Reference
*/
virtual Model::CreateThreatIntelSetOutcome CreateThreatIntelSet(const Model::CreateThreatIntelSetRequest& request) const;
/**
* A Callable wrapper for CreateThreatIntelSet that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::CreateThreatIntelSetOutcomeCallable CreateThreatIntelSetCallable(const CreateThreatIntelSetRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::CreateThreatIntelSet, request);
}
/**
* An Async wrapper for CreateThreatIntelSet that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void CreateThreatIntelSetAsync(const CreateThreatIntelSetRequestT& request, const CreateThreatIntelSetResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::CreateThreatIntelSet, request, handler, context);
}
/**
* Declines invitations sent to the current member account by Amazon Web
* Services accounts specified by their account IDs.
See Also:
AWS
* API Reference
*/
virtual Model::DeclineInvitationsOutcome DeclineInvitations(const Model::DeclineInvitationsRequest& request) const;
/**
* A Callable wrapper for DeclineInvitations that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::DeclineInvitationsOutcomeCallable DeclineInvitationsCallable(const DeclineInvitationsRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::DeclineInvitations, request);
}
/**
* An Async wrapper for DeclineInvitations that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void DeclineInvitationsAsync(const DeclineInvitationsRequestT& request, const DeclineInvitationsResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::DeclineInvitations, request, handler, context);
}
/**
* Deletes an Amazon GuardDuty detector that is specified by the detector
* ID.
See Also:
AWS
* API Reference
*/
virtual Model::DeleteDetectorOutcome DeleteDetector(const Model::DeleteDetectorRequest& request) const;
/**
* A Callable wrapper for DeleteDetector that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::DeleteDetectorOutcomeCallable DeleteDetectorCallable(const DeleteDetectorRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::DeleteDetector, request);
}
/**
* An Async wrapper for DeleteDetector that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void DeleteDetectorAsync(const DeleteDetectorRequestT& request, const DeleteDetectorResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::DeleteDetector, request, handler, context);
}
/**
* Deletes the filter specified by the filter name.
See Also:
* AWS
* API Reference
*/
virtual Model::DeleteFilterOutcome DeleteFilter(const Model::DeleteFilterRequest& request) const;
/**
* A Callable wrapper for DeleteFilter that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::DeleteFilterOutcomeCallable DeleteFilterCallable(const DeleteFilterRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::DeleteFilter, request);
}
/**
* An Async wrapper for DeleteFilter that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void DeleteFilterAsync(const DeleteFilterRequestT& request, const DeleteFilterResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::DeleteFilter, request, handler, context);
}
/**
* Deletes the IPSet specified by the ipSetId
. IPSets are called
* trusted IP lists in the console user interface.
See Also:
AWS
* API Reference
*/
virtual Model::DeleteIPSetOutcome DeleteIPSet(const Model::DeleteIPSetRequest& request) const;
/**
* A Callable wrapper for DeleteIPSet that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::DeleteIPSetOutcomeCallable DeleteIPSetCallable(const DeleteIPSetRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::DeleteIPSet, request);
}
/**
* An Async wrapper for DeleteIPSet that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void DeleteIPSetAsync(const DeleteIPSetRequestT& request, const DeleteIPSetResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::DeleteIPSet, request, handler, context);
}
/**
* Deletes invitations sent to the current member account by Amazon Web Services
* accounts specified by their account IDs.
See Also:
AWS
* API Reference
*/
virtual Model::DeleteInvitationsOutcome DeleteInvitations(const Model::DeleteInvitationsRequest& request) const;
/**
* A Callable wrapper for DeleteInvitations that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::DeleteInvitationsOutcomeCallable DeleteInvitationsCallable(const DeleteInvitationsRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::DeleteInvitations, request);
}
/**
* An Async wrapper for DeleteInvitations that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void DeleteInvitationsAsync(const DeleteInvitationsRequestT& request, const DeleteInvitationsResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::DeleteInvitations, request, handler, context);
}
/**
* Deletes GuardDuty member accounts (to the current GuardDuty administrator
* account) specified by the account IDs.
With
* autoEnableOrganizationMembers
configuration for your organization
* set to ALL
, you'll receive an error if you attempt to disable
* GuardDuty for a member account in your organization.
See Also:
* AWS
* API Reference
*/
virtual Model::DeleteMembersOutcome DeleteMembers(const Model::DeleteMembersRequest& request) const;
/**
* A Callable wrapper for DeleteMembers that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::DeleteMembersOutcomeCallable DeleteMembersCallable(const DeleteMembersRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::DeleteMembers, request);
}
/**
* An Async wrapper for DeleteMembers that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void DeleteMembersAsync(const DeleteMembersRequestT& request, const DeleteMembersResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::DeleteMembers, request, handler, context);
}
/**
* Deletes the publishing definition with the specified
* destinationId
.
See Also:
AWS
* API Reference
*/
virtual Model::DeletePublishingDestinationOutcome DeletePublishingDestination(const Model::DeletePublishingDestinationRequest& request) const;
/**
* A Callable wrapper for DeletePublishingDestination that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::DeletePublishingDestinationOutcomeCallable DeletePublishingDestinationCallable(const DeletePublishingDestinationRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::DeletePublishingDestination, request);
}
/**
* An Async wrapper for DeletePublishingDestination that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void DeletePublishingDestinationAsync(const DeletePublishingDestinationRequestT& request, const DeletePublishingDestinationResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::DeletePublishingDestination, request, handler, context);
}
/**
* Deletes the ThreatIntelSet specified by the ThreatIntelSet ID.
See
* Also:
AWS
* API Reference
*/
virtual Model::DeleteThreatIntelSetOutcome DeleteThreatIntelSet(const Model::DeleteThreatIntelSetRequest& request) const;
/**
* A Callable wrapper for DeleteThreatIntelSet that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::DeleteThreatIntelSetOutcomeCallable DeleteThreatIntelSetCallable(const DeleteThreatIntelSetRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::DeleteThreatIntelSet, request);
}
/**
* An Async wrapper for DeleteThreatIntelSet that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void DeleteThreatIntelSetAsync(const DeleteThreatIntelSetRequestT& request, const DeleteThreatIntelSetResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::DeleteThreatIntelSet, request, handler, context);
}
/**
* Returns a list of malware scans. Each member account can view the malware
* scans for their own accounts. An administrator can view the malware scans for
* all the member accounts.
There might be regional differences because some
* data sources might not be available in all the Amazon Web Services Regions where
* GuardDuty is presently supported. For more information, see Regions
* and endpoints.
See Also:
AWS
* API Reference
*/
virtual Model::DescribeMalwareScansOutcome DescribeMalwareScans(const Model::DescribeMalwareScansRequest& request) const;
/**
* A Callable wrapper for DescribeMalwareScans that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::DescribeMalwareScansOutcomeCallable DescribeMalwareScansCallable(const DescribeMalwareScansRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::DescribeMalwareScans, request);
}
/**
* An Async wrapper for DescribeMalwareScans that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void DescribeMalwareScansAsync(const DescribeMalwareScansRequestT& request, const DescribeMalwareScansResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::DescribeMalwareScans, request, handler, context);
}
/**
* Returns information about the account selected as the delegated administrator
* for GuardDuty.
There might be regional differences because some data
* sources might not be available in all the Amazon Web Services Regions where
* GuardDuty is presently supported. For more information, see Regions
* and endpoints.
See Also:
AWS
* API Reference
*/
virtual Model::DescribeOrganizationConfigurationOutcome DescribeOrganizationConfiguration(const Model::DescribeOrganizationConfigurationRequest& request) const;
/**
* A Callable wrapper for DescribeOrganizationConfiguration that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::DescribeOrganizationConfigurationOutcomeCallable DescribeOrganizationConfigurationCallable(const DescribeOrganizationConfigurationRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::DescribeOrganizationConfiguration, request);
}
/**
* An Async wrapper for DescribeOrganizationConfiguration that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void DescribeOrganizationConfigurationAsync(const DescribeOrganizationConfigurationRequestT& request, const DescribeOrganizationConfigurationResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::DescribeOrganizationConfiguration, request, handler, context);
}
/**
* Returns information about the publishing destination specified by the
* provided destinationId
.
See Also:
AWS
* API Reference
*/
virtual Model::DescribePublishingDestinationOutcome DescribePublishingDestination(const Model::DescribePublishingDestinationRequest& request) const;
/**
* A Callable wrapper for DescribePublishingDestination that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::DescribePublishingDestinationOutcomeCallable DescribePublishingDestinationCallable(const DescribePublishingDestinationRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::DescribePublishingDestination, request);
}
/**
* An Async wrapper for DescribePublishingDestination that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void DescribePublishingDestinationAsync(const DescribePublishingDestinationRequestT& request, const DescribePublishingDestinationResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::DescribePublishingDestination, request, handler, context);
}
/**
* Disables an Amazon Web Services account within the Organization as the
* GuardDuty delegated administrator.
See Also:
AWS
* API Reference
*/
virtual Model::DisableOrganizationAdminAccountOutcome DisableOrganizationAdminAccount(const Model::DisableOrganizationAdminAccountRequest& request) const;
/**
* A Callable wrapper for DisableOrganizationAdminAccount that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::DisableOrganizationAdminAccountOutcomeCallable DisableOrganizationAdminAccountCallable(const DisableOrganizationAdminAccountRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::DisableOrganizationAdminAccount, request);
}
/**
* An Async wrapper for DisableOrganizationAdminAccount that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void DisableOrganizationAdminAccountAsync(const DisableOrganizationAdminAccountRequestT& request, const DisableOrganizationAdminAccountResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::DisableOrganizationAdminAccount, request, handler, context);
}
/**
* Disassociates the current GuardDuty member account from its administrator
* account.
When you disassociate an invited member from a GuardDuty
* delegated administrator, the member account details obtained from the CreateMembers
* API, including the associated email addresses, are retained. This is done so
* that the delegated administrator can invoke the InviteMembers
* API without the need to invoke the CreateMembers API again. To remove the
* details associated with a member account, the delegated administrator must
* invoke the DeleteMembers
* API.
With autoEnableOrganizationMembers
configuration for
* your organization set to ALL
, you'll receive an error if you
* attempt to disable GuardDuty in a member account.
See Also:
AWS
* API Reference
*/
virtual Model::DisassociateFromAdministratorAccountOutcome DisassociateFromAdministratorAccount(const Model::DisassociateFromAdministratorAccountRequest& request) const;
/**
* A Callable wrapper for DisassociateFromAdministratorAccount that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::DisassociateFromAdministratorAccountOutcomeCallable DisassociateFromAdministratorAccountCallable(const DisassociateFromAdministratorAccountRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::DisassociateFromAdministratorAccount, request);
}
/**
* An Async wrapper for DisassociateFromAdministratorAccount that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void DisassociateFromAdministratorAccountAsync(const DisassociateFromAdministratorAccountRequestT& request, const DisassociateFromAdministratorAccountResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::DisassociateFromAdministratorAccount, request, handler, context);
}
/**
* Disassociates GuardDuty member accounts (from the current administrator
* account) specified by the account IDs.
When you disassociate an invited
* member from a GuardDuty delegated administrator, the member account details
* obtained from the CreateMembers
* API, including the associated email addresses, are retained. This is done so
* that the delegated administrator can invoke the InviteMembers
* API without the need to invoke the CreateMembers API again. To remove the
* details associated with a member account, the delegated administrator must
* invoke the DeleteMembers
* API.
With autoEnableOrganizationMembers
configuration for
* your organization set to ALL
, you'll receive an error if you
* attempt to disassociate a member account before removing them from your Amazon
* Web Services organization.
See Also:
AWS
* API Reference
*/
virtual Model::DisassociateMembersOutcome DisassociateMembers(const Model::DisassociateMembersRequest& request) const;
/**
* A Callable wrapper for DisassociateMembers that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::DisassociateMembersOutcomeCallable DisassociateMembersCallable(const DisassociateMembersRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::DisassociateMembers, request);
}
/**
* An Async wrapper for DisassociateMembers that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void DisassociateMembersAsync(const DisassociateMembersRequestT& request, const DisassociateMembersResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::DisassociateMembers, request, handler, context);
}
/**
* Enables an Amazon Web Services account within the organization as the
* GuardDuty delegated administrator.
See Also:
AWS
* API Reference
*/
virtual Model::EnableOrganizationAdminAccountOutcome EnableOrganizationAdminAccount(const Model::EnableOrganizationAdminAccountRequest& request) const;
/**
* A Callable wrapper for EnableOrganizationAdminAccount that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::EnableOrganizationAdminAccountOutcomeCallable EnableOrganizationAdminAccountCallable(const EnableOrganizationAdminAccountRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::EnableOrganizationAdminAccount, request);
}
/**
* An Async wrapper for EnableOrganizationAdminAccount that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void EnableOrganizationAdminAccountAsync(const EnableOrganizationAdminAccountRequestT& request, const EnableOrganizationAdminAccountResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::EnableOrganizationAdminAccount, request, handler, context);
}
/**
* Provides the details for the GuardDuty administrator account associated with
* the current GuardDuty member account.
See Also:
AWS
* API Reference
*/
virtual Model::GetAdministratorAccountOutcome GetAdministratorAccount(const Model::GetAdministratorAccountRequest& request) const;
/**
* A Callable wrapper for GetAdministratorAccount that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::GetAdministratorAccountOutcomeCallable GetAdministratorAccountCallable(const GetAdministratorAccountRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::GetAdministratorAccount, request);
}
/**
* An Async wrapper for GetAdministratorAccount that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void GetAdministratorAccountAsync(const GetAdministratorAccountRequestT& request, const GetAdministratorAccountResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::GetAdministratorAccount, request, handler, context);
}
/**
* Retrieves aggregated statistics for your account. If you are a GuardDuty
* administrator, you can retrieve the statistics for all the resources associated
* with the active member accounts in your organization who have enabled EKS
* Runtime Monitoring and have the GuardDuty agent running on their EKS
* nodes.
See Also:
AWS
* API Reference
*/
virtual Model::GetCoverageStatisticsOutcome GetCoverageStatistics(const Model::GetCoverageStatisticsRequest& request) const;
/**
* A Callable wrapper for GetCoverageStatistics that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::GetCoverageStatisticsOutcomeCallable GetCoverageStatisticsCallable(const GetCoverageStatisticsRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::GetCoverageStatistics, request);
}
/**
* An Async wrapper for GetCoverageStatistics that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void GetCoverageStatisticsAsync(const GetCoverageStatisticsRequestT& request, const GetCoverageStatisticsResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::GetCoverageStatistics, request, handler, context);
}
/**
* Retrieves an Amazon GuardDuty detector specified by the detectorId.
* There might be regional differences because some data sources might not be
* available in all the Amazon Web Services Regions where GuardDuty is presently
* supported. For more information, see Regions
* and endpoints.
See Also:
AWS
* API Reference
*/
virtual Model::GetDetectorOutcome GetDetector(const Model::GetDetectorRequest& request) const;
/**
* A Callable wrapper for GetDetector that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::GetDetectorOutcomeCallable GetDetectorCallable(const GetDetectorRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::GetDetector, request);
}
/**
* An Async wrapper for GetDetector that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void GetDetectorAsync(const GetDetectorRequestT& request, const GetDetectorResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::GetDetector, request, handler, context);
}
/**
* Returns the details of the filter specified by the filter name.
See
* Also:
AWS
* API Reference
*/
virtual Model::GetFilterOutcome GetFilter(const Model::GetFilterRequest& request) const;
/**
* A Callable wrapper for GetFilter that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::GetFilterOutcomeCallable GetFilterCallable(const GetFilterRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::GetFilter, request);
}
/**
* An Async wrapper for GetFilter that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void GetFilterAsync(const GetFilterRequestT& request, const GetFilterResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::GetFilter, request, handler, context);
}
/**
* Describes Amazon GuardDuty findings specified by finding IDs.
See
* Also:
AWS
* API Reference
*/
virtual Model::GetFindingsOutcome GetFindings(const Model::GetFindingsRequest& request) const;
/**
* A Callable wrapper for GetFindings that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::GetFindingsOutcomeCallable GetFindingsCallable(const GetFindingsRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::GetFindings, request);
}
/**
* An Async wrapper for GetFindings that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void GetFindingsAsync(const GetFindingsRequestT& request, const GetFindingsResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::GetFindings, request, handler, context);
}
/**
* Lists Amazon GuardDuty findings statistics for the specified detector
* ID.
See Also:
AWS
* API Reference
*/
virtual Model::GetFindingsStatisticsOutcome GetFindingsStatistics(const Model::GetFindingsStatisticsRequest& request) const;
/**
* A Callable wrapper for GetFindingsStatistics that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::GetFindingsStatisticsOutcomeCallable GetFindingsStatisticsCallable(const GetFindingsStatisticsRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::GetFindingsStatistics, request);
}
/**
* An Async wrapper for GetFindingsStatistics that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void GetFindingsStatisticsAsync(const GetFindingsStatisticsRequestT& request, const GetFindingsStatisticsResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::GetFindingsStatistics, request, handler, context);
}
/**
* Retrieves the IPSet specified by the ipSetId
.
See
* Also:
AWS
* API Reference
*/
virtual Model::GetIPSetOutcome GetIPSet(const Model::GetIPSetRequest& request) const;
/**
* A Callable wrapper for GetIPSet that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::GetIPSetOutcomeCallable GetIPSetCallable(const GetIPSetRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::GetIPSet, request);
}
/**
* An Async wrapper for GetIPSet that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void GetIPSetAsync(const GetIPSetRequestT& request, const GetIPSetResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::GetIPSet, request, handler, context);
}
/**
* Returns the count of all GuardDuty membership invitations that were sent to
* the current member account except the currently accepted
* invitation.
See Also:
AWS
* API Reference
*/
virtual Model::GetInvitationsCountOutcome GetInvitationsCount(const Model::GetInvitationsCountRequest& request) const;
/**
* A Callable wrapper for GetInvitationsCount that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::GetInvitationsCountOutcomeCallable GetInvitationsCountCallable(const GetInvitationsCountRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::GetInvitationsCount, request);
}
/**
* An Async wrapper for GetInvitationsCount that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void GetInvitationsCountAsync(const GetInvitationsCountRequestT& request, const GetInvitationsCountResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::GetInvitationsCount, request, handler, context);
}
/**
* Returns the details of the malware scan settings.
There might be
* regional differences because some data sources might not be available in all the
* Amazon Web Services Regions where GuardDuty is presently supported. For more
* information, see Regions
* and endpoints.
See Also:
AWS
* API Reference
*/
virtual Model::GetMalwareScanSettingsOutcome GetMalwareScanSettings(const Model::GetMalwareScanSettingsRequest& request) const;
/**
* A Callable wrapper for GetMalwareScanSettings that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::GetMalwareScanSettingsOutcomeCallable GetMalwareScanSettingsCallable(const GetMalwareScanSettingsRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::GetMalwareScanSettings, request);
}
/**
* An Async wrapper for GetMalwareScanSettings that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void GetMalwareScanSettingsAsync(const GetMalwareScanSettingsRequestT& request, const GetMalwareScanSettingsResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::GetMalwareScanSettings, request, handler, context);
}
/**
* Describes which data sources are enabled for the member account's
* detector.
There might be regional differences because some data sources
* might not be available in all the Amazon Web Services Regions where GuardDuty is
* presently supported. For more information, see Regions
* and endpoints.
See Also:
AWS
* API Reference
*/
virtual Model::GetMemberDetectorsOutcome GetMemberDetectors(const Model::GetMemberDetectorsRequest& request) const;
/**
* A Callable wrapper for GetMemberDetectors that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::GetMemberDetectorsOutcomeCallable GetMemberDetectorsCallable(const GetMemberDetectorsRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::GetMemberDetectors, request);
}
/**
* An Async wrapper for GetMemberDetectors that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void GetMemberDetectorsAsync(const GetMemberDetectorsRequestT& request, const GetMemberDetectorsResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::GetMemberDetectors, request, handler, context);
}
/**
* Retrieves GuardDuty member accounts (of the current GuardDuty administrator
* account) specified by the account IDs.
See Also:
AWS
* API Reference
*/
virtual Model::GetMembersOutcome GetMembers(const Model::GetMembersRequest& request) const;
/**
* A Callable wrapper for GetMembers that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::GetMembersOutcomeCallable GetMembersCallable(const GetMembersRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::GetMembers, request);
}
/**
* An Async wrapper for GetMembers that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void GetMembersAsync(const GetMembersRequestT& request, const GetMembersResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::GetMembers, request, handler, context);
}
/**
* Provides the number of days left for each data source used in the free trial
* period.
See Also:
AWS
* API Reference
*/
virtual Model::GetRemainingFreeTrialDaysOutcome GetRemainingFreeTrialDays(const Model::GetRemainingFreeTrialDaysRequest& request) const;
/**
* A Callable wrapper for GetRemainingFreeTrialDays that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::GetRemainingFreeTrialDaysOutcomeCallable GetRemainingFreeTrialDaysCallable(const GetRemainingFreeTrialDaysRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::GetRemainingFreeTrialDays, request);
}
/**
* An Async wrapper for GetRemainingFreeTrialDays that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void GetRemainingFreeTrialDaysAsync(const GetRemainingFreeTrialDaysRequestT& request, const GetRemainingFreeTrialDaysResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::GetRemainingFreeTrialDays, request, handler, context);
}
/**
* Retrieves the ThreatIntelSet that is specified by the ThreatIntelSet
* ID.
See Also:
AWS
* API Reference
*/
virtual Model::GetThreatIntelSetOutcome GetThreatIntelSet(const Model::GetThreatIntelSetRequest& request) const;
/**
* A Callable wrapper for GetThreatIntelSet that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::GetThreatIntelSetOutcomeCallable GetThreatIntelSetCallable(const GetThreatIntelSetRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::GetThreatIntelSet, request);
}
/**
* An Async wrapper for GetThreatIntelSet that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void GetThreatIntelSetAsync(const GetThreatIntelSetRequestT& request, const GetThreatIntelSetResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::GetThreatIntelSet, request, handler, context);
}
/**
* Lists Amazon GuardDuty usage statistics over the last 30 days for the
* specified detector ID. For newly enabled detectors or data sources, the cost
* returned will include only the usage so far under 30 days. This may differ from
* the cost metrics in the console, which project usage over 30 days to provide a
* monthly cost estimate. For more information, see Understanding
* How Usage Costs are Calculated.
See Also:
AWS
* API Reference
*/
virtual Model::GetUsageStatisticsOutcome GetUsageStatistics(const Model::GetUsageStatisticsRequest& request) const;
/**
* A Callable wrapper for GetUsageStatistics that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::GetUsageStatisticsOutcomeCallable GetUsageStatisticsCallable(const GetUsageStatisticsRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::GetUsageStatistics, request);
}
/**
* An Async wrapper for GetUsageStatistics that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void GetUsageStatisticsAsync(const GetUsageStatisticsRequestT& request, const GetUsageStatisticsResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::GetUsageStatistics, request, handler, context);
}
/**
* Invites Amazon Web Services accounts to become members of an organization
* administered by the Amazon Web Services account that invokes this API. If you
* are using Amazon Web Services Organizations to manager your GuardDuty
* environment, this step is not needed. For more information, see Managing
* accounts with Amazon Web Services Organizations.
To invite Amazon Web
* Services accounts, the first step is to ensure that GuardDuty has been enabled
* in the potential member accounts. You can now invoke this API to add accounts by
* invitation. The invited accounts can either accept or decline the invitation
* from their GuardDuty accounts. Each invited Amazon Web Services account can
* choose to accept the invitation from only one Amazon Web Services account. For
* more information, see Managing
* GuardDuty accounts by invitation.
After the invite has been accepted
* and you choose to disassociate a member account (by using DisassociateMembers)
* from your account, the details of the member account obtained by invoking CreateMembers,
* including the associated email addresses, will be retained. This is done so that
* you can invoke InviteMembers without the need to invoke CreateMembers
* again. To remove the details associated with a member account, you must also
* invoke DeleteMembers.
*
See Also:
AWS
* API Reference
*/
virtual Model::InviteMembersOutcome InviteMembers(const Model::InviteMembersRequest& request) const;
/**
* A Callable wrapper for InviteMembers that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::InviteMembersOutcomeCallable InviteMembersCallable(const InviteMembersRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::InviteMembers, request);
}
/**
* An Async wrapper for InviteMembers that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void InviteMembersAsync(const InviteMembersRequestT& request, const InviteMembersResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::InviteMembers, request, handler, context);
}
/**
* Lists coverage details for your GuardDuty account. If you're a GuardDuty
* administrator, you can retrieve all resources associated with the active member
* accounts in your organization.
Make sure the accounts have EKS Runtime
* Monitoring enabled and GuardDuty agent running on their EKS nodes.
See
* Also:
AWS
* API Reference
*/
virtual Model::ListCoverageOutcome ListCoverage(const Model::ListCoverageRequest& request) const;
/**
* A Callable wrapper for ListCoverage that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::ListCoverageOutcomeCallable ListCoverageCallable(const ListCoverageRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::ListCoverage, request);
}
/**
* An Async wrapper for ListCoverage that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void ListCoverageAsync(const ListCoverageRequestT& request, const ListCoverageResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::ListCoverage, request, handler, context);
}
/**
* Lists detectorIds of all the existing Amazon GuardDuty detector
* resources.
See Also:
AWS
* API Reference
*/
virtual Model::ListDetectorsOutcome ListDetectors(const Model::ListDetectorsRequest& request) const;
/**
* A Callable wrapper for ListDetectors that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::ListDetectorsOutcomeCallable ListDetectorsCallable(const ListDetectorsRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::ListDetectors, request);
}
/**
* An Async wrapper for ListDetectors that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void ListDetectorsAsync(const ListDetectorsRequestT& request, const ListDetectorsResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::ListDetectors, request, handler, context);
}
/**
* Returns a paginated list of the current filters.
See Also:
* AWS
* API Reference
*/
virtual Model::ListFiltersOutcome ListFilters(const Model::ListFiltersRequest& request) const;
/**
* A Callable wrapper for ListFilters that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::ListFiltersOutcomeCallable ListFiltersCallable(const ListFiltersRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::ListFilters, request);
}
/**
* An Async wrapper for ListFilters that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void ListFiltersAsync(const ListFiltersRequestT& request, const ListFiltersResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::ListFilters, request, handler, context);
}
/**
* Lists Amazon GuardDuty findings for the specified detector ID.
See
* Also:
AWS
* API Reference
*/
virtual Model::ListFindingsOutcome ListFindings(const Model::ListFindingsRequest& request) const;
/**
* A Callable wrapper for ListFindings that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::ListFindingsOutcomeCallable ListFindingsCallable(const ListFindingsRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::ListFindings, request);
}
/**
* An Async wrapper for ListFindings that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void ListFindingsAsync(const ListFindingsRequestT& request, const ListFindingsResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::ListFindings, request, handler, context);
}
/**
* Lists the IPSets of the GuardDuty service specified by the detector ID. If
* you use this operation from a member account, the IPSets returned are the IPSets
* from the associated administrator account.
See Also:
AWS
* API Reference
*/
virtual Model::ListIPSetsOutcome ListIPSets(const Model::ListIPSetsRequest& request) const;
/**
* A Callable wrapper for ListIPSets that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::ListIPSetsOutcomeCallable ListIPSetsCallable(const ListIPSetsRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::ListIPSets, request);
}
/**
* An Async wrapper for ListIPSets that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void ListIPSetsAsync(const ListIPSetsRequestT& request, const ListIPSetsResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::ListIPSets, request, handler, context);
}
/**
* Lists all GuardDuty membership invitations that were sent to the current
* Amazon Web Services account.
See Also:
AWS
* API Reference
*/
virtual Model::ListInvitationsOutcome ListInvitations(const Model::ListInvitationsRequest& request) const;
/**
* A Callable wrapper for ListInvitations that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::ListInvitationsOutcomeCallable ListInvitationsCallable(const ListInvitationsRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::ListInvitations, request);
}
/**
* An Async wrapper for ListInvitations that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void ListInvitationsAsync(const ListInvitationsRequestT& request, const ListInvitationsResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::ListInvitations, request, handler, context);
}
/**
* Lists details about all member accounts for the current GuardDuty
* administrator account.
See Also:
AWS
* API Reference
*/
virtual Model::ListMembersOutcome ListMembers(const Model::ListMembersRequest& request) const;
/**
* A Callable wrapper for ListMembers that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::ListMembersOutcomeCallable ListMembersCallable(const ListMembersRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::ListMembers, request);
}
/**
* An Async wrapper for ListMembers that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void ListMembersAsync(const ListMembersRequestT& request, const ListMembersResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::ListMembers, request, handler, context);
}
/**
* Lists the accounts configured as GuardDuty delegated
* administrators.
See Also:
AWS
* API Reference
*/
virtual Model::ListOrganizationAdminAccountsOutcome ListOrganizationAdminAccounts(const Model::ListOrganizationAdminAccountsRequest& request) const;
/**
* A Callable wrapper for ListOrganizationAdminAccounts that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::ListOrganizationAdminAccountsOutcomeCallable ListOrganizationAdminAccountsCallable(const ListOrganizationAdminAccountsRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::ListOrganizationAdminAccounts, request);
}
/**
* An Async wrapper for ListOrganizationAdminAccounts that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void ListOrganizationAdminAccountsAsync(const ListOrganizationAdminAccountsRequestT& request, const ListOrganizationAdminAccountsResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::ListOrganizationAdminAccounts, request, handler, context);
}
/**
* Returns a list of publishing destinations associated with the specified
* detectorId
.
See Also:
AWS
* API Reference
*/
virtual Model::ListPublishingDestinationsOutcome ListPublishingDestinations(const Model::ListPublishingDestinationsRequest& request) const;
/**
* A Callable wrapper for ListPublishingDestinations that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::ListPublishingDestinationsOutcomeCallable ListPublishingDestinationsCallable(const ListPublishingDestinationsRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::ListPublishingDestinations, request);
}
/**
* An Async wrapper for ListPublishingDestinations that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void ListPublishingDestinationsAsync(const ListPublishingDestinationsRequestT& request, const ListPublishingDestinationsResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::ListPublishingDestinations, request, handler, context);
}
/**
* Lists tags for a resource. Tagging is currently supported for detectors,
* finding filters, IP sets, threat intel sets, publishing destination, with a
* limit of 50 tags per resource. When invoked, this operation returns all assigned
* tags for a given resource.
See Also:
AWS
* API Reference
*/
virtual Model::ListTagsForResourceOutcome ListTagsForResource(const Model::ListTagsForResourceRequest& request) const;
/**
* A Callable wrapper for ListTagsForResource that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::ListTagsForResourceOutcomeCallable ListTagsForResourceCallable(const ListTagsForResourceRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::ListTagsForResource, request);
}
/**
* An Async wrapper for ListTagsForResource that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void ListTagsForResourceAsync(const ListTagsForResourceRequestT& request, const ListTagsForResourceResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::ListTagsForResource, request, handler, context);
}
/**
* Lists the ThreatIntelSets of the GuardDuty service specified by the detector
* ID. If you use this operation from a member account, the ThreatIntelSets
* associated with the administrator account are returned.
See Also:
* AWS
* API Reference
*/
virtual Model::ListThreatIntelSetsOutcome ListThreatIntelSets(const Model::ListThreatIntelSetsRequest& request) const;
/**
* A Callable wrapper for ListThreatIntelSets that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::ListThreatIntelSetsOutcomeCallable ListThreatIntelSetsCallable(const ListThreatIntelSetsRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::ListThreatIntelSets, request);
}
/**
* An Async wrapper for ListThreatIntelSets that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void ListThreatIntelSetsAsync(const ListThreatIntelSetsRequestT& request, const ListThreatIntelSetsResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::ListThreatIntelSets, request, handler, context);
}
/**
* Initiates the malware scan. Invoking this API will automatically create the
* Service-linked
* role in the corresponding account.
See Also:
AWS
* API Reference
*/
virtual Model::StartMalwareScanOutcome StartMalwareScan(const Model::StartMalwareScanRequest& request) const;
/**
* A Callable wrapper for StartMalwareScan that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::StartMalwareScanOutcomeCallable StartMalwareScanCallable(const StartMalwareScanRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::StartMalwareScan, request);
}
/**
* An Async wrapper for StartMalwareScan that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void StartMalwareScanAsync(const StartMalwareScanRequestT& request, const StartMalwareScanResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::StartMalwareScan, request, handler, context);
}
/**
* Turns on GuardDuty monitoring of the specified member accounts. Use this
* operation to restart monitoring of accounts that you stopped monitoring with the
* StopMonitoringMembers
* operation.
See Also:
AWS
* API Reference
*/
virtual Model::StartMonitoringMembersOutcome StartMonitoringMembers(const Model::StartMonitoringMembersRequest& request) const;
/**
* A Callable wrapper for StartMonitoringMembers that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::StartMonitoringMembersOutcomeCallable StartMonitoringMembersCallable(const StartMonitoringMembersRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::StartMonitoringMembers, request);
}
/**
* An Async wrapper for StartMonitoringMembers that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void StartMonitoringMembersAsync(const StartMonitoringMembersRequestT& request, const StartMonitoringMembersResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::StartMonitoringMembers, request, handler, context);
}
/**
* Stops GuardDuty monitoring for the specified member accounts. Use the
* StartMonitoringMembers
operation to restart monitoring for those
* accounts.
With autoEnableOrganizationMembers
configuration
* for your organization set to ALL
, you'll receive an error if you
* attempt to stop monitoring the member accounts in your
* organization.
See Also:
AWS
* API Reference
*/
virtual Model::StopMonitoringMembersOutcome StopMonitoringMembers(const Model::StopMonitoringMembersRequest& request) const;
/**
* A Callable wrapper for StopMonitoringMembers that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::StopMonitoringMembersOutcomeCallable StopMonitoringMembersCallable(const StopMonitoringMembersRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::StopMonitoringMembers, request);
}
/**
* An Async wrapper for StopMonitoringMembers that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void StopMonitoringMembersAsync(const StopMonitoringMembersRequestT& request, const StopMonitoringMembersResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::StopMonitoringMembers, request, handler, context);
}
/**
* Adds tags to a resource.
See Also:
AWS
* API Reference
*/
virtual Model::TagResourceOutcome TagResource(const Model::TagResourceRequest& request) const;
/**
* A Callable wrapper for TagResource that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::TagResourceOutcomeCallable TagResourceCallable(const TagResourceRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::TagResource, request);
}
/**
* An Async wrapper for TagResource that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void TagResourceAsync(const TagResourceRequestT& request, const TagResourceResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::TagResource, request, handler, context);
}
/**
* Unarchives GuardDuty findings specified by the
* findingIds
.
See Also:
AWS
* API Reference
*/
virtual Model::UnarchiveFindingsOutcome UnarchiveFindings(const Model::UnarchiveFindingsRequest& request) const;
/**
* A Callable wrapper for UnarchiveFindings that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::UnarchiveFindingsOutcomeCallable UnarchiveFindingsCallable(const UnarchiveFindingsRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::UnarchiveFindings, request);
}
/**
* An Async wrapper for UnarchiveFindings that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void UnarchiveFindingsAsync(const UnarchiveFindingsRequestT& request, const UnarchiveFindingsResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::UnarchiveFindings, request, handler, context);
}
/**
* Removes tags from a resource.
See Also:
AWS
* API Reference
*/
virtual Model::UntagResourceOutcome UntagResource(const Model::UntagResourceRequest& request) const;
/**
* A Callable wrapper for UntagResource that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::UntagResourceOutcomeCallable UntagResourceCallable(const UntagResourceRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::UntagResource, request);
}
/**
* An Async wrapper for UntagResource that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void UntagResourceAsync(const UntagResourceRequestT& request, const UntagResourceResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::UntagResource, request, handler, context);
}
/**
* Updates the Amazon GuardDuty detector specified by the detectorId.
* There might be regional differences because some data sources might not be
* available in all the Amazon Web Services Regions where GuardDuty is presently
* supported. For more information, see Regions
* and endpoints.
See Also:
AWS
* API Reference
*/
virtual Model::UpdateDetectorOutcome UpdateDetector(const Model::UpdateDetectorRequest& request) const;
/**
* A Callable wrapper for UpdateDetector that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::UpdateDetectorOutcomeCallable UpdateDetectorCallable(const UpdateDetectorRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::UpdateDetector, request);
}
/**
* An Async wrapper for UpdateDetector that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void UpdateDetectorAsync(const UpdateDetectorRequestT& request, const UpdateDetectorResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::UpdateDetector, request, handler, context);
}
/**
* Updates the filter specified by the filter name.
See Also:
* AWS
* API Reference
*/
virtual Model::UpdateFilterOutcome UpdateFilter(const Model::UpdateFilterRequest& request) const;
/**
* A Callable wrapper for UpdateFilter that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::UpdateFilterOutcomeCallable UpdateFilterCallable(const UpdateFilterRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::UpdateFilter, request);
}
/**
* An Async wrapper for UpdateFilter that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void UpdateFilterAsync(const UpdateFilterRequestT& request, const UpdateFilterResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::UpdateFilter, request, handler, context);
}
/**
* Marks the specified GuardDuty findings as useful or not useful.
See
* Also:
AWS
* API Reference
*/
virtual Model::UpdateFindingsFeedbackOutcome UpdateFindingsFeedback(const Model::UpdateFindingsFeedbackRequest& request) const;
/**
* A Callable wrapper for UpdateFindingsFeedback that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::UpdateFindingsFeedbackOutcomeCallable UpdateFindingsFeedbackCallable(const UpdateFindingsFeedbackRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::UpdateFindingsFeedback, request);
}
/**
* An Async wrapper for UpdateFindingsFeedback that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void UpdateFindingsFeedbackAsync(const UpdateFindingsFeedbackRequestT& request, const UpdateFindingsFeedbackResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::UpdateFindingsFeedback, request, handler, context);
}
/**
* Updates the IPSet specified by the IPSet ID.
See Also:
AWS
* API Reference
*/
virtual Model::UpdateIPSetOutcome UpdateIPSet(const Model::UpdateIPSetRequest& request) const;
/**
* A Callable wrapper for UpdateIPSet that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::UpdateIPSetOutcomeCallable UpdateIPSetCallable(const UpdateIPSetRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::UpdateIPSet, request);
}
/**
* An Async wrapper for UpdateIPSet that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void UpdateIPSetAsync(const UpdateIPSetRequestT& request, const UpdateIPSetResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::UpdateIPSet, request, handler, context);
}
/**
* Updates the malware scan settings.
There might be regional differences
* because some data sources might not be available in all the Amazon Web Services
* Regions where GuardDuty is presently supported. For more information, see Regions
* and endpoints.
See Also:
AWS
* API Reference
*/
virtual Model::UpdateMalwareScanSettingsOutcome UpdateMalwareScanSettings(const Model::UpdateMalwareScanSettingsRequest& request) const;
/**
* A Callable wrapper for UpdateMalwareScanSettings that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::UpdateMalwareScanSettingsOutcomeCallable UpdateMalwareScanSettingsCallable(const UpdateMalwareScanSettingsRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::UpdateMalwareScanSettings, request);
}
/**
* An Async wrapper for UpdateMalwareScanSettings that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void UpdateMalwareScanSettingsAsync(const UpdateMalwareScanSettingsRequestT& request, const UpdateMalwareScanSettingsResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::UpdateMalwareScanSettings, request, handler, context);
}
/**
* Contains information on member accounts to be updated.
There might be
* regional differences because some data sources might not be available in all the
* Amazon Web Services Regions where GuardDuty is presently supported. For more
* information, see Regions
* and endpoints.
See Also:
AWS
* API Reference
*/
virtual Model::UpdateMemberDetectorsOutcome UpdateMemberDetectors(const Model::UpdateMemberDetectorsRequest& request) const;
/**
* A Callable wrapper for UpdateMemberDetectors that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::UpdateMemberDetectorsOutcomeCallable UpdateMemberDetectorsCallable(const UpdateMemberDetectorsRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::UpdateMemberDetectors, request);
}
/**
* An Async wrapper for UpdateMemberDetectors that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void UpdateMemberDetectorsAsync(const UpdateMemberDetectorsRequestT& request, const UpdateMemberDetectorsResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::UpdateMemberDetectors, request, handler, context);
}
/**
* Configures the delegated administrator account with the provided values. You
* must provide the value for either autoEnableOrganizationMembers
or
* autoEnable
.
There might be regional differences because
* some data sources might not be available in all the Amazon Web Services Regions
* where GuardDuty is presently supported. For more information, see Regions
* and endpoints.
See Also:
AWS
* API Reference
*/
virtual Model::UpdateOrganizationConfigurationOutcome UpdateOrganizationConfiguration(const Model::UpdateOrganizationConfigurationRequest& request) const;
/**
* A Callable wrapper for UpdateOrganizationConfiguration that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::UpdateOrganizationConfigurationOutcomeCallable UpdateOrganizationConfigurationCallable(const UpdateOrganizationConfigurationRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::UpdateOrganizationConfiguration, request);
}
/**
* An Async wrapper for UpdateOrganizationConfiguration that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void UpdateOrganizationConfigurationAsync(const UpdateOrganizationConfigurationRequestT& request, const UpdateOrganizationConfigurationResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::UpdateOrganizationConfiguration, request, handler, context);
}
/**
* Updates information about the publishing destination specified by the
* destinationId
.
See Also:
AWS
* API Reference
*/
virtual Model::UpdatePublishingDestinationOutcome UpdatePublishingDestination(const Model::UpdatePublishingDestinationRequest& request) const;
/**
* A Callable wrapper for UpdatePublishingDestination that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::UpdatePublishingDestinationOutcomeCallable UpdatePublishingDestinationCallable(const UpdatePublishingDestinationRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::UpdatePublishingDestination, request);
}
/**
* An Async wrapper for UpdatePublishingDestination that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void UpdatePublishingDestinationAsync(const UpdatePublishingDestinationRequestT& request, const UpdatePublishingDestinationResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::UpdatePublishingDestination, request, handler, context);
}
/**
* Updates the ThreatIntelSet specified by the ThreatIntelSet ID.
See
* Also:
AWS
* API Reference
*/
virtual Model::UpdateThreatIntelSetOutcome UpdateThreatIntelSet(const Model::UpdateThreatIntelSetRequest& request) const;
/**
* A Callable wrapper for UpdateThreatIntelSet that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::UpdateThreatIntelSetOutcomeCallable UpdateThreatIntelSetCallable(const UpdateThreatIntelSetRequestT& request) const
{
return SubmitCallable(&GuardDutyClient::UpdateThreatIntelSet, request);
}
/**
* An Async wrapper for UpdateThreatIntelSet that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void UpdateThreatIntelSetAsync(const UpdateThreatIntelSetRequestT& request, const UpdateThreatIntelSetResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&GuardDutyClient::UpdateThreatIntelSet, request, handler, context);
}
void OverrideEndpoint(const Aws::String& endpoint);
std::shared_ptr& accessEndpointProvider();
private:
friend class Aws::Client::ClientWithAsyncTemplateMethods;
void init(const GuardDutyClientConfiguration& clientConfiguration);
GuardDutyClientConfiguration m_clientConfiguration;
std::shared_ptr m_executor;
std::shared_ptr m_endpointProvider;
};
} // namespace GuardDuty
} // namespace Aws