Interface CfnEnvironmentPropsMixin.ServiceAccessSecurityGroupsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnEnvironmentPropsMixin.ServiceAccessSecurityGroupsProperty.Jsii$Proxy
Enclosing class:
CfnEnvironmentPropsMixin

@Stability(Stable) public static interface CfnEnvironmentPropsMixin.ServiceAccessSecurityGroupsProperty extends software.amazon.jsii.JsiiSerializable
The security groups that allow traffic between the Amazon EVS control plane and your VPC for Amazon EVS service access.

If a security group is not specified, Amazon EVS uses the default security group in your account for service access.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.evs.mixins.*;
 ServiceAccessSecurityGroupsProperty serviceAccessSecurityGroupsProperty = ServiceAccessSecurityGroupsProperty.builder()
         .securityGroups(List.of("securityGroups"))
         .build();
 

See Also: