Class: Aws::EC2::Types::IpamDiscoveryFailureReason
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::IpamDiscoveryFailureReason
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ec2/types.rb
Overview
The discovery failure reason.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#code ⇒ String
The discovery failure code.
-
#message ⇒ String
The discovery failure message.
Instance Attribute Details
#code ⇒ String
The discovery failure code.
-
‘assume-role-failure` - IPAM could not assume the Amazon Web Services IAM service-linked role. This could be because of any of the following:
-
SLR has not been created yet and IPAM is still creating it.
-
You have opted-out of the IPAM home Region.
-
Account you are using as your IPAM account has been suspended.
-
-
‘throttling-failure` - IPAM account is already using the allotted transactions per second and IPAM is receiving a throttling error when assuming the Amazon Web Services IAM SLR.
-
‘unauthorized-failure` - Amazon Web Services account making the request is not authorized. For more information, see
- AuthFailure][1
-
in the *Amazon Elastic Compute Cloud API
Reference*.
[1]: docs.aws.amazon.com/AWSEC2/latest/APIReference/errors-overview.html
45801 45802 45803 45804 45805 45806 |
# File 'lib/aws-sdk-ec2/types.rb', line 45801 class IpamDiscoveryFailureReason < Struct.new( :code, :message) SENSITIVE = [] include Aws::Structure end |
#message ⇒ String
The discovery failure message.
45801 45802 45803 45804 45805 45806 |
# File 'lib/aws-sdk-ec2/types.rb', line 45801 class IpamDiscoveryFailureReason < Struct.new( :code, :message) SENSITIVE = [] include Aws::Structure end |