Class: Aws::IVS::Types::BatchError
- Inherits:
-
Struct
- Object
- Struct
- Aws::IVS::Types::BatchError
- Defined in:
- gems/aws-sdk-ivs/lib/aws-sdk-ivs/types.rb
Overview
Error related to a specific channel, specified by its ARN.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
ARN of an IVS resource; e.g., channel.
-
#code ⇒ String
Error code.
-
#message ⇒ String
Error message, determined by the application.
Instance Attribute Details
#arn ⇒ String
ARN of an IVS resource; e.g., channel.
80 81 82 83 84 85 86 |
# File 'gems/aws-sdk-ivs/lib/aws-sdk-ivs/types.rb', line 80 class BatchError < Struct.new( :arn, :code, :message) SENSITIVE = [] include Aws::Structure end |
#code ⇒ String
Error code.
80 81 82 83 84 85 86 |
# File 'gems/aws-sdk-ivs/lib/aws-sdk-ivs/types.rb', line 80 class BatchError < Struct.new( :arn, :code, :message) SENSITIVE = [] include Aws::Structure end |
#message ⇒ String
Error message, determined by the application.
80 81 82 83 84 85 86 |
# File 'gems/aws-sdk-ivs/lib/aws-sdk-ivs/types.rb', line 80 class BatchError < Struct.new( :arn, :code, :message) SENSITIVE = [] include Aws::Structure end |