/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace Lightsail { namespace Model { class AWS_LIGHTSAIL_API AttachLoadBalancerTlsCertificateResult { public: AttachLoadBalancerTlsCertificateResult(); AttachLoadBalancerTlsCertificateResult(const Aws::AmazonWebServiceResult& result); AttachLoadBalancerTlsCertificateResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

An array of objects that describe the result of the action, such as the * status of the request, the timestamp of the request, and the resources affected * by the request.

These SSL/TLS certificates are only usable by Lightsail * load balancers. You can't get the certificate and use it for another * purpose.

*/ inline const Aws::Vector& GetOperations() const{ return m_operations; } /** *

An array of objects that describe the result of the action, such as the * status of the request, the timestamp of the request, and the resources affected * by the request.

These SSL/TLS certificates are only usable by Lightsail * load balancers. You can't get the certificate and use it for another * purpose.

*/ inline void SetOperations(const Aws::Vector& value) { m_operations = value; } /** *

An array of objects that describe the result of the action, such as the * status of the request, the timestamp of the request, and the resources affected * by the request.

These SSL/TLS certificates are only usable by Lightsail * load balancers. You can't get the certificate and use it for another * purpose.

*/ inline void SetOperations(Aws::Vector&& value) { m_operations = std::move(value); } /** *

An array of objects that describe the result of the action, such as the * status of the request, the timestamp of the request, and the resources affected * by the request.

These SSL/TLS certificates are only usable by Lightsail * load balancers. You can't get the certificate and use it for another * purpose.

*/ inline AttachLoadBalancerTlsCertificateResult& WithOperations(const Aws::Vector& value) { SetOperations(value); return *this;} /** *

An array of objects that describe the result of the action, such as the * status of the request, the timestamp of the request, and the resources affected * by the request.

These SSL/TLS certificates are only usable by Lightsail * load balancers. You can't get the certificate and use it for another * purpose.

*/ inline AttachLoadBalancerTlsCertificateResult& WithOperations(Aws::Vector&& value) { SetOperations(std::move(value)); return *this;} /** *

An array of objects that describe the result of the action, such as the * status of the request, the timestamp of the request, and the resources affected * by the request.

These SSL/TLS certificates are only usable by Lightsail * load balancers. You can't get the certificate and use it for another * purpose.

*/ inline AttachLoadBalancerTlsCertificateResult& AddOperations(const Operation& value) { m_operations.push_back(value); return *this; } /** *

An array of objects that describe the result of the action, such as the * status of the request, the timestamp of the request, and the resources affected * by the request.

These SSL/TLS certificates are only usable by Lightsail * load balancers. You can't get the certificate and use it for another * purpose.

*/ inline AttachLoadBalancerTlsCertificateResult& AddOperations(Operation&& value) { m_operations.push_back(std::move(value)); return *this; } private: Aws::Vector m_operations; }; } // namespace Model } // namespace Lightsail } // namespace Aws