Class CfnEndpoint.FailedReasonProperty
The failure reason, if any, for a create or delete endpoint operation.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.S3Outposts
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnEndpoint.FailedReasonProperty : CfnEndpoint.IFailedReasonProperty
Syntax (vb)
Public Class CfnEndpoint.FailedReasonProperty Implements CfnEndpoint.IFailedReasonProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.S3Outposts;
var failedReasonProperty = new FailedReasonProperty {
ErrorCode = "errorCode",
Message = "message"
};
Synopsis
Constructors
| FailedReasonProperty() | The failure reason, if any, for a create or delete endpoint operation. |
Properties
| ErrorCode | The failure code, if any, for a create or delete endpoint operation. |
| Message | Additional error details describing the endpoint failure and recommended action. |
Constructors
FailedReasonProperty()
The failure reason, if any, for a create or delete endpoint operation.
public FailedReasonProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.S3Outposts;
var failedReasonProperty = new FailedReasonProperty {
ErrorCode = "errorCode",
Message = "message"
};
Properties
ErrorCode
The failure code, if any, for a create or delete endpoint operation.
public string? ErrorCode { get; set; }
Property Value
Remarks
Message
Additional error details describing the endpoint failure and recommended action.
public string? Message { get; set; }