/** * 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 LicenseManagerUserSubscriptions { namespace Model { class RegisterIdentityProviderResult { public: AWS_LICENSEMANAGERUSERSUBSCRIPTIONS_API RegisterIdentityProviderResult(); AWS_LICENSEMANAGERUSERSUBSCRIPTIONS_API RegisterIdentityProviderResult(const Aws::AmazonWebServiceResult& result); AWS_LICENSEMANAGERUSERSUBSCRIPTIONS_API RegisterIdentityProviderResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Metadata that describes the results of an identity provider operation.

*/ inline const IdentityProviderSummary& GetIdentityProviderSummary() const{ return m_identityProviderSummary; } /** *

Metadata that describes the results of an identity provider operation.

*/ inline void SetIdentityProviderSummary(const IdentityProviderSummary& value) { m_identityProviderSummary = value; } /** *

Metadata that describes the results of an identity provider operation.

*/ inline void SetIdentityProviderSummary(IdentityProviderSummary&& value) { m_identityProviderSummary = std::move(value); } /** *

Metadata that describes the results of an identity provider operation.

*/ inline RegisterIdentityProviderResult& WithIdentityProviderSummary(const IdentityProviderSummary& value) { SetIdentityProviderSummary(value); return *this;} /** *

Metadata that describes the results of an identity provider operation.

*/ inline RegisterIdentityProviderResult& WithIdentityProviderSummary(IdentityProviderSummary&& value) { SetIdentityProviderSummary(std::move(value)); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline RegisterIdentityProviderResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline RegisterIdentityProviderResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline RegisterIdentityProviderResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: IdentityProviderSummary m_identityProviderSummary; Aws::String m_requestId; }; } // namespace Model } // namespace LicenseManagerUserSubscriptions } // namespace Aws