pub struct VpcEndpointConnectionNotificationArgsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build_struct()
.
Implementations§
source§impl<S: State> VpcEndpointConnectionNotificationArgsBuilder<S>
impl<S: State> VpcEndpointConnectionNotificationArgsBuilder<S>
sourcepub fn build_struct(self) -> VpcEndpointConnectionNotificationArgswhere
S: IsComplete,
pub fn build_struct(self) -> VpcEndpointConnectionNotificationArgswhere
S: IsComplete,
Finish building and return the requested object
sourcepub fn connection_events(
self,
value: impl Into<Output<Vec<String>>>,
) -> VpcEndpointConnectionNotificationArgsBuilder<SetConnectionEvents<S>>where
S::ConnectionEvents: IsUnset,
pub fn connection_events(
self,
value: impl Into<Output<Vec<String>>>,
) -> VpcEndpointConnectionNotificationArgsBuilder<SetConnectionEvents<S>>where
S::ConnectionEvents: IsUnset,
Required.
One or more endpoint events for which to receive notifications.
NOTE: One of
vpc_endpoint_service_id
orvpc_endpoint_id
must be specified.
sourcepub fn connection_notification_arn(
self,
value: impl Into<Output<String>>,
) -> VpcEndpointConnectionNotificationArgsBuilder<SetConnectionNotificationArn<S>>where
S::ConnectionNotificationArn: IsUnset,
pub fn connection_notification_arn(
self,
value: impl Into<Output<String>>,
) -> VpcEndpointConnectionNotificationArgsBuilder<SetConnectionNotificationArn<S>>where
S::ConnectionNotificationArn: IsUnset,
Required.
The ARN of the SNS topic for the notifications.
sourcepub fn vpc_endpoint_id(
self,
value: impl Into<Output<Option<String>>>,
) -> VpcEndpointConnectionNotificationArgsBuilder<SetVpcEndpointId<S>>where
S::VpcEndpointId: IsUnset,
pub fn vpc_endpoint_id(
self,
value: impl Into<Output<Option<String>>>,
) -> VpcEndpointConnectionNotificationArgsBuilder<SetVpcEndpointId<S>>where
S::VpcEndpointId: IsUnset,
sourcepub fn maybe_vpc_endpoint_id(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> VpcEndpointConnectionNotificationArgsBuilder<SetVpcEndpointId<S>>where
S::VpcEndpointId: IsUnset,
pub fn maybe_vpc_endpoint_id(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> VpcEndpointConnectionNotificationArgsBuilder<SetVpcEndpointId<S>>where
S::VpcEndpointId: IsUnset,
sourcepub fn vpc_endpoint_service_id(
self,
value: impl Into<Output<Option<String>>>,
) -> VpcEndpointConnectionNotificationArgsBuilder<SetVpcEndpointServiceId<S>>where
S::VpcEndpointServiceId: IsUnset,
pub fn vpc_endpoint_service_id(
self,
value: impl Into<Output<Option<String>>>,
) -> VpcEndpointConnectionNotificationArgsBuilder<SetVpcEndpointServiceId<S>>where
S::VpcEndpointServiceId: IsUnset,
sourcepub fn maybe_vpc_endpoint_service_id(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> VpcEndpointConnectionNotificationArgsBuilder<SetVpcEndpointServiceId<S>>where
S::VpcEndpointServiceId: IsUnset,
pub fn maybe_vpc_endpoint_service_id(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> VpcEndpointConnectionNotificationArgsBuilder<SetVpcEndpointServiceId<S>>where
S::VpcEndpointServiceId: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for VpcEndpointConnectionNotificationArgsBuilder<S>
impl<S> RefUnwindSafe for VpcEndpointConnectionNotificationArgsBuilder<S>
impl<S> Send for VpcEndpointConnectionNotificationArgsBuilder<S>
impl<S> Sync for VpcEndpointConnectionNotificationArgsBuilder<S>
impl<S> Unpin for VpcEndpointConnectionNotificationArgsBuilder<S>
impl<S> UnwindSafe for VpcEndpointConnectionNotificationArgsBuilder<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