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

.NET
Go
Java
Python
TypeScript