Class: Aws::IVS::Types::PutMetadataRequest

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

Overview

Note:

When making an API call, you may pass PutMetadataRequest data as a hash:

{
  channel_arn: "ChannelArn", # required
  metadata: "StreamMetadata", # required
}

Constant Summary collapse

SENSITIVE =
[:metadata]

Instance Attribute Summary collapse

Instance Attribute Details

#channel_arnString

ARN of the channel into which metadata is inserted. This channel must have an active stream.

Returns:

  • (String)


1270
1271
1272
1273
1274
1275
# File 'lib/aws-sdk-ivs/types.rb', line 1270

class PutMetadataRequest < Struct.new(
  :channel_arn,
  :metadata)
  SENSITIVE = [:metadata]
  include Aws::Structure
end

#metadataString

Metadata to insert into the stream. Maximum: 1 KB per request.

Returns:

  • (String)


1270
1271
1272
1273
1274
1275
# File 'lib/aws-sdk-ivs/types.rb', line 1270

class PutMetadataRequest < Struct.new(
  :channel_arn,
  :metadata)
  SENSITIVE = [:metadata]
  include Aws::Structure
end