Class: Aws::KinesisVideo::Types::UpdateNotificationConfigurationInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisVideo::Types::UpdateNotificationConfigurationInput
- Defined in:
- gems/aws-sdk-kinesisvideo/lib/aws-sdk-kinesisvideo/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#notification_configuration ⇒ Types::NotificationConfiguration
The structure containing the information required for notifications.
-
#stream_arn ⇒ String
The Amazon Resource Name (ARN) of the Kinesis video stream from where you want to update the notification configuration.
-
#stream_name ⇒ String
The name of the stream from which to update the notification configuration.
Instance Attribute Details
#notification_configuration ⇒ Types::NotificationConfiguration
The structure containing the information required for notifications. If the structure is null, the configuration will be deleted from the stream.
2131 2132 2133 2134 2135 2136 2137 |
# File 'gems/aws-sdk-kinesisvideo/lib/aws-sdk-kinesisvideo/types.rb', line 2131 class UpdateNotificationConfigurationInput < Struct.new( :stream_name, :stream_arn, :notification_configuration) SENSITIVE = [] include Aws::Structure end |
#stream_arn ⇒ String
The Amazon Resource Name (ARN) of the Kinesis video stream from
where you want to update the notification configuration. You must
specify either the StreamName or the StreamARN.
2131 2132 2133 2134 2135 2136 2137 |
# File 'gems/aws-sdk-kinesisvideo/lib/aws-sdk-kinesisvideo/types.rb', line 2131 class UpdateNotificationConfigurationInput < Struct.new( :stream_name, :stream_arn, :notification_configuration) SENSITIVE = [] include Aws::Structure end |
#stream_name ⇒ String
The name of the stream from which to update the notification
configuration. You must specify either the StreamName or the
StreamARN.
2131 2132 2133 2134 2135 2136 2137 |
# File 'gems/aws-sdk-kinesisvideo/lib/aws-sdk-kinesisvideo/types.rb', line 2131 class UpdateNotificationConfigurationInput < Struct.new( :stream_name, :stream_arn, :notification_configuration) SENSITIVE = [] include Aws::Structure end |