/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains the response to a successful CreateLoginProfile request.
* See Also:
AWS
* API Reference
A structure containing the user name and password create date.
*/ inline const LoginProfile& GetLoginProfile() const{ return m_loginProfile; } /** *A structure containing the user name and password create date.
*/ inline void SetLoginProfile(const LoginProfile& value) { m_loginProfile = value; } /** *A structure containing the user name and password create date.
*/ inline void SetLoginProfile(LoginProfile&& value) { m_loginProfile = std::move(value); } /** *A structure containing the user name and password create date.
*/ inline CreateLoginProfileResult& WithLoginProfile(const LoginProfile& value) { SetLoginProfile(value); return *this;} /** *A structure containing the user name and password create date.
*/ inline CreateLoginProfileResult& WithLoginProfile(LoginProfile&& value) { SetLoginProfile(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 CreateLoginProfileResult& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline CreateLoginProfileResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: LoginProfile m_loginProfile; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace IAM } // namespace Aws