/** * 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 Xml { class XmlDocument; } // namespace Xml } // namespace Utils namespace IAM { namespace Model { class ResetServiceSpecificCredentialResult { public: AWS_IAM_API ResetServiceSpecificCredentialResult(); AWS_IAM_API ResetServiceSpecificCredentialResult(const Aws::AmazonWebServiceResult& result); AWS_IAM_API ResetServiceSpecificCredentialResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A structure with details about the updated service-specific credential, * including the new password.

This is the only time that * you can access the password. You cannot recover the password later, but you can * reset it again.

*/ inline const ServiceSpecificCredential& GetServiceSpecificCredential() const{ return m_serviceSpecificCredential; } /** *

A structure with details about the updated service-specific credential, * including the new password.

This is the only time that * you can access the password. You cannot recover the password later, but you can * reset it again.

*/ inline void SetServiceSpecificCredential(const ServiceSpecificCredential& value) { m_serviceSpecificCredential = value; } /** *

A structure with details about the updated service-specific credential, * including the new password.

This is the only time that * you can access the password. You cannot recover the password later, but you can * reset it again.

*/ inline void SetServiceSpecificCredential(ServiceSpecificCredential&& value) { m_serviceSpecificCredential = std::move(value); } /** *

A structure with details about the updated service-specific credential, * including the new password.

This is the only time that * you can access the password. You cannot recover the password later, but you can * reset it again.

*/ inline ResetServiceSpecificCredentialResult& WithServiceSpecificCredential(const ServiceSpecificCredential& value) { SetServiceSpecificCredential(value); return *this;} /** *

A structure with details about the updated service-specific credential, * including the new password.

This is the only time that * you can access the password. You cannot recover the password later, but you can * reset it again.

*/ inline ResetServiceSpecificCredentialResult& WithServiceSpecificCredential(ServiceSpecificCredential&& value) { SetServiceSpecificCredential(std::move(value)); return *this;} inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; } inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; } inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); } inline ResetServiceSpecificCredentialResult& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline ResetServiceSpecificCredentialResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: ServiceSpecificCredential m_serviceSpecificCredential; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace IAM } // namespace Aws