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