/** * 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 { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace DataSync { namespace Model { /** *

DescribeLocationEfsResponse

See Also:

AWS * API Reference

*/ class AWS_DATASYNC_API DescribeLocationEfsResult { public: DescribeLocationEfsResult(); DescribeLocationEfsResult(const Aws::AmazonWebServiceResult& result); DescribeLocationEfsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The Amazon Resource Name (ARN) of the EFS location that was described.

*/ inline const Aws::String& GetLocationArn() const{ return m_locationArn; } /** *

The Amazon Resource Name (ARN) of the EFS location that was described.

*/ inline void SetLocationArn(const Aws::String& value) { m_locationArn = value; } /** *

The Amazon Resource Name (ARN) of the EFS location that was described.

*/ inline void SetLocationArn(Aws::String&& value) { m_locationArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the EFS location that was described.

*/ inline void SetLocationArn(const char* value) { m_locationArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the EFS location that was described.

*/ inline DescribeLocationEfsResult& WithLocationArn(const Aws::String& value) { SetLocationArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the EFS location that was described.

*/ inline DescribeLocationEfsResult& WithLocationArn(Aws::String&& value) { SetLocationArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the EFS location that was described.

*/ inline DescribeLocationEfsResult& WithLocationArn(const char* value) { SetLocationArn(value); return *this;} /** *

The URL of the EFS location that was described.

*/ inline const Aws::String& GetLocationUri() const{ return m_locationUri; } /** *

The URL of the EFS location that was described.

*/ inline void SetLocationUri(const Aws::String& value) { m_locationUri = value; } /** *

The URL of the EFS location that was described.

*/ inline void SetLocationUri(Aws::String&& value) { m_locationUri = std::move(value); } /** *

The URL of the EFS location that was described.

*/ inline void SetLocationUri(const char* value) { m_locationUri.assign(value); } /** *

The URL of the EFS location that was described.

*/ inline DescribeLocationEfsResult& WithLocationUri(const Aws::String& value) { SetLocationUri(value); return *this;} /** *

The URL of the EFS location that was described.

*/ inline DescribeLocationEfsResult& WithLocationUri(Aws::String&& value) { SetLocationUri(std::move(value)); return *this;} /** *

The URL of the EFS location that was described.

*/ inline DescribeLocationEfsResult& WithLocationUri(const char* value) { SetLocationUri(value); return *this;} inline const Ec2Config& GetEc2Config() const{ return m_ec2Config; } inline void SetEc2Config(const Ec2Config& value) { m_ec2Config = value; } inline void SetEc2Config(Ec2Config&& value) { m_ec2Config = std::move(value); } inline DescribeLocationEfsResult& WithEc2Config(const Ec2Config& value) { SetEc2Config(value); return *this;} inline DescribeLocationEfsResult& WithEc2Config(Ec2Config&& value) { SetEc2Config(std::move(value)); return *this;} /** *

The time that the EFS location was created.

*/ inline const Aws::Utils::DateTime& GetCreationTime() const{ return m_creationTime; } /** *

The time that the EFS location was created.

*/ inline void SetCreationTime(const Aws::Utils::DateTime& value) { m_creationTime = value; } /** *

The time that the EFS location was created.

*/ inline void SetCreationTime(Aws::Utils::DateTime&& value) { m_creationTime = std::move(value); } /** *

The time that the EFS location was created.

*/ inline DescribeLocationEfsResult& WithCreationTime(const Aws::Utils::DateTime& value) { SetCreationTime(value); return *this;} /** *

The time that the EFS location was created.

*/ inline DescribeLocationEfsResult& WithCreationTime(Aws::Utils::DateTime&& value) { SetCreationTime(std::move(value)); return *this;} private: Aws::String m_locationArn; Aws::String m_locationUri; Ec2Config m_ec2Config; Aws::Utils::DateTime m_creationTime; }; } // namespace Model } // namespace DataSync } // namespace Aws