@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:42.901Z") @Stability(value=Stable) public interface SecurityGroupContextResponse extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cxapi.*;
SecurityGroupContextResponse securityGroupContextResponse = SecurityGroupContextResponse.builder()
.allowAllOutbound(false)
.securityGroupId("securityGroupId")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
SecurityGroupContextResponse.Builder
A builder for
SecurityGroupContextResponse |
static class |
SecurityGroupContextResponse.Jsii$Proxy
An implementation for
SecurityGroupContextResponse |
| Modifier and Type | Method and Description |
|---|---|
static SecurityGroupContextResponse.Builder |
builder() |
Boolean |
getAllowAllOutbound()
Whether the security group allows all outbound traffic.
|
String |
getSecurityGroupId()
The security group's id.
|
@Stability(value=Stable) @NotNull Boolean getAllowAllOutbound()
This will be true
when the security group has all-protocol egress permissions to access both
0.0.0.0/0 and ::/0.
@Stability(value=Stable) @NotNull String getSecurityGroupId()
@Stability(value=Stable) static SecurityGroupContextResponse.Builder builder()
Copyright © 2022. All rights reserved.