pub struct CustomerGatewayArgsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build_struct()
.
Implementations§
source§impl<S: State> CustomerGatewayArgsBuilder<S>
impl<S: State> CustomerGatewayArgsBuilder<S>
sourcepub fn build_struct(self) -> CustomerGatewayArgswhere
S: IsComplete,
pub fn build_struct(self) -> CustomerGatewayArgswhere
S: IsComplete,
Finish building and return the requested object
sourcepub fn bgp_asn(
self,
value: impl Into<Output<Option<String>>>,
) -> CustomerGatewayArgsBuilder<SetBgpAsn<S>>where
S::BgpAsn: IsUnset,
pub fn bgp_asn(
self,
value: impl Into<Output<Option<String>>>,
) -> CustomerGatewayArgsBuilder<SetBgpAsn<S>>where
S::BgpAsn: IsUnset,
sourcepub fn maybe_bgp_asn(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> CustomerGatewayArgsBuilder<SetBgpAsn<S>>where
S::BgpAsn: IsUnset,
pub fn maybe_bgp_asn(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> CustomerGatewayArgsBuilder<SetBgpAsn<S>>where
S::BgpAsn: IsUnset,
sourcepub fn bgp_asn_extended(
self,
value: impl Into<Output<Option<String>>>,
) -> CustomerGatewayArgsBuilder<SetBgpAsnExtended<S>>where
S::BgpAsnExtended: IsUnset,
pub fn bgp_asn_extended(
self,
value: impl Into<Output<Option<String>>>,
) -> CustomerGatewayArgsBuilder<SetBgpAsnExtended<S>>where
S::BgpAsnExtended: IsUnset,
sourcepub fn maybe_bgp_asn_extended(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> CustomerGatewayArgsBuilder<SetBgpAsnExtended<S>>where
S::BgpAsnExtended: IsUnset,
pub fn maybe_bgp_asn_extended(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> CustomerGatewayArgsBuilder<SetBgpAsnExtended<S>>where
S::BgpAsnExtended: IsUnset,
sourcepub fn certificate_arn(
self,
value: impl Into<Output<Option<String>>>,
) -> CustomerGatewayArgsBuilder<SetCertificateArn<S>>where
S::CertificateArn: IsUnset,
pub fn certificate_arn(
self,
value: impl Into<Output<Option<String>>>,
) -> CustomerGatewayArgsBuilder<SetCertificateArn<S>>where
S::CertificateArn: IsUnset,
sourcepub fn maybe_certificate_arn(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> CustomerGatewayArgsBuilder<SetCertificateArn<S>>where
S::CertificateArn: IsUnset,
pub fn maybe_certificate_arn(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> CustomerGatewayArgsBuilder<SetCertificateArn<S>>where
S::CertificateArn: IsUnset,
sourcepub fn device_name(
self,
value: impl Into<Output<Option<String>>>,
) -> CustomerGatewayArgsBuilder<SetDeviceName<S>>where
S::DeviceName: IsUnset,
pub fn device_name(
self,
value: impl Into<Output<Option<String>>>,
) -> CustomerGatewayArgsBuilder<SetDeviceName<S>>where
S::DeviceName: IsUnset,
sourcepub fn maybe_device_name(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> CustomerGatewayArgsBuilder<SetDeviceName<S>>where
S::DeviceName: IsUnset,
pub fn maybe_device_name(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> CustomerGatewayArgsBuilder<SetDeviceName<S>>where
S::DeviceName: IsUnset,
sourcepub fn ip_address(
self,
value: impl Into<Output<Option<String>>>,
) -> CustomerGatewayArgsBuilder<SetIpAddress<S>>where
S::IpAddress: IsUnset,
pub fn ip_address(
self,
value: impl Into<Output<Option<String>>>,
) -> CustomerGatewayArgsBuilder<SetIpAddress<S>>where
S::IpAddress: IsUnset,
sourcepub fn maybe_ip_address(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> CustomerGatewayArgsBuilder<SetIpAddress<S>>where
S::IpAddress: IsUnset,
pub fn maybe_ip_address(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> CustomerGatewayArgsBuilder<SetIpAddress<S>>where
S::IpAddress: IsUnset,
Optional (Some / Option setters). Default:
ⓘ
<pulumi_wasm_rust::Output<
Option<std::collections::HashMap<String, String>>,
> as Default>::default()
Tags to apply to the gateway. If configured with a provider default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
Optional (Some / Option setters). Default:
ⓘ
<pulumi_wasm_rust::Output<
Option<std::collections::HashMap<String, String>>,
> as Default>::default()
Tags to apply to the gateway. If configured with a provider default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
Auto Trait Implementations§
impl<S> Freeze for CustomerGatewayArgsBuilder<S>
impl<S> RefUnwindSafe for CustomerGatewayArgsBuilder<S>
impl<S> Send for CustomerGatewayArgsBuilder<S>
impl<S> Sync for CustomerGatewayArgsBuilder<S>
impl<S> Unpin for CustomerGatewayArgsBuilder<S>
impl<S> UnwindSafe for CustomerGatewayArgsBuilder<S>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more