interface HealthIssueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SecurityHub.CfnConnectorV2.HealthIssueProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssecurityhub#CfnConnectorV2_HealthIssueProperty |
Java | software.amazon.awscdk.services.securityhub.CfnConnectorV2.HealthIssueProperty |
Python | aws_cdk.aws_securityhub.CfnConnectorV2.HealthIssueProperty |
TypeScript | aws-cdk-lib » aws_securityhub » CfnConnectorV2 » HealthIssueProperty |
A health issue associated with the connector.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_securityhub as securityhub } from 'aws-cdk-lib';
const healthIssueProperty: securityhub.CfnConnectorV2.HealthIssueProperty = {
code: 'code',
message: 'message',
};
Properties
| Name | Type | Description |
|---|---|---|
| code | string | The code identifying the type of health issue. |
| message | string | The message describing the health issue. |
code
Type:
string
The code identifying the type of health issue.
message
Type:
string
The message describing the health issue.

.NET
Go
Java
Python
TypeScript