pub struct GetSecurityGroupResult {
pub arn: Output<String>,
pub description: Output<String>,
pub filters: Output<Option<Vec<GetSecurityGroupFilter>>>,
pub id: Output<String>,
pub name: Output<String>,
pub tags: Output<HashMap<String, String>>,
pub vpc_id: Output<String>,
}
Fields§
§arn: Output<String>
Computed ARN of the security group.
description: Output<String>
Description of the security group.
filters: Output<Option<Vec<GetSecurityGroupFilter>>>
§id: Output<String>
§name: Output<String>
§vpc_id: Output<String>
Auto Trait Implementations§
impl Freeze for GetSecurityGroupResult
impl RefUnwindSafe for GetSecurityGroupResult
impl Send for GetSecurityGroupResult
impl Sync for GetSecurityGroupResult
impl Unpin for GetSecurityGroupResult
impl UnwindSafe for GetSecurityGroupResult
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