Struct aws_sdk_securityhub::model::AwsEc2SecurityGroupDetails [−][src]
#[non_exhaustive]pub struct AwsEc2SecurityGroupDetails {
pub group_name: Option<String>,
pub group_id: Option<String>,
pub owner_id: Option<String>,
pub vpc_id: Option<String>,
pub ip_permissions: Option<Vec<AwsEc2SecurityGroupIpPermission>>,
pub ip_permissions_egress: Option<Vec<AwsEc2SecurityGroupIpPermission>>,
}
Expand description
Details about an EC2 security group.
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.group_name: Option<String>
The name of the security group.
group_id: Option<String>
The ID of the security group.
owner_id: Option<String>
The Amazon Web Services account ID of the owner of the security group.
vpc_id: Option<String>
[VPC only] The ID of the VPC for the security group.
ip_permissions: Option<Vec<AwsEc2SecurityGroupIpPermission>>
The inbound rules associated with the security group.
ip_permissions_egress: Option<Vec<AwsEc2SecurityGroupIpPermission>>
[VPC only] The outbound rules associated with the security group.
Implementations
The name of the security group.
The Amazon Web Services account ID of the owner of the security group.
The inbound rules associated with the security group.
[VPC only] The outbound rules associated with the security group.
Creates a new builder-style object to manufacture AwsEc2SecurityGroupDetails
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 RefUnwindSafe for AwsEc2SecurityGroupDetails
impl Send for AwsEc2SecurityGroupDetails
impl Sync for AwsEc2SecurityGroupDetails
impl Unpin for AwsEc2SecurityGroupDetails
impl UnwindSafe for AwsEc2SecurityGroupDetails
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