All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scala.com.amazonaws.kinesis.StopStreamEncryptionInput.scala Maven / Gradle / Ivy

There is a newer version: 0.0.32
Show newest version
package com.amazonaws.kinesis

import smithy4s.Hints
import smithy4s.Schema
import smithy4s.ShapeId
import smithy4s.ShapeTag
import smithy4s.schema.Schema.struct

/** @param StreamName
  *   

The name of the stream on which to stop encrypting records.

* @param EncryptionType *

The encryption type. The only valid value is KMS.

* @param KeyId *

The GUID for the customer-managed Amazon Web Services 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 *

    *
  • *
* @param StreamARN *

The ARN of the stream.

*/ final case class StopStreamEncryptionInput(encryptionType: EncryptionType, keyId: KeyId, streamName: Option[StreamName] = None, streamARN: Option[StreamARN] = None) object StopStreamEncryptionInput extends ShapeTag.Companion[StopStreamEncryptionInput] { val id: ShapeId = ShapeId("com.amazonaws.kinesis", "StopStreamEncryptionInput") val hints: Hints = Hints( smithy.api.Input(), ) implicit val schema: Schema[StopStreamEncryptionInput] = struct( EncryptionType.schema.required[StopStreamEncryptionInput]("EncryptionType", _.encryptionType).addHints(smithy.api.Documentation("

The encryption type. The only valid value is KMS.

")), KeyId.schema.required[StopStreamEncryptionInput]("KeyId", _.keyId).addHints(smithy.api.Documentation("

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

\n
    \n
  • \n

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

    \n
  • \n
  • \n

    Alias ARN example:\n arn:aws:kms:us-east-1:123456789012:alias/MyAliasName\n

    \n
  • \n
  • \n

    Globally unique key ID example:\n 12345678-1234-1234-1234-123456789012\n

    \n
  • \n
  • \n

    Alias name example: alias/MyAliasName\n

    \n
  • \n
  • \n

    Master key owned by Kinesis Data Streams:\n alias/aws/kinesis\n

    \n
  • \n
")), StreamName.schema.optional[StopStreamEncryptionInput]("StreamName", _.streamName).addHints(smithy.api.Documentation("

The name of the stream on which to stop encrypting records.

")), StreamARN.schema.optional[StopStreamEncryptionInput]("StreamARN", _.streamARN).addHints(smithy.api.Documentation("

The ARN of the stream.

")), ){ StopStreamEncryptionInput.apply }.withId(id).addHints(hints) }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy