pub struct HttpHealthCheckArgsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build_struct()
.
Implementations§
source§impl<S: State> HttpHealthCheckArgsBuilder<S>
impl<S: State> HttpHealthCheckArgsBuilder<S>
sourcepub fn build_struct(self) -> HttpHealthCheckArgswhere
S: IsComplete,
pub fn build_struct(self) -> HttpHealthCheckArgswhere
S: IsComplete,
Finish building and return the requested object
sourcepub fn check_interval_sec(
self,
value: impl Into<Output<Option<i32>>>,
) -> HttpHealthCheckArgsBuilder<SetCheckIntervalSec<S>>where
S::CheckIntervalSec: IsUnset,
pub fn check_interval_sec(
self,
value: impl Into<Output<Option<i32>>>,
) -> HttpHealthCheckArgsBuilder<SetCheckIntervalSec<S>>where
S::CheckIntervalSec: IsUnset,
sourcepub fn maybe_check_interval_sec(
self,
value: Option<impl Into<Output<Option<i32>>>>,
) -> HttpHealthCheckArgsBuilder<SetCheckIntervalSec<S>>where
S::CheckIntervalSec: IsUnset,
pub fn maybe_check_interval_sec(
self,
value: Option<impl Into<Output<Option<i32>>>>,
) -> HttpHealthCheckArgsBuilder<SetCheckIntervalSec<S>>where
S::CheckIntervalSec: IsUnset,
sourcepub fn description(
self,
value: impl Into<Output<Option<String>>>,
) -> HttpHealthCheckArgsBuilder<SetDescription<S>>where
S::Description: IsUnset,
pub fn description(
self,
value: impl Into<Output<Option<String>>>,
) -> HttpHealthCheckArgsBuilder<SetDescription<S>>where
S::Description: IsUnset,
sourcepub fn maybe_description(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> HttpHealthCheckArgsBuilder<SetDescription<S>>where
S::Description: IsUnset,
pub fn maybe_description(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> HttpHealthCheckArgsBuilder<SetDescription<S>>where
S::Description: IsUnset,
sourcepub fn healthy_threshold(
self,
value: impl Into<Output<Option<i32>>>,
) -> HttpHealthCheckArgsBuilder<SetHealthyThreshold<S>>where
S::HealthyThreshold: IsUnset,
pub fn healthy_threshold(
self,
value: impl Into<Output<Option<i32>>>,
) -> HttpHealthCheckArgsBuilder<SetHealthyThreshold<S>>where
S::HealthyThreshold: IsUnset,
sourcepub fn maybe_healthy_threshold(
self,
value: Option<impl Into<Output<Option<i32>>>>,
) -> HttpHealthCheckArgsBuilder<SetHealthyThreshold<S>>where
S::HealthyThreshold: IsUnset,
pub fn maybe_healthy_threshold(
self,
value: Option<impl Into<Output<Option<i32>>>>,
) -> HttpHealthCheckArgsBuilder<SetHealthyThreshold<S>>where
S::HealthyThreshold: IsUnset,
sourcepub fn host(
self,
value: impl Into<Output<Option<String>>>,
) -> HttpHealthCheckArgsBuilder<SetHost<S>>where
S::Host: IsUnset,
pub fn host(
self,
value: impl Into<Output<Option<String>>>,
) -> HttpHealthCheckArgsBuilder<SetHost<S>>where
S::Host: IsUnset,
sourcepub fn maybe_host(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> HttpHealthCheckArgsBuilder<SetHost<S>>where
S::Host: IsUnset,
pub fn maybe_host(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> HttpHealthCheckArgsBuilder<SetHost<S>>where
S::Host: IsUnset,
sourcepub fn name(
self,
value: impl Into<Output<Option<String>>>,
) -> HttpHealthCheckArgsBuilder<SetName<S>>where
S::Name: IsUnset,
pub fn name(
self,
value: impl Into<Output<Option<String>>>,
) -> HttpHealthCheckArgsBuilder<SetName<S>>where
S::Name: IsUnset,
Optional (Some / Option setters). Default: <pulumi_wasm_rust::Output<Option<String>> as Default>::default()
.
Name of the resource. Provided by the client when the resource is
created. The name must be 1-63 characters long, and comply with
RFC1035. Specifically, the name must be 1-63 characters long and
match the regular expression a-z?
which means
the first character must be a lowercase letter, and all following
characters must be a dash, lowercase letter, or digit, except the
last character, which cannot be a dash.
sourcepub fn maybe_name(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> HttpHealthCheckArgsBuilder<SetName<S>>where
S::Name: IsUnset,
pub fn maybe_name(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> HttpHealthCheckArgsBuilder<SetName<S>>where
S::Name: IsUnset,
Optional (Some / Option setters). Default: <pulumi_wasm_rust::Output<Option<String>> as Default>::default()
.
Name of the resource. Provided by the client when the resource is
created. The name must be 1-63 characters long, and comply with
RFC1035. Specifically, the name must be 1-63 characters long and
match the regular expression a-z?
which means
the first character must be a lowercase letter, and all following
characters must be a dash, lowercase letter, or digit, except the
last character, which cannot be a dash.