/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace signer { namespace Model { /** *

Points to an S3SignedObject object that contains information * about your signed code image.

See Also:

AWS * API Reference

*/ class SignedObject { public: AWS_SIGNER_API SignedObject(); AWS_SIGNER_API SignedObject(Aws::Utils::Json::JsonView jsonValue); AWS_SIGNER_API SignedObject& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_SIGNER_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The S3SignedObject.

*/ inline const S3SignedObject& GetS3() const{ return m_s3; } /** *

The S3SignedObject.

*/ inline bool S3HasBeenSet() const { return m_s3HasBeenSet; } /** *

The S3SignedObject.

*/ inline void SetS3(const S3SignedObject& value) { m_s3HasBeenSet = true; m_s3 = value; } /** *

The S3SignedObject.

*/ inline void SetS3(S3SignedObject&& value) { m_s3HasBeenSet = true; m_s3 = std::move(value); } /** *

The S3SignedObject.

*/ inline SignedObject& WithS3(const S3SignedObject& value) { SetS3(value); return *this;} /** *

The S3SignedObject.

*/ inline SignedObject& WithS3(S3SignedObject&& value) { SetS3(std::move(value)); return *this;} private: S3SignedObject m_s3; bool m_s3HasBeenSet = false; }; } // namespace Model } // namespace signer } // namespace Aws