Struct aws_sdk_ec2::input::AuthorizeSecurityGroupEgressInput [−][src]
#[non_exhaustive]pub struct AuthorizeSecurityGroupEgressInput {
pub dry_run: Option<bool>,
pub group_id: Option<String>,
pub ip_permissions: Option<Vec<IpPermission>>,
pub tag_specifications: Option<Vec<TagSpecification>>,
pub cidr_ip: Option<String>,
pub from_port: Option<i32>,
pub ip_protocol: Option<String>,
pub to_port: Option<i32>,
pub source_security_group_name: Option<String>,
pub source_security_group_owner_id: Option<String>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.dry_run: Option<bool>
Checks whether you have the required permissions for the action, without actually making the request,
and provides an error response. If you have the required permissions, the error response is DryRunOperation
.
Otherwise, it is UnauthorizedOperation
.
group_id: Option<String>
The ID of the security group.
ip_permissions: Option<Vec<IpPermission>>
The sets of IP permissions. You can't specify a destination security group and a CIDR IP address range in the same set of permissions.
tag_specifications: Option<Vec<TagSpecification>>
The tags applied to the security group rule.
cidr_ip: Option<String>
Not supported. Use a set of IP permissions to specify the CIDR.
from_port: Option<i32>
Not supported. Use a set of IP permissions to specify the port.
ip_protocol: Option<String>
Not supported. Use a set of IP permissions to specify the protocol name or number.
to_port: Option<i32>
Not supported. Use a set of IP permissions to specify the port.
source_security_group_name: Option<String>
Not supported. Use a set of IP permissions to specify a destination security group.
source_security_group_owner_id: Option<String>
Not supported. Use a set of IP permissions to specify a destination security group.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<AuthorizeSecurityGroupEgress, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<AuthorizeSecurityGroupEgress, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<AuthorizeSecurityGroupEgress
>
Creates a new builder-style object to manufacture AuthorizeSecurityGroupEgressInput
Checks whether you have the required permissions for the action, without actually making the request,
and provides an error response. If you have the required permissions, the error response is DryRunOperation
.
Otherwise, it is UnauthorizedOperation
.
The sets of IP permissions. You can't specify a destination security group and a CIDR IP address range in the same set of permissions.
The tags applied to the security group rule.
Not supported. Use a set of IP permissions to specify the CIDR.
Not supported. Use a set of IP permissions to specify the port.
Not supported. Use a set of IP permissions to specify the protocol name or number.
Not supported. Use a set of IP permissions to specify the port.
Not supported. Use a set of IP permissions to specify a destination security group.
Not supported. Use a set of IP permissions to specify a destination security group.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for AuthorizeSecurityGroupEgressInput
impl Sync for AuthorizeSecurityGroupEgressInput
impl Unpin for AuthorizeSecurityGroupEgressInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more