pub struct SetSecurityGroups { /* private fields */ }
Expand description
Fluent builder constructing a request to SetSecurityGroups
.
Associates the specified security groups with the specified Application Load Balancer. The specified security groups override the previously associated security groups.
You can't specify a security group for a Network Load Balancer or Gateway Load Balancer.
Implementations§
source§impl SetSecurityGroups
impl SetSecurityGroups
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<SetSecurityGroups, AwsResponseRetryClassifier>, SdkError<SetSecurityGroupsError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<SetSecurityGroups, AwsResponseRetryClassifier>, SdkError<SetSecurityGroupsError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<SetSecurityGroupsOutput, SdkError<SetSecurityGroupsError>>
pub async fn send(
self
) -> Result<SetSecurityGroupsOutput, SdkError<SetSecurityGroupsError>>
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 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 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.
Trait Implementations§
source§impl Clone for SetSecurityGroups
impl Clone for SetSecurityGroups
source§fn clone(&self) -> SetSecurityGroups
fn clone(&self) -> SetSecurityGroups
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more