Class: Aws::AmplifyBackend::Types::NotFoundException

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

Overview

An error returned when a specific resource type is not found.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#messageString

An error message to inform that the request has failed.

Returns:

  • (String)


2742
2743
2744
2745
2746
2747
# File 'gems/aws-sdk-amplifybackend/lib/aws-sdk-amplifybackend/types.rb', line 2742

class NotFoundException < Struct.new(
  :message,
  :resource_type)
  SENSITIVE = []
  include Aws::Structure
end

#resource_typeString

The type of resource that is not found.

Returns:

  • (String)


2742
2743
2744
2745
2746
2747
# File 'gems/aws-sdk-amplifybackend/lib/aws-sdk-amplifybackend/types.rb', line 2742

class NotFoundException < Struct.new(
  :message,
  :resource_type)
  SENSITIVE = []
  include Aws::Structure
end