Interface CfnEndpoint.FailedReasonProperty
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnEndpoint.FailedReasonProperty.Jsii$Proxy
- Enclosing class:
- CfnEndpoint
@Stability(Stable)
public static interface CfnEndpoint.FailedReasonProperty
extends software.amazon.jsii.JsiiSerializable
The failure reason, if any, for a create or delete endpoint operation.
 
Example:
 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.s3outposts.*;
 FailedReasonProperty failedReasonProperty = FailedReasonProperty.builder()
         .errorCode("errorCode")
         .message("message")
         .build();
 - See Also:
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEndpoint.FailedReasonPropertystatic final classAn implementation forCfnEndpoint.FailedReasonProperty
- 
Method SummaryMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getErrorCodeThe failure code, if any, for a create or delete endpoint operation.- See Also:
 
- 
getMessageAdditional error details describing the endpoint failure and recommended action.- See Also:
 
- 
builder
 
-