pub struct SecurityGroupAssociationResult {
pub replace_default_association: Output<Option<bool>>,
pub security_group_id: Output<String>,
pub vpc_endpoint_id: Output<String>,
}
Fields§
§replace_default_association: Output<Option<bool>>
Whether this association should replace the association with the VPC’s default security group that is created when no security groups are specified during VPC endpoint creation. At most 1 association per-VPC endpoint should be configured with replace_default_association = true
.
security_group_id: Output<String>
The ID of the security group to be associated with the VPC endpoint.
vpc_endpoint_id: Output<String>
The ID of the VPC endpoint with which the security group will be associated.
Auto Trait Implementations§
impl Freeze for SecurityGroupAssociationResult
impl RefUnwindSafe for SecurityGroupAssociationResult
impl Send for SecurityGroupAssociationResult
impl Sync for SecurityGroupAssociationResult
impl Unpin for SecurityGroupAssociationResult
impl UnwindSafe for SecurityGroupAssociationResult
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