Class: Aws::CleanRoomsML::Types::StatusDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRoomsML::Types::StatusDetails
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cleanroomsml/types.rb
Overview
Details about the status of a resource.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#message ⇒ String
The error message that was returned.
-
#status_code ⇒ String
The status code that was returned.
Instance Attribute Details
#message ⇒ String
The error message that was returned. The message is intended for human consumption and can change at any time. Use the ‘statusCode` for programmatic error handling.
5412 5413 5414 5415 5416 5417 |
# File 'lib/aws-sdk-cleanroomsml/types.rb', line 5412 class StatusDetails < Struct.new( :status_code, :message) SENSITIVE = [] include Aws::Structure end |
#status_code ⇒ String
The status code that was returned. The status code is intended for programmatic error handling. Clean Rooms ML will not change the status code for existing error conditions.
5412 5413 5414 5415 5416 5417 |
# File 'lib/aws-sdk-cleanroomsml/types.rb', line 5412 class StatusDetails < Struct.new( :status_code, :message) SENSITIVE = [] include Aws::Structure end |