You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::IoT::Types::UpdateStreamRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing UpdateStreamRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  stream_id: "StreamId", # required
  description: "StreamDescription",
  files: [
    {
      file_id: 1,
      s3_location: {
        bucket: "S3Bucket",
        key: "S3Key",
        version: "S3Version",
      },
    },
  ],
  role_arn: "RoleArn",
}

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

The description of the stream.

Returns:

  • (String)

    The description of the stream.

#filesArray<Types::StreamFile>

The files associated with the stream.

Returns:

#role_arnString

An IAM role that allows the IoT service principal assumes to access your S3 files.

Returns:

  • (String)

    An IAM role that allows the IoT service principal assumes to access your S3 files.

#stream_idString

The stream ID.

Returns:

  • (String)

    The stream ID.