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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-iot/types.rb

Overview

Note:

When making an API call, you may pass UpdateStreamRequest data as a 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.



11372
11373
11374
11375
11376
11377
11378
# File 'lib/aws-sdk-iot/types.rb', line 11372

class UpdateStreamRequest < Struct.new(
  :stream_id,
  :description,
  :files,
  :role_arn)
  include Aws::Structure
end

#filesArray<Types::StreamFile>

The files associated with the stream.



11372
11373
11374
11375
11376
11377
11378
# File 'lib/aws-sdk-iot/types.rb', line 11372

class UpdateStreamRequest < Struct.new(
  :stream_id,
  :description,
  :files,
  :role_arn)
  include Aws::Structure
end

#role_arnString

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



11372
11373
11374
11375
11376
11377
11378
# File 'lib/aws-sdk-iot/types.rb', line 11372

class UpdateStreamRequest < Struct.new(
  :stream_id,
  :description,
  :files,
  :role_arn)
  include Aws::Structure
end

#stream_idString

The stream ID.



11372
11373
11374
11375
11376
11377
11378
# File 'lib/aws-sdk-iot/types.rb', line 11372

class UpdateStreamRequest < Struct.new(
  :stream_id,
  :description,
  :files,
  :role_arn)
  include Aws::Structure
end