interface ManagedInstancesProviderProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Batch.CfnComputeEnvironmentPropsMixin.ManagedInstancesProviderProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbatch#CfnComputeEnvironmentPropsMixin_ManagedInstancesProviderProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.batch.CfnComputeEnvironmentPropsMixin.ManagedInstancesProviderProperty |
Python | aws_cdk.cfn_property_mixins.aws_batch.CfnComputeEnvironmentPropsMixin.ManagedInstancesProviderProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_batch » CfnComputeEnvironmentPropsMixin » ManagedInstancesProviderProperty |
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/cfn-property-mixins';
const managedInstancesProviderProperty: batch.CfnComputeEnvironmentPropsMixin.ManagedInstancesProviderProperty = {
infrastructureOptimization: {
scaleInAfter: 123,
},
infrastructureRoleArn: 'infrastructureRoleArn',
instanceLaunchTemplate: {
capacityOptionType: 'capacityOptionType',
capacityReservations: {
reservationGroupArn: 'reservationGroupArn',
reservationPreference: 'reservationPreference',
},
ec2InstanceProfileArn: 'ec2InstanceProfileArn',
fipsEnabled: false,
instanceMetadataTagsPropagation: false,
instanceRequirements: {
allowedInstanceTypes: ['allowedInstanceTypes'],
},
localStorageConfiguration: {
useLocalStorage: false,
},
monitoring: 'monitoring',
networkConfiguration: {
securityGroups: ['securityGroups'],
subnets: ['subnets'],
},
storageConfiguration: {
storageSizeGiB: 123,
},
},
propagateTags: 'propagateTags',
};
Properties
| Name | Type | Description |
|---|---|---|
| infrastructure | IResolvable | Infrastructure | |
| infrastructure | string | |
| instance | IResolvable | Instance | |
| propagate | string |
infrastructureOptimization?
Type:
IResolvable | Infrastructure
(optional)
infrastructureRoleArn?
Type:
string
(optional)
instanceLaunchTemplate?
Type:
IResolvable | Instance
(optional)
propagateTags?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript