Interface CfnEnvironment.ServiceAccessSecurityGroupsProperty

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

@Stability(Stable) public static interface CfnEnvironment.ServiceAccessSecurityGroupsProperty extends software.amazon.jsii.JsiiSerializable

Amazon EVS is in public preview release and is subject to change.

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.services.evs.*;
 ServiceAccessSecurityGroupsProperty serviceAccessSecurityGroupsProperty = ServiceAccessSecurityGroupsProperty.builder()
         .securityGroups(List.of("securityGroups"))
         .build();
 

See Also: