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-kinesis/include/aws/kinesis/model/CreateStreamRequest.h

154 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/kinesis/Kinesis_EXPORTS.h>
#include <aws/kinesis/KinesisRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace Kinesis
{
namespace Model
{
/**
* <p>Represents the input for <code>CreateStream</code>.</p><p><h3>See Also:</h3>
* <a
* href="http://docs.aws.amazon.com/goto/WebAPI/kinesis-2013-12-02/CreateStreamInput">AWS
* API Reference</a></p>
*/
class AWS_KINESIS_API CreateStreamRequest : public KinesisRequest
{
public:
CreateStreamRequest();
// Service request name is the Operation name which will send this request out,
// each operation should has unique request name, so that we can get operation's name from this request.
// Note: this is not true for response, multiple operations may have the same response name,
// so we can not get operation's name from response.
inline virtual const char* GetServiceRequestName() const override { return "CreateStream"; }
Aws::String SerializePayload() const override;
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
/**
* <p>A name to identify the stream. The stream name is scoped to the AWS account
* used by the application that creates the stream. It is also scoped by AWS
* Region. That is, two streams in two different AWS accounts can have the same
* name. Two streams in the same AWS account but in two different Regions can also
* have the same name.</p>
*/
inline const Aws::String& GetStreamName() const{ return m_streamName; }
/**
* <p>A name to identify the stream. The stream name is scoped to the AWS account
* used by the application that creates the stream. It is also scoped by AWS
* Region. That is, two streams in two different AWS accounts can have the same
* name. Two streams in the same AWS account but in two different Regions can also
* have the same name.</p>
*/
inline bool StreamNameHasBeenSet() const { return m_streamNameHasBeenSet; }
/**
* <p>A name to identify the stream. The stream name is scoped to the AWS account
* used by the application that creates the stream. It is also scoped by AWS
* Region. That is, two streams in two different AWS accounts can have the same
* name. Two streams in the same AWS account but in two different Regions can also
* have the same name.</p>
*/
inline void SetStreamName(const Aws::String& value) { m_streamNameHasBeenSet = true; m_streamName = value; }
/**
* <p>A name to identify the stream. The stream name is scoped to the AWS account
* used by the application that creates the stream. It is also scoped by AWS
* Region. That is, two streams in two different AWS accounts can have the same
* name. Two streams in the same AWS account but in two different Regions can also
* have the same name.</p>
*/
inline void SetStreamName(Aws::String&& value) { m_streamNameHasBeenSet = true; m_streamName = std::move(value); }
/**
* <p>A name to identify the stream. The stream name is scoped to the AWS account
* used by the application that creates the stream. It is also scoped by AWS
* Region. That is, two streams in two different AWS accounts can have the same
* name. Two streams in the same AWS account but in two different Regions can also
* have the same name.</p>
*/
inline void SetStreamName(const char* value) { m_streamNameHasBeenSet = true; m_streamName.assign(value); }
/**
* <p>A name to identify the stream. The stream name is scoped to the AWS account
* used by the application that creates the stream. It is also scoped by AWS
* Region. That is, two streams in two different AWS accounts can have the same
* name. Two streams in the same AWS account but in two different Regions can also
* have the same name.</p>
*/
inline CreateStreamRequest& WithStreamName(const Aws::String& value) { SetStreamName(value); return *this;}
/**
* <p>A name to identify the stream. The stream name is scoped to the AWS account
* used by the application that creates the stream. It is also scoped by AWS
* Region. That is, two streams in two different AWS accounts can have the same
* name. Two streams in the same AWS account but in two different Regions can also
* have the same name.</p>
*/
inline CreateStreamRequest& WithStreamName(Aws::String&& value) { SetStreamName(std::move(value)); return *this;}
/**
* <p>A name to identify the stream. The stream name is scoped to the AWS account
* used by the application that creates the stream. It is also scoped by AWS
* Region. That is, two streams in two different AWS accounts can have the same
* name. Two streams in the same AWS account but in two different Regions can also
* have the same name.</p>
*/
inline CreateStreamRequest& WithStreamName(const char* value) { SetStreamName(value); return *this;}
/**
* <p>The number of shards that the stream will use. The throughput of the stream
* is a function of the number of shards; more shards are required for greater
* provisioned throughput.</p>
*/
inline int GetShardCount() const{ return m_shardCount; }
/**
* <p>The number of shards that the stream will use. The throughput of the stream
* is a function of the number of shards; more shards are required for greater
* provisioned throughput.</p>
*/
inline bool ShardCountHasBeenSet() const { return m_shardCountHasBeenSet; }
/**
* <p>The number of shards that the stream will use. The throughput of the stream
* is a function of the number of shards; more shards are required for greater
* provisioned throughput.</p>
*/
inline void SetShardCount(int value) { m_shardCountHasBeenSet = true; m_shardCount = value; }
/**
* <p>The number of shards that the stream will use. The throughput of the stream
* is a function of the number of shards; more shards are required for greater
* provisioned throughput.</p>
*/
inline CreateStreamRequest& WithShardCount(int value) { SetShardCount(value); return *this;}
private:
Aws::String m_streamName;
bool m_streamNameHasBeenSet;
int m_shardCount;
bool m_shardCountHasBeenSet;
};
} // namespace Model
} // namespace Kinesis
} // namespace Aws