Class: Aws::IdentityStore::Types::ResourceNotFoundException
- Inherits:
-
Struct
- Object
- Struct
- Aws::IdentityStore::Types::ResourceNotFoundException
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-identitystore/types.rb
Overview
Indicates that a requested resource is not found.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
- #message ⇒ String
-
#reason ⇒ String
Indicates the reason for a resource not found error when the service is unable to access a Customer Managed KMS key.
-
#request_id ⇒ String
The identifier for each request.
-
#resource_id ⇒ String
The identifier for a resource in the identity store that can be used as ‘UserId` or `GroupId`.
-
#resource_type ⇒ String
An enum object indicating the type of resource in the identity store service.
Instance Attribute Details
#message ⇒ String
1553 1554 1555 1556 1557 1558 1559 1560 1561 |
# File 'lib/aws-sdk-identitystore/types.rb', line 1553 class ResourceNotFoundException < Struct.new( :resource_type, :resource_id, :reason, :message, :request_id) SENSITIVE = [] include Aws::Structure end |
#reason ⇒ String
Indicates the reason for a resource not found error when the service is unable to access a Customer Managed KMS key. For non-KMS permission errors, this field is not included.
1553 1554 1555 1556 1557 1558 1559 1560 1561 |
# File 'lib/aws-sdk-identitystore/types.rb', line 1553 class ResourceNotFoundException < Struct.new( :resource_type, :resource_id, :reason, :message, :request_id) SENSITIVE = [] include Aws::Structure end |
#request_id ⇒ String
The identifier for each request. This value is a globally unique ID that is generated by the identity store service for each sent request, and is then returned inside the exception if the request fails.
1553 1554 1555 1556 1557 1558 1559 1560 1561 |
# File 'lib/aws-sdk-identitystore/types.rb', line 1553 class ResourceNotFoundException < Struct.new( :resource_type, :resource_id, :reason, :message, :request_id) SENSITIVE = [] include Aws::Structure end |
#resource_id ⇒ String
The identifier for a resource in the identity store that can be used as ‘UserId` or `GroupId`. The format for `ResourceId` is either `UUID` or `1234567890-UUID`, where `UUID` is a randomly generated value for each resource when it is created and `1234567890` represents the ` IdentityStoreId` string value. In the case that the identity store is migrated from a legacy SSO identity store, the `ResourceId` for that identity store will be in the format of `UUID`. Otherwise, it will be in the `1234567890-UUID` format.
1553 1554 1555 1556 1557 1558 1559 1560 1561 |
# File 'lib/aws-sdk-identitystore/types.rb', line 1553 class ResourceNotFoundException < Struct.new( :resource_type, :resource_id, :reason, :message, :request_id) SENSITIVE = [] include Aws::Structure end |
#resource_type ⇒ String
An enum object indicating the type of resource in the identity store service. Valid values include USER, GROUP, and IDENTITY_STORE.
1553 1554 1555 1556 1557 1558 1559 1560 1561 |
# File 'lib/aws-sdk-identitystore/types.rb', line 1553 class ResourceNotFoundException < Struct.new( :resource_type, :resource_id, :reason, :message, :request_id) SENSITIVE = [] include Aws::Structure end |