194 lines
6.4 KiB
C++
194 lines
6.4 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/ssm/SSM_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
class JsonView;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace SSM
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>An S3 bucket where you want to store the results of this
|
|
* request.</p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/S3OutputLocation">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_SSM_API S3OutputLocation
|
|
{
|
|
public:
|
|
S3OutputLocation();
|
|
S3OutputLocation(Aws::Utils::Json::JsonView jsonValue);
|
|
S3OutputLocation& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|
|
|
|
|
/**
|
|
* <p>(Deprecated) You can no longer specify this parameter. The system ignores it.
|
|
* Instead, Systems Manager automatically determines the Region of the S3
|
|
* bucket.</p>
|
|
*/
|
|
inline const Aws::String& GetOutputS3Region() const{ return m_outputS3Region; }
|
|
|
|
/**
|
|
* <p>(Deprecated) You can no longer specify this parameter. The system ignores it.
|
|
* Instead, Systems Manager automatically determines the Region of the S3
|
|
* bucket.</p>
|
|
*/
|
|
inline bool OutputS3RegionHasBeenSet() const { return m_outputS3RegionHasBeenSet; }
|
|
|
|
/**
|
|
* <p>(Deprecated) You can no longer specify this parameter. The system ignores it.
|
|
* Instead, Systems Manager automatically determines the Region of the S3
|
|
* bucket.</p>
|
|
*/
|
|
inline void SetOutputS3Region(const Aws::String& value) { m_outputS3RegionHasBeenSet = true; m_outputS3Region = value; }
|
|
|
|
/**
|
|
* <p>(Deprecated) You can no longer specify this parameter. The system ignores it.
|
|
* Instead, Systems Manager automatically determines the Region of the S3
|
|
* bucket.</p>
|
|
*/
|
|
inline void SetOutputS3Region(Aws::String&& value) { m_outputS3RegionHasBeenSet = true; m_outputS3Region = std::move(value); }
|
|
|
|
/**
|
|
* <p>(Deprecated) You can no longer specify this parameter. The system ignores it.
|
|
* Instead, Systems Manager automatically determines the Region of the S3
|
|
* bucket.</p>
|
|
*/
|
|
inline void SetOutputS3Region(const char* value) { m_outputS3RegionHasBeenSet = true; m_outputS3Region.assign(value); }
|
|
|
|
/**
|
|
* <p>(Deprecated) You can no longer specify this parameter. The system ignores it.
|
|
* Instead, Systems Manager automatically determines the Region of the S3
|
|
* bucket.</p>
|
|
*/
|
|
inline S3OutputLocation& WithOutputS3Region(const Aws::String& value) { SetOutputS3Region(value); return *this;}
|
|
|
|
/**
|
|
* <p>(Deprecated) You can no longer specify this parameter. The system ignores it.
|
|
* Instead, Systems Manager automatically determines the Region of the S3
|
|
* bucket.</p>
|
|
*/
|
|
inline S3OutputLocation& WithOutputS3Region(Aws::String&& value) { SetOutputS3Region(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>(Deprecated) You can no longer specify this parameter. The system ignores it.
|
|
* Instead, Systems Manager automatically determines the Region of the S3
|
|
* bucket.</p>
|
|
*/
|
|
inline S3OutputLocation& WithOutputS3Region(const char* value) { SetOutputS3Region(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The name of the S3 bucket.</p>
|
|
*/
|
|
inline const Aws::String& GetOutputS3BucketName() const{ return m_outputS3BucketName; }
|
|
|
|
/**
|
|
* <p>The name of the S3 bucket.</p>
|
|
*/
|
|
inline bool OutputS3BucketNameHasBeenSet() const { return m_outputS3BucketNameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The name of the S3 bucket.</p>
|
|
*/
|
|
inline void SetOutputS3BucketName(const Aws::String& value) { m_outputS3BucketNameHasBeenSet = true; m_outputS3BucketName = value; }
|
|
|
|
/**
|
|
* <p>The name of the S3 bucket.</p>
|
|
*/
|
|
inline void SetOutputS3BucketName(Aws::String&& value) { m_outputS3BucketNameHasBeenSet = true; m_outputS3BucketName = std::move(value); }
|
|
|
|
/**
|
|
* <p>The name of the S3 bucket.</p>
|
|
*/
|
|
inline void SetOutputS3BucketName(const char* value) { m_outputS3BucketNameHasBeenSet = true; m_outputS3BucketName.assign(value); }
|
|
|
|
/**
|
|
* <p>The name of the S3 bucket.</p>
|
|
*/
|
|
inline S3OutputLocation& WithOutputS3BucketName(const Aws::String& value) { SetOutputS3BucketName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the S3 bucket.</p>
|
|
*/
|
|
inline S3OutputLocation& WithOutputS3BucketName(Aws::String&& value) { SetOutputS3BucketName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the S3 bucket.</p>
|
|
*/
|
|
inline S3OutputLocation& WithOutputS3BucketName(const char* value) { SetOutputS3BucketName(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The S3 bucket subfolder.</p>
|
|
*/
|
|
inline const Aws::String& GetOutputS3KeyPrefix() const{ return m_outputS3KeyPrefix; }
|
|
|
|
/**
|
|
* <p>The S3 bucket subfolder.</p>
|
|
*/
|
|
inline bool OutputS3KeyPrefixHasBeenSet() const { return m_outputS3KeyPrefixHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The S3 bucket subfolder.</p>
|
|
*/
|
|
inline void SetOutputS3KeyPrefix(const Aws::String& value) { m_outputS3KeyPrefixHasBeenSet = true; m_outputS3KeyPrefix = value; }
|
|
|
|
/**
|
|
* <p>The S3 bucket subfolder.</p>
|
|
*/
|
|
inline void SetOutputS3KeyPrefix(Aws::String&& value) { m_outputS3KeyPrefixHasBeenSet = true; m_outputS3KeyPrefix = std::move(value); }
|
|
|
|
/**
|
|
* <p>The S3 bucket subfolder.</p>
|
|
*/
|
|
inline void SetOutputS3KeyPrefix(const char* value) { m_outputS3KeyPrefixHasBeenSet = true; m_outputS3KeyPrefix.assign(value); }
|
|
|
|
/**
|
|
* <p>The S3 bucket subfolder.</p>
|
|
*/
|
|
inline S3OutputLocation& WithOutputS3KeyPrefix(const Aws::String& value) { SetOutputS3KeyPrefix(value); return *this;}
|
|
|
|
/**
|
|
* <p>The S3 bucket subfolder.</p>
|
|
*/
|
|
inline S3OutputLocation& WithOutputS3KeyPrefix(Aws::String&& value) { SetOutputS3KeyPrefix(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The S3 bucket subfolder.</p>
|
|
*/
|
|
inline S3OutputLocation& WithOutputS3KeyPrefix(const char* value) { SetOutputS3KeyPrefix(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_outputS3Region;
|
|
bool m_outputS3RegionHasBeenSet;
|
|
|
|
Aws::String m_outputS3BucketName;
|
|
bool m_outputS3BucketNameHasBeenSet;
|
|
|
|
Aws::String m_outputS3KeyPrefix;
|
|
bool m_outputS3KeyPrefixHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace SSM
|
|
} // namespace Aws
|