interface ServiceManagedEc2FleetConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Deadline.Mixins.CfnFleetPropsMixin.ServiceManagedEc2FleetConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdeadline/mixins#CfnFleetPropsMixin_ServiceManagedEc2FleetConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.deadline.mixins.CfnFleetPropsMixin.ServiceManagedEc2FleetConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_deadline.mixins.CfnFleetPropsMixin.ServiceManagedEc2FleetConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_deadline » mixins » CfnFleetPropsMixin » ServiceManagedEc2FleetConfigurationProperty |
The configuration details for a service managed EC2 fleet.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as deadline_mixins } from '@aws-cdk/mixins-preview/aws-deadline';
const serviceManagedEc2FleetConfigurationProperty: deadline_mixins.CfnFleetPropsMixin.ServiceManagedEc2FleetConfigurationProperty = {
instanceCapabilities: {
acceleratorCapabilities: {
count: {
max: 123,
min: 123,
},
selections: [{
name: 'name',
runtime: 'runtime',
}],
},
allowedInstanceTypes: ['allowedInstanceTypes'],
cpuArchitectureType: 'cpuArchitectureType',
customAmounts: [{
max: 123,
min: 123,
name: 'name',
}],
customAttributes: [{
name: 'name',
values: ['values'],
}],
excludedInstanceTypes: ['excludedInstanceTypes'],
memoryMiB: {
max: 123,
min: 123,
},
osFamily: 'osFamily',
rootEbsVolume: {
iops: 123,
sizeGiB: 123,
throughputMiB: 123,
},
vCpuCount: {
max: 123,
min: 123,
},
},
instanceMarketOptions: {
type: 'type',
},
storageProfileId: 'storageProfileId',
vpcConfiguration: {
resourceConfigurationArns: ['resourceConfigurationArns'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| instance | IResolvable | Service | The instance capabilities for the service managed EC2 fleet. |
| instance | IResolvable | Service | The instance market options for the service managed EC2 fleet. |
| storage | string | The storage profile ID for the service managed EC2 fleet. |
| vpc | IResolvable | Vpc | The VPC configuration for the service managed EC2 fleet. |
instanceCapabilities?
Type:
IResolvable | Service
(optional)
The instance capabilities for the service managed EC2 fleet.
instanceMarketOptions?
Type:
IResolvable | Service
(optional)
The instance market options for the service managed EC2 fleet.
storageProfileId?
Type:
string
(optional)
The storage profile ID for the service managed EC2 fleet.
vpcConfiguration?
Type:
IResolvable | Vpc
(optional)
The VPC configuration for the service managed EC2 fleet.

.NET
Go
Java
Python
TypeScript