CfnHealthCheckMixinProps
- class aws_cdk.mixins_preview.aws_route53.mixins.CfnHealthCheckMixinProps(*, health_check_config=None, health_check_tags=None)
Bases:
objectProperties for CfnHealthCheckPropsMixin.
- Parameters:
health_check_config (
Union[IResolvable,HealthCheckConfigProperty,Dict[str,Any],None]) – A complex type that contains detailed information about one health check. For the values to enter forHealthCheckConfig, see HealthCheckConfighealth_check_tags (
Optional[Sequence[Union[HealthCheckTagProperty,Dict[str,Any]]]]) – TheHealthCheckTagsproperty describes key-value pairs that are associated with anAWS::Route53::HealthCheckresource.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_route53 import mixins as route53_mixins cfn_health_check_mixin_props = route53_mixins.CfnHealthCheckMixinProps( health_check_config=route53_mixins.CfnHealthCheckPropsMixin.HealthCheckConfigProperty( alarm_identifier=route53_mixins.CfnHealthCheckPropsMixin.AlarmIdentifierProperty( name="name", region="region" ), child_health_checks=["childHealthChecks"], enable_sni=False, failure_threshold=123, fully_qualified_domain_name="fullyQualifiedDomainName", health_threshold=123, insufficient_data_health_status="insufficientDataHealthStatus", inverted=False, ip_address="ipAddress", measure_latency=False, port=123, regions=["regions"], request_interval=123, resource_path="resourcePath", routing_control_arn="routingControlArn", search_string="searchString", type="type" ), health_check_tags=[route53_mixins.CfnHealthCheckPropsMixin.HealthCheckTagProperty( key="key", value="value" )] )
Attributes
- health_check_config
A complex type that contains detailed information about one health check.
For the values to enter for
HealthCheckConfig, see HealthCheckConfig
- health_check_tags
The
HealthCheckTagsproperty describes key-value pairs that are associated with anAWS::Route53::HealthCheckresource.