interface HealthIssueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SecurityHub.CfnConnector.HealthIssueProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssecurityhub#CfnConnector_HealthIssueProperty |
Java | software.amazon.awscdk.services.securityhub.CfnConnector.HealthIssueProperty |
Python | aws_cdk.aws_securityhub.CfnConnector.HealthIssueProperty |
TypeScript | aws-cdk-lib » aws_securityhub » CfnConnector » HealthIssueProperty |
Represents a specific health issue detected for a 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.CfnConnector.HealthIssueProperty = {
code: 'code',
message: 'message',
};
Properties
| Name | Type | Description |
|---|---|---|
| code | string | The code identifying the type of health issue. |
| message | string | A human-readable message that describes the health issue. |
code
Type:
string
The code identifying the type of health issue.
message
Type:
string
A human-readable message that describes the health issue.

.NET
Go
Java
Python
TypeScript