This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-guardduty/include/aws/guardduty/model/AwsApiCallAction.h

247 lines
7.3 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/guardduty/GuardDuty_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/guardduty/model/DomainDetails.h>
#include <aws/guardduty/model/RemoteIpDetails.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace GuardDuty
{
namespace Model
{
/**
* <p>Contains information about the API operation.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/AwsApiCallAction">AWS
* API Reference</a></p>
*/
class AWS_GUARDDUTY_API AwsApiCallAction
{
public:
AwsApiCallAction();
AwsApiCallAction(Aws::Utils::Json::JsonView jsonValue);
AwsApiCallAction& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>The AWS API name.</p>
*/
inline const Aws::String& GetApi() const{ return m_api; }
/**
* <p>The AWS API name.</p>
*/
inline bool ApiHasBeenSet() const { return m_apiHasBeenSet; }
/**
* <p>The AWS API name.</p>
*/
inline void SetApi(const Aws::String& value) { m_apiHasBeenSet = true; m_api = value; }
/**
* <p>The AWS API name.</p>
*/
inline void SetApi(Aws::String&& value) { m_apiHasBeenSet = true; m_api = std::move(value); }
/**
* <p>The AWS API name.</p>
*/
inline void SetApi(const char* value) { m_apiHasBeenSet = true; m_api.assign(value); }
/**
* <p>The AWS API name.</p>
*/
inline AwsApiCallAction& WithApi(const Aws::String& value) { SetApi(value); return *this;}
/**
* <p>The AWS API name.</p>
*/
inline AwsApiCallAction& WithApi(Aws::String&& value) { SetApi(std::move(value)); return *this;}
/**
* <p>The AWS API name.</p>
*/
inline AwsApiCallAction& WithApi(const char* value) { SetApi(value); return *this;}
/**
* <p>The AWS API caller type.</p>
*/
inline const Aws::String& GetCallerType() const{ return m_callerType; }
/**
* <p>The AWS API caller type.</p>
*/
inline bool CallerTypeHasBeenSet() const { return m_callerTypeHasBeenSet; }
/**
* <p>The AWS API caller type.</p>
*/
inline void SetCallerType(const Aws::String& value) { m_callerTypeHasBeenSet = true; m_callerType = value; }
/**
* <p>The AWS API caller type.</p>
*/
inline void SetCallerType(Aws::String&& value) { m_callerTypeHasBeenSet = true; m_callerType = std::move(value); }
/**
* <p>The AWS API caller type.</p>
*/
inline void SetCallerType(const char* value) { m_callerTypeHasBeenSet = true; m_callerType.assign(value); }
/**
* <p>The AWS API caller type.</p>
*/
inline AwsApiCallAction& WithCallerType(const Aws::String& value) { SetCallerType(value); return *this;}
/**
* <p>The AWS API caller type.</p>
*/
inline AwsApiCallAction& WithCallerType(Aws::String&& value) { SetCallerType(std::move(value)); return *this;}
/**
* <p>The AWS API caller type.</p>
*/
inline AwsApiCallAction& WithCallerType(const char* value) { SetCallerType(value); return *this;}
/**
* <p>The domain information for the AWS API call.</p>
*/
inline const DomainDetails& GetDomainDetails() const{ return m_domainDetails; }
/**
* <p>The domain information for the AWS API call.</p>
*/
inline bool DomainDetailsHasBeenSet() const { return m_domainDetailsHasBeenSet; }
/**
* <p>The domain information for the AWS API call.</p>
*/
inline void SetDomainDetails(const DomainDetails& value) { m_domainDetailsHasBeenSet = true; m_domainDetails = value; }
/**
* <p>The domain information for the AWS API call.</p>
*/
inline void SetDomainDetails(DomainDetails&& value) { m_domainDetailsHasBeenSet = true; m_domainDetails = std::move(value); }
/**
* <p>The domain information for the AWS API call.</p>
*/
inline AwsApiCallAction& WithDomainDetails(const DomainDetails& value) { SetDomainDetails(value); return *this;}
/**
* <p>The domain information for the AWS API call.</p>
*/
inline AwsApiCallAction& WithDomainDetails(DomainDetails&& value) { SetDomainDetails(std::move(value)); return *this;}
/**
* <p>The remote IP information of the connection.</p>
*/
inline const RemoteIpDetails& GetRemoteIpDetails() const{ return m_remoteIpDetails; }
/**
* <p>The remote IP information of the connection.</p>
*/
inline bool RemoteIpDetailsHasBeenSet() const { return m_remoteIpDetailsHasBeenSet; }
/**
* <p>The remote IP information of the connection.</p>
*/
inline void SetRemoteIpDetails(const RemoteIpDetails& value) { m_remoteIpDetailsHasBeenSet = true; m_remoteIpDetails = value; }
/**
* <p>The remote IP information of the connection.</p>
*/
inline void SetRemoteIpDetails(RemoteIpDetails&& value) { m_remoteIpDetailsHasBeenSet = true; m_remoteIpDetails = std::move(value); }
/**
* <p>The remote IP information of the connection.</p>
*/
inline AwsApiCallAction& WithRemoteIpDetails(const RemoteIpDetails& value) { SetRemoteIpDetails(value); return *this;}
/**
* <p>The remote IP information of the connection.</p>
*/
inline AwsApiCallAction& WithRemoteIpDetails(RemoteIpDetails&& value) { SetRemoteIpDetails(std::move(value)); return *this;}
/**
* <p>The AWS service name whose API was invoked.</p>
*/
inline const Aws::String& GetServiceName() const{ return m_serviceName; }
/**
* <p>The AWS service name whose API was invoked.</p>
*/
inline bool ServiceNameHasBeenSet() const { return m_serviceNameHasBeenSet; }
/**
* <p>The AWS service name whose API was invoked.</p>
*/
inline void SetServiceName(const Aws::String& value) { m_serviceNameHasBeenSet = true; m_serviceName = value; }
/**
* <p>The AWS service name whose API was invoked.</p>
*/
inline void SetServiceName(Aws::String&& value) { m_serviceNameHasBeenSet = true; m_serviceName = std::move(value); }
/**
* <p>The AWS service name whose API was invoked.</p>
*/
inline void SetServiceName(const char* value) { m_serviceNameHasBeenSet = true; m_serviceName.assign(value); }
/**
* <p>The AWS service name whose API was invoked.</p>
*/
inline AwsApiCallAction& WithServiceName(const Aws::String& value) { SetServiceName(value); return *this;}
/**
* <p>The AWS service name whose API was invoked.</p>
*/
inline AwsApiCallAction& WithServiceName(Aws::String&& value) { SetServiceName(std::move(value)); return *this;}
/**
* <p>The AWS service name whose API was invoked.</p>
*/
inline AwsApiCallAction& WithServiceName(const char* value) { SetServiceName(value); return *this;}
private:
Aws::String m_api;
bool m_apiHasBeenSet;
Aws::String m_callerType;
bool m_callerTypeHasBeenSet;
DomainDetails m_domainDetails;
bool m_domainDetailsHasBeenSet;
RemoteIpDetails m_remoteIpDetails;
bool m_remoteIpDetailsHasBeenSet;
Aws::String m_serviceName;
bool m_serviceNameHasBeenSet;
};
} // namespace Model
} // namespace GuardDuty
} // namespace Aws