interface ManagedInstancesNetworkConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Batch.CfnComputeEnvironment.ManagedInstancesNetworkConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbatch#CfnComputeEnvironment_ManagedInstancesNetworkConfigurationProperty |
Java | software.amazon.awscdk.services.batch.CfnComputeEnvironment.ManagedInstancesNetworkConfigurationProperty |
Python | aws_cdk.aws_batch.CfnComputeEnvironment.ManagedInstancesNetworkConfigurationProperty |
TypeScript | aws-cdk-lib » aws_batch » CfnComputeEnvironment » ManagedInstancesNetworkConfigurationProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_batch as batch } from 'aws-cdk-lib';
const managedInstancesNetworkConfigurationProperty: batch.CfnComputeEnvironment.ManagedInstancesNetworkConfigurationProperty = {
securityGroups: ['securityGroups'],
subnets: ['subnets'],
};
Properties
| Name | Type | Description |
|---|---|---|
| security | string[] | |
| subnets | string[] |
securityGroups
Type:
string[]
subnets
Type:
string[]

.NET
Go
Java
Python
TypeScript