/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace SES { namespace Model { /** *

Represents a request to return the Amazon SES verification status of a list * of identities. For domain identities, this request also returns the verification * token. For information about verifying identities with Amazon SES, see the Amazon * SES Developer Guide.

See Also:

AWS * API Reference

*/ class GetIdentityVerificationAttributesRequest : public SESRequest { public: AWS_SES_API GetIdentityVerificationAttributesRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "GetIdentityVerificationAttributes"; } AWS_SES_API Aws::String SerializePayload() const override; protected: AWS_SES_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override; public: /** *

A list of identities.

*/ inline const Aws::Vector& GetIdentities() const{ return m_identities; } /** *

A list of identities.

*/ inline bool IdentitiesHasBeenSet() const { return m_identitiesHasBeenSet; } /** *

A list of identities.

*/ inline void SetIdentities(const Aws::Vector& value) { m_identitiesHasBeenSet = true; m_identities = value; } /** *

A list of identities.

*/ inline void SetIdentities(Aws::Vector&& value) { m_identitiesHasBeenSet = true; m_identities = std::move(value); } /** *

A list of identities.

*/ inline GetIdentityVerificationAttributesRequest& WithIdentities(const Aws::Vector& value) { SetIdentities(value); return *this;} /** *

A list of identities.

*/ inline GetIdentityVerificationAttributesRequest& WithIdentities(Aws::Vector&& value) { SetIdentities(std::move(value)); return *this;} /** *

A list of identities.

*/ inline GetIdentityVerificationAttributesRequest& AddIdentities(const Aws::String& value) { m_identitiesHasBeenSet = true; m_identities.push_back(value); return *this; } /** *

A list of identities.

*/ inline GetIdentityVerificationAttributesRequest& AddIdentities(Aws::String&& value) { m_identitiesHasBeenSet = true; m_identities.push_back(std::move(value)); return *this; } /** *

A list of identities.

*/ inline GetIdentityVerificationAttributesRequest& AddIdentities(const char* value) { m_identitiesHasBeenSet = true; m_identities.push_back(value); return *this; } private: Aws::Vector m_identities; bool m_identitiesHasBeenSet = false; }; } // namespace Model } // namespace SES } // namespace Aws