Interface CreateHealthCheckRequest.Builder
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<CreateHealthCheckRequest.Builder,
,CreateHealthCheckRequest> Route53Request.Builder
,SdkBuilder<CreateHealthCheckRequest.Builder,
,CreateHealthCheckRequest> SdkPojo
,SdkRequest.Builder
- Enclosing class:
CreateHealthCheckRequest
-
Method Summary
Modifier and TypeMethodDescriptioncallerReference
(String callerReference) A unique string that identifies the request and that allows you to retry a failedCreateHealthCheck
request without the risk of creating two identical health checks:default CreateHealthCheckRequest.Builder
healthCheckConfig
(Consumer<HealthCheckConfig.Builder> healthCheckConfig) A complex type that contains settings for a new health check.healthCheckConfig
(HealthCheckConfig healthCheckConfig) A complex type that contains settings for a new health check.overrideConfiguration
(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Add an optional request override configuration.overrideConfiguration
(AwsRequestOverrideConfiguration overrideConfiguration) Add an optional request override configuration.Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.services.route53.model.Route53Request.Builder
build
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
callerReference
A unique string that identifies the request and that allows you to retry a failed
CreateHealthCheck
request without the risk of creating two identical health checks:-
If you send a
CreateHealthCheck
request with the sameCallerReference
and settings as a previous request, and if the health check doesn't exist, Amazon Route 53 creates the health check. If the health check does exist, Route 53 returns the settings for the existing health check. -
If you send a
CreateHealthCheck
request with the sameCallerReference
as a deleted health check, regardless of the settings, Route 53 returns aHealthCheckAlreadyExists
error. -
If you send a
CreateHealthCheck
request with the sameCallerReference
as an existing health check but with different settings, Route 53 returns aHealthCheckAlreadyExists
error. -
If you send a
CreateHealthCheck
request with a uniqueCallerReference
but settings identical to an existing health check, Route 53 creates the health check.
Route 53 does not store the
CallerReference
for a deleted health check indefinitely. TheCallerReference
for a deleted health check will be deleted after a number of days.- Parameters:
callerReference
- A unique string that identifies the request and that allows you to retry a failedCreateHealthCheck
request without the risk of creating two identical health checks:-
If you send a
CreateHealthCheck
request with the sameCallerReference
and settings as a previous request, and if the health check doesn't exist, Amazon Route 53 creates the health check. If the health check does exist, Route 53 returns the settings for the existing health check. -
If you send a
CreateHealthCheck
request with the sameCallerReference
as a deleted health check, regardless of the settings, Route 53 returns aHealthCheckAlreadyExists
error. -
If you send a
CreateHealthCheck
request with the sameCallerReference
as an existing health check but with different settings, Route 53 returns aHealthCheckAlreadyExists
error. -
If you send a
CreateHealthCheck
request with a uniqueCallerReference
but settings identical to an existing health check, Route 53 creates the health check.
Route 53 does not store the
CallerReference
for a deleted health check indefinitely. TheCallerReference
for a deleted health check will be deleted after a number of days.-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
healthCheckConfig
A complex type that contains settings for a new health check.
- Parameters:
healthCheckConfig
- A complex type that contains settings for a new health check.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
healthCheckConfig
default CreateHealthCheckRequest.Builder healthCheckConfig(Consumer<HealthCheckConfig.Builder> healthCheckConfig) A complex type that contains settings for a new health check.
This is a convenience method that creates an instance of theHealthCheckConfig.Builder
avoiding the need to create one manually viaHealthCheckConfig.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tohealthCheckConfig(HealthCheckConfig)
.- Parameters:
healthCheckConfig
- a consumer that will call methods onHealthCheckConfig.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
overrideConfiguration
CreateHealthCheckRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
overrideConfiguration
- The override configuration.- Returns:
- This object for method chaining.
-
overrideConfiguration
CreateHealthCheckRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
builderConsumer
- AConsumer
to which an emptyAwsRequestOverrideConfiguration.Builder
will be given.- Returns:
- This object for method chaining.
-