interface ServiceAccessSecurityGroupsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EVS.Mixins.CfnEnvironmentPropsMixin.ServiceAccessSecurityGroupsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsevs/mixins#CfnEnvironmentPropsMixin_ServiceAccessSecurityGroupsProperty |
Java | software.amazon.awscdk.mixins.preview.services.evs.mixins.CfnEnvironmentPropsMixin.ServiceAccessSecurityGroupsProperty |
Python | aws_cdk.mixins_preview.aws_evs.mixins.CfnEnvironmentPropsMixin.ServiceAccessSecurityGroupsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_evs » mixins » CfnEnvironmentPropsMixin » 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 { mixins as evs_mixins } from '@aws-cdk/mixins-preview/aws-evs';
const serviceAccessSecurityGroupsProperty: evs_mixins.CfnEnvironmentPropsMixin.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