Show / Hide Table of Contents

Interface ICfnHealthCheckProps

Properties for defining a CfnHealthCheck.

Namespace: Amazon.CDK.AWS.Route53
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnHealthCheckProps
Syntax (vb)
Public Interface ICfnHealthCheckProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Route53;

             var cfnHealthCheckProps = new CfnHealthCheckProps {
                 HealthCheckConfig = new HealthCheckConfigProperty {
                     Type = "type",

                     // the properties below are optional
                     AlarmIdentifier = new AlarmIdentifierProperty {
                         Name = "name",
                         Region = "region"
                     },
                     ChildHealthChecks = new [] { "childHealthChecks" },
                     EnableSni = false,
                     FailureThreshold = 123,
                     FullyQualifiedDomainName = "fullyQualifiedDomainName",
                     HealthThreshold = 123,
                     InsufficientDataHealthStatus = "insufficientDataHealthStatus",
                     Inverted = false,
                     IpAddress = "ipAddress",
                     MeasureLatency = false,
                     Port = 123,
                     Regions = new [] { "regions" },
                     RequestInterval = 123,
                     ResourcePath = "resourcePath",
                     RoutingControlArn = "routingControlArn",
                     SearchString = "searchString"
                 },

                 // the properties below are optional
                 HealthCheckTags = new [] { new HealthCheckTagProperty {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Properties

HealthCheckConfig

A complex type that contains detailed information about one health check.

HealthCheckTags

The HealthCheckTags property describes key-value pairs that are associated with an AWS::Route53::HealthCheck resource.

Properties

HealthCheckConfig

A complex type that contains detailed information about one health check.

object HealthCheckConfig { get; }
Property Value

object

Remarks

For the values to enter for HealthCheckConfig , see HealthCheckConfig

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html#cfn-route53-healthcheck-healthcheckconfig

Type union: either IResolvable or CfnHealthCheck.IHealthCheckConfigProperty

HealthCheckTags

The HealthCheckTags property describes key-value pairs that are associated with an AWS::Route53::HealthCheck resource.

CfnHealthCheck.IHealthCheckTagProperty[]? HealthCheckTags { get; }
Property Value

IHealthCheckTagProperty[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html#cfn-route53-healthcheck-healthchecktags

Back to top Generated by DocFX