This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-sms/include/aws/sms/model/SSMOutput.h

67 lines
1.6 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/sms/SMS_EXPORTS.h>
#include <aws/sms/model/S3Location.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace SMS
{
namespace Model
{
/**
* <p>Contains the location of validation output.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/SSMOutput">AWS API
* Reference</a></p>
*/
class AWS_SMS_API SSMOutput
{
public:
SSMOutput();
SSMOutput(Aws::Utils::Json::JsonView jsonValue);
SSMOutput& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
inline const S3Location& GetS3Location() const{ return m_s3Location; }
inline bool S3LocationHasBeenSet() const { return m_s3LocationHasBeenSet; }
inline void SetS3Location(const S3Location& value) { m_s3LocationHasBeenSet = true; m_s3Location = value; }
inline void SetS3Location(S3Location&& value) { m_s3LocationHasBeenSet = true; m_s3Location = std::move(value); }
inline SSMOutput& WithS3Location(const S3Location& value) { SetS3Location(value); return *this;}
inline SSMOutput& WithS3Location(S3Location&& value) { SetS3Location(std::move(value)); return *this;}
private:
S3Location m_s3Location;
bool m_s3LocationHasBeenSet;
};
} // namespace Model
} // namespace SMS
} // namespace Aws