pub struct SSLCertificateArgsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build_struct()
.
Implementations§
source§impl<S: State> SSLCertificateArgsBuilder<S>
impl<S: State> SSLCertificateArgsBuilder<S>
sourcepub fn build_struct(self) -> SSLCertificateArgswhere
S: IsComplete,
pub fn build_struct(self) -> SSLCertificateArgswhere
S: IsComplete,
Finish building and return the requested object
sourcepub fn certificate(
self,
value: impl Into<Output<String>>,
) -> SSLCertificateArgsBuilder<SetCertificate<S>>where
S::Certificate: IsUnset,
pub fn certificate(
self,
value: impl Into<Output<String>>,
) -> SSLCertificateArgsBuilder<SetCertificate<S>>where
S::Certificate: IsUnset,
Required.
The certificate in PEM format. The certificate chain must be no greater than 5 certs long. The chain must include at least one intermediate cert. Note: This property is sensitive and will not be displayed in the plan.
sourcepub fn description(
self,
value: impl Into<Output<Option<String>>>,
) -> SSLCertificateArgsBuilder<SetDescription<S>>where
S::Description: IsUnset,
pub fn description(
self,
value: impl Into<Output<Option<String>>>,
) -> SSLCertificateArgsBuilder<SetDescription<S>>where
S::Description: IsUnset,
sourcepub fn maybe_description(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> SSLCertificateArgsBuilder<SetDescription<S>>where
S::Description: IsUnset,
pub fn maybe_description(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> SSLCertificateArgsBuilder<SetDescription<S>>where
S::Description: IsUnset,
sourcepub fn name(
self,
value: impl Into<Output<Option<String>>>,
) -> SSLCertificateArgsBuilder<SetName<S>>where
S::Name: IsUnset,
pub fn name(
self,
value: impl Into<Output<Option<String>>>,
) -> SSLCertificateArgsBuilder<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.
These are in the same namespace as the managed SSL certificates.
sourcepub fn maybe_name(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> SSLCertificateArgsBuilder<SetName<S>>where
S::Name: IsUnset,
pub fn maybe_name(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> SSLCertificateArgsBuilder<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.
These are in the same namespace as the managed SSL certificates.
sourcepub fn name_prefix(
self,
value: impl Into<Output<Option<String>>>,
) -> SSLCertificateArgsBuilder<SetNamePrefix<S>>where
S::NamePrefix: IsUnset,
pub fn name_prefix(
self,
value: impl Into<Output<Option<String>>>,
) -> SSLCertificateArgsBuilder<SetNamePrefix<S>>where
S::NamePrefix: IsUnset,
Optional (Some / Option setters). Default: <pulumi_wasm_rust::Output<Option<String>> as Default>::default()
.
Creates a unique name beginning with the
specified prefix. Conflicts with name
. Max length is 54 characters.
Prefixes with lengths longer than 37 characters will use a shortened
UUID that will be more prone to collisions.
Resulting name for a name_prefix
<= 37 characters:
name_prefix
+ YYYYmmddHHSSssss + 8 digit incremental counter
Resulting name for a name_prefix
38 - 54 characters:
name_prefix
+ YYmmdd + 3 digit incremental counter
sourcepub fn maybe_name_prefix(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> SSLCertificateArgsBuilder<SetNamePrefix<S>>where
S::NamePrefix: IsUnset,
pub fn maybe_name_prefix(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> SSLCertificateArgsBuilder<SetNamePrefix<S>>where
S::NamePrefix: IsUnset,
Optional (Some / Option setters). Default: <pulumi_wasm_rust::Output<Option<String>> as Default>::default()
.
Creates a unique name beginning with the
specified prefix. Conflicts with name
. Max length is 54 characters.
Prefixes with lengths longer than 37 characters will use a shortened
UUID that will be more prone to collisions.
Resulting name for a name_prefix
<= 37 characters:
name_prefix
+ YYYYmmddHHSSssss + 8 digit incremental counter
Resulting name for a name_prefix
38 - 54 characters:
name_prefix
+ YYmmdd + 3 digit incremental counter
sourcepub fn private_key(
self,
value: impl Into<Output<String>>,
) -> SSLCertificateArgsBuilder<SetPrivateKey<S>>where
S::PrivateKey: IsUnset,
pub fn private_key(
self,
value: impl Into<Output<String>>,
) -> SSLCertificateArgsBuilder<SetPrivateKey<S>>where
S::PrivateKey: IsUnset,
Required.
The write-only private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.