/** * 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 { namespace Kinesis { namespace Model { /** */ class AWS_KINESIS_API StartStreamEncryptionRequest : public KinesisRequest { public: StartStreamEncryptionRequest(); // 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 "StartStreamEncryption"; } Aws::String SerializePayload() const override; Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The name of the stream for which to start encrypting records.

*/ inline const Aws::String& GetStreamName() const{ return m_streamName; } /** *

The name of the stream for which to start encrypting records.

*/ inline bool StreamNameHasBeenSet() const { return m_streamNameHasBeenSet; } /** *

The name of the stream for which to start encrypting records.

*/ inline void SetStreamName(const Aws::String& value) { m_streamNameHasBeenSet = true; m_streamName = value; } /** *

The name of the stream for which to start encrypting records.

*/ inline void SetStreamName(Aws::String&& value) { m_streamNameHasBeenSet = true; m_streamName = std::move(value); } /** *

The name of the stream for which to start encrypting records.

*/ inline void SetStreamName(const char* value) { m_streamNameHasBeenSet = true; m_streamName.assign(value); } /** *

The name of the stream for which to start encrypting records.

*/ inline StartStreamEncryptionRequest& WithStreamName(const Aws::String& value) { SetStreamName(value); return *this;} /** *

The name of the stream for which to start encrypting records.

*/ inline StartStreamEncryptionRequest& WithStreamName(Aws::String&& value) { SetStreamName(std::move(value)); return *this;} /** *

The name of the stream for which to start encrypting records.

*/ inline StartStreamEncryptionRequest& WithStreamName(const char* value) { SetStreamName(value); return *this;} /** *

The encryption type to use. The only valid value is KMS.

*/ inline const EncryptionType& GetEncryptionType() const{ return m_encryptionType; } /** *

The encryption type to use. The only valid value is KMS.

*/ inline bool EncryptionTypeHasBeenSet() const { return m_encryptionTypeHasBeenSet; } /** *

The encryption type to use. The only valid value is KMS.

*/ inline void SetEncryptionType(const EncryptionType& value) { m_encryptionTypeHasBeenSet = true; m_encryptionType = value; } /** *

The encryption type to use. The only valid value is KMS.

*/ inline void SetEncryptionType(EncryptionType&& value) { m_encryptionTypeHasBeenSet = true; m_encryptionType = std::move(value); } /** *

The encryption type to use. The only valid value is KMS.

*/ inline StartStreamEncryptionRequest& WithEncryptionType(const EncryptionType& value) { SetEncryptionType(value); return *this;} /** *

The encryption type to use. The only valid value is KMS.

*/ inline StartStreamEncryptionRequest& WithEncryptionType(EncryptionType&& value) { SetEncryptionType(std::move(value)); return *this;} /** *

The GUID for the customer-managed AWS KMS key to use for encryption. This * value can be a globally unique identifier, a fully specified Amazon Resource * Name (ARN) to either an alias or a key, or an alias name prefixed by * "alias/".You can also use a master key owned by Kinesis Data Streams by * specifying the alias aws/kinesis.

  • Key ARN example: * arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012 *

  • Alias ARN example: * arn:aws:kms:us-east-1:123456789012:alias/MyAliasName

  • *
  • Globally unique key ID example: * 12345678-1234-1234-1234-123456789012

  • Alias name * example: alias/MyAliasName

  • Master key owned by * Kinesis Data Streams: alias/aws/kinesis

*/ inline const Aws::String& GetKeyId() const{ return m_keyId; } /** *

The GUID for the customer-managed AWS KMS key to use for encryption. This * value can be a globally unique identifier, a fully specified Amazon Resource * Name (ARN) to either an alias or a key, or an alias name prefixed by * "alias/".You can also use a master key owned by Kinesis Data Streams by * specifying the alias aws/kinesis.

  • Key ARN example: * arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012 *

  • Alias ARN example: * arn:aws:kms:us-east-1:123456789012:alias/MyAliasName

  • *
  • Globally unique key ID example: * 12345678-1234-1234-1234-123456789012

  • Alias name * example: alias/MyAliasName

  • Master key owned by * Kinesis Data Streams: alias/aws/kinesis

*/ inline bool KeyIdHasBeenSet() const { return m_keyIdHasBeenSet; } /** *

The GUID for the customer-managed AWS KMS key to use for encryption. This * value can be a globally unique identifier, a fully specified Amazon Resource * Name (ARN) to either an alias or a key, or an alias name prefixed by * "alias/".You can also use a master key owned by Kinesis Data Streams by * specifying the alias aws/kinesis.

  • Key ARN example: * arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012 *

  • Alias ARN example: * arn:aws:kms:us-east-1:123456789012:alias/MyAliasName

  • *
  • Globally unique key ID example: * 12345678-1234-1234-1234-123456789012

  • Alias name * example: alias/MyAliasName

  • Master key owned by * Kinesis Data Streams: alias/aws/kinesis

*/ inline void SetKeyId(const Aws::String& value) { m_keyIdHasBeenSet = true; m_keyId = value; } /** *

The GUID for the customer-managed AWS KMS key to use for encryption. This * value can be a globally unique identifier, a fully specified Amazon Resource * Name (ARN) to either an alias or a key, or an alias name prefixed by * "alias/".You can also use a master key owned by Kinesis Data Streams by * specifying the alias aws/kinesis.

  • Key ARN example: * arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012 *

  • Alias ARN example: * arn:aws:kms:us-east-1:123456789012:alias/MyAliasName

  • *
  • Globally unique key ID example: * 12345678-1234-1234-1234-123456789012

  • Alias name * example: alias/MyAliasName

  • Master key owned by * Kinesis Data Streams: alias/aws/kinesis

*/ inline void SetKeyId(Aws::String&& value) { m_keyIdHasBeenSet = true; m_keyId = std::move(value); } /** *

The GUID for the customer-managed AWS KMS key to use for encryption. This * value can be a globally unique identifier, a fully specified Amazon Resource * Name (ARN) to either an alias or a key, or an alias name prefixed by * "alias/".You can also use a master key owned by Kinesis Data Streams by * specifying the alias aws/kinesis.

  • Key ARN example: * arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012 *

  • Alias ARN example: * arn:aws:kms:us-east-1:123456789012:alias/MyAliasName

  • *
  • Globally unique key ID example: * 12345678-1234-1234-1234-123456789012

  • Alias name * example: alias/MyAliasName

  • Master key owned by * Kinesis Data Streams: alias/aws/kinesis

*/ inline void SetKeyId(const char* value) { m_keyIdHasBeenSet = true; m_keyId.assign(value); } /** *

The GUID for the customer-managed AWS KMS key to use for encryption. This * value can be a globally unique identifier, a fully specified Amazon Resource * Name (ARN) to either an alias or a key, or an alias name prefixed by * "alias/".You can also use a master key owned by Kinesis Data Streams by * specifying the alias aws/kinesis.

  • Key ARN example: * arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012 *

  • Alias ARN example: * arn:aws:kms:us-east-1:123456789012:alias/MyAliasName

  • *
  • Globally unique key ID example: * 12345678-1234-1234-1234-123456789012

  • Alias name * example: alias/MyAliasName

  • Master key owned by * Kinesis Data Streams: alias/aws/kinesis

*/ inline StartStreamEncryptionRequest& WithKeyId(const Aws::String& value) { SetKeyId(value); return *this;} /** *

The GUID for the customer-managed AWS KMS key to use for encryption. This * value can be a globally unique identifier, a fully specified Amazon Resource * Name (ARN) to either an alias or a key, or an alias name prefixed by * "alias/".You can also use a master key owned by Kinesis Data Streams by * specifying the alias aws/kinesis.

  • Key ARN example: * arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012 *

  • Alias ARN example: * arn:aws:kms:us-east-1:123456789012:alias/MyAliasName

  • *
  • Globally unique key ID example: * 12345678-1234-1234-1234-123456789012

  • Alias name * example: alias/MyAliasName

  • Master key owned by * Kinesis Data Streams: alias/aws/kinesis

*/ inline StartStreamEncryptionRequest& WithKeyId(Aws::String&& value) { SetKeyId(std::move(value)); return *this;} /** *

The GUID for the customer-managed AWS KMS key to use for encryption. This * value can be a globally unique identifier, a fully specified Amazon Resource * Name (ARN) to either an alias or a key, or an alias name prefixed by * "alias/".You can also use a master key owned by Kinesis Data Streams by * specifying the alias aws/kinesis.

  • Key ARN example: * arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012 *

  • Alias ARN example: * arn:aws:kms:us-east-1:123456789012:alias/MyAliasName

  • *
  • Globally unique key ID example: * 12345678-1234-1234-1234-123456789012

  • Alias name * example: alias/MyAliasName

  • Master key owned by * Kinesis Data Streams: alias/aws/kinesis

*/ inline StartStreamEncryptionRequest& WithKeyId(const char* value) { SetKeyId(value); return *this;} private: Aws::String m_streamName; bool m_streamNameHasBeenSet; EncryptionType m_encryptionType; bool m_encryptionTypeHasBeenSet; Aws::String m_keyId; bool m_keyIdHasBeenSet; }; } // namespace Model } // namespace Kinesis } // namespace Aws