interface ServiceAccessSecurityGroupsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EVS.CfnEnvironment.ServiceAccessSecurityGroupsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsevs#CfnEnvironment_ServiceAccessSecurityGroupsProperty |
Java | software.amazon.awscdk.services.evs.CfnEnvironment.ServiceAccessSecurityGroupsProperty |
Python | aws_cdk.aws_evs.CfnEnvironment.ServiceAccessSecurityGroupsProperty |
TypeScript | aws-cdk-lib » aws_evs » CfnEnvironment » ServiceAccessSecurityGroupsProperty |
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 { aws_evs as evs } from 'aws-cdk-lib';
const serviceAccessSecurityGroupsProperty: evs.CfnEnvironment.ServiceAccessSecurityGroupsProperty = {
securityGroups: ['securityGroups'],
};
Properties
| Name | Type | Description |
|---|---|---|
| security | string[] | The security groups that allow service access. |
securityGroups?
Type:
string[]
(optional)
The security groups that allow service access.

.NET
Go
Java
Python
TypeScript