Class: Aws::KinesisVideo::Types::MediaStorageConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-kinesisvideo/lib/aws-sdk-kinesisvideo/types.rb

Overview

A structure that encapsulates, or contains, the media storage configuration properties.

  • If StorageStatus is enabled, the data will be stored in the StreamARN provided. In order for WebRTC Ingestion to work, the stream must have data retention enabled.

  • If StorageStatus is disabled, no data will be stored, and the StreamARN parameter will not be needed.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#statusString

The status of the media storage configuration.

Returns:

  • (String)


1370
1371
1372
1373
1374
1375
# File 'gems/aws-sdk-kinesisvideo/lib/aws-sdk-kinesisvideo/types.rb', line 1370

class MediaStorageConfiguration < Struct.new(
  :stream_arn,
  :status)
  SENSITIVE = []
  include Aws::Structure
end

#stream_arnString

The Amazon Resource Name (ARN) of the stream.

Returns:

  • (String)


1370
1371
1372
1373
1374
1375
# File 'gems/aws-sdk-kinesisvideo/lib/aws-sdk-kinesisvideo/types.rb', line 1370

class MediaStorageConfiguration < Struct.new(
  :stream_arn,
  :status)
  SENSITIVE = []
  include Aws::Structure
end