Struct aws_sdk_elasticloadbalancingv2::operation::set_security_groups::builders::SetSecurityGroupsFluentBuilder
source · pub struct SetSecurityGroupsFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to SetSecurityGroups
.
Associates the specified security groups with the specified Application Load Balancer or Network Load Balancer. The specified security groups override the previously associated security groups.
You can't perform this operation on a Network Load Balancer unless you specified a security group for the load balancer when you created it.
You can't associate a security group with a Gateway Load Balancer.
Implementations§
source§impl SetSecurityGroupsFluentBuilder
impl SetSecurityGroupsFluentBuilder
sourcepub fn as_input(&self) -> &SetSecurityGroupsInputBuilder
pub fn as_input(&self) -> &SetSecurityGroupsInputBuilder
Access the SetSecurityGroups as a reference.
sourcepub async fn send(
self
) -> Result<SetSecurityGroupsOutput, SdkError<SetSecurityGroupsError, HttpResponse>>
pub async fn send( self ) -> Result<SetSecurityGroupsOutput, SdkError<SetSecurityGroupsError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<SetSecurityGroupsOutput, SetSecurityGroupsError, Self>
pub fn customize( self ) -> CustomizableOperation<SetSecurityGroupsOutput, SetSecurityGroupsError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn load_balancer_arn(self, input: impl Into<String>) -> Self
pub fn load_balancer_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the load balancer.
sourcepub fn set_load_balancer_arn(self, input: Option<String>) -> Self
pub fn set_load_balancer_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the load balancer.
sourcepub fn get_load_balancer_arn(&self) -> &Option<String>
pub fn get_load_balancer_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the load balancer.
sourcepub fn security_groups(self, input: impl Into<String>) -> Self
pub fn security_groups(self, input: impl Into<String>) -> Self
Appends an item to SecurityGroups
.
To override the contents of this collection use set_security_groups
.
The IDs of the security groups.
sourcepub fn set_security_groups(self, input: Option<Vec<String>>) -> Self
pub fn set_security_groups(self, input: Option<Vec<String>>) -> Self
The IDs of the security groups.
sourcepub fn get_security_groups(&self) -> &Option<Vec<String>>
pub fn get_security_groups(&self) -> &Option<Vec<String>>
The IDs of the security groups.
sourcepub fn enforce_security_group_inbound_rules_on_private_link_traffic(
self,
input: EnforceSecurityGroupInboundRulesOnPrivateLinkTrafficEnum
) -> Self
pub fn enforce_security_group_inbound_rules_on_private_link_traffic( self, input: EnforceSecurityGroupInboundRulesOnPrivateLinkTrafficEnum ) -> Self
Indicates whether to evaluate inbound security group rules for traffic sent to a Network Load Balancer through Amazon Web Services PrivateLink. The default is on
.
sourcepub fn set_enforce_security_group_inbound_rules_on_private_link_traffic(
self,
input: Option<EnforceSecurityGroupInboundRulesOnPrivateLinkTrafficEnum>
) -> Self
pub fn set_enforce_security_group_inbound_rules_on_private_link_traffic( self, input: Option<EnforceSecurityGroupInboundRulesOnPrivateLinkTrafficEnum> ) -> Self
Indicates whether to evaluate inbound security group rules for traffic sent to a Network Load Balancer through Amazon Web Services PrivateLink. The default is on
.
sourcepub fn get_enforce_security_group_inbound_rules_on_private_link_traffic(
&self
) -> &Option<EnforceSecurityGroupInboundRulesOnPrivateLinkTrafficEnum>
pub fn get_enforce_security_group_inbound_rules_on_private_link_traffic( &self ) -> &Option<EnforceSecurityGroupInboundRulesOnPrivateLinkTrafficEnum>
Indicates whether to evaluate inbound security group rules for traffic sent to a Network Load Balancer through Amazon Web Services PrivateLink. The default is on
.
Trait Implementations§
source§impl Clone for SetSecurityGroupsFluentBuilder
impl Clone for SetSecurityGroupsFluentBuilder
source§fn clone(&self) -> SetSecurityGroupsFluentBuilder
fn clone(&self) -> SetSecurityGroupsFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more