Class CfnConnectorV2PropsMixin.HealthIssueProperty
A health issue associated with the connector.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.SecurityHub
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnConnectorV2PropsMixin.HealthIssueProperty : CfnConnectorV2PropsMixin.IHealthIssueProperty
Syntax (vb)
Public Class CfnConnectorV2PropsMixin.HealthIssueProperty Implements CfnConnectorV2PropsMixin.IHealthIssueProperty
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.CfnPropertyMixins.AWS.SecurityHub;
var healthIssueProperty = new HealthIssueProperty {
Code = "code",
Message = "message"
};
Synopsis
Constructors
| HealthIssueProperty() | A health issue associated with the connector. |
Properties
| Code | The code identifying the type of health issue. |
| Message | The message describing the health issue. |
Constructors
HealthIssueProperty()
A health issue associated with the connector.
public HealthIssueProperty()
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.CfnPropertyMixins.AWS.SecurityHub;
var healthIssueProperty = new HealthIssueProperty {
Code = "code",
Message = "message"
};
Properties
Code
The code identifying the type of health issue.
public string? Code { get; set; }
Property Value
Remarks
Message
The message describing the health issue.
public string? Message { get; set; }