interface HealthIssueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SecurityHub.CfnConnectorV2PropsMixin.HealthIssueProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssecurityhub#CfnConnectorV2PropsMixin_HealthIssueProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.securityhub.CfnConnectorV2PropsMixin.HealthIssueProperty |
Python | aws_cdk.cfn_property_mixins.aws_securityhub.CfnConnectorV2PropsMixin.HealthIssueProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_securityhub » CfnConnectorV2PropsMixin » 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/cfn-property-mixins';
const healthIssueProperty: securityhub.CfnConnectorV2PropsMixin.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
(optional)
The code identifying the type of health issue.
message?
Type:
string
(optional)
The message describing the health issue.

.NET
Go
Java
Python
TypeScript