Functions that represent AWS CDK enums and builders in the software.amazon.awscdk.services.batch package.
Functions that represent AWS CDK enums and builders in the software.amazon.awscdk.services.batch package.
(action config id item-key)
The action
function data interprets values in the provided config data into a
Action
instance. This simplifies the use of keywords in place of actual enum values in
the configuration provided to builders. The value is found using the cdk.support/lookup-entry
function on the data with the provided namespace id and item-key. The found value is interpretted as follows:
Action
- the value is returned.:retry
- Action/RETRY
is returned:exit
- Action/EXIT
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `action` function data interprets values in the provided config data into a `Action` instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the `cdk.support/lookup-entry` function on the data with the provided namespace id and item-key. The found value is interpretted as follows: * instance of `Action` - the value is returned. * is `:retry` - `Action/RETRY` is returned * is `:exit` - `Action/EXIT` is returned If a value is not found or matches the above criteria, nil is returned.
(allocation-strategy config id item-key)
The allocation-strategy
function data interprets values in the provided config data into a
AllocationStrategy
instance. This simplifies the use of keywords in place of actual enum values in
the configuration provided to builders. The value is found using the cdk.support/lookup-entry
function on the data with the provided namespace id and item-key. The found value is interpretted as follows:
AllocationStrategy
- the value is returned.:spot-capacity-optimized
- AllocationStrategy/SPOT_CAPACITY_OPTIMIZED
is returned:best-fit-progressive
- AllocationStrategy/BEST_FIT_PROGRESSIVE
is returned:best-fit
- AllocationStrategy/BEST_FIT
is returned:spot-price-capacity-optimized
- AllocationStrategy/SPOT_PRICE_CAPACITY_OPTIMIZED
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `allocation-strategy` function data interprets values in the provided config data into a `AllocationStrategy` instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the `cdk.support/lookup-entry` function on the data with the provided namespace id and item-key. The found value is interpretted as follows: * instance of `AllocationStrategy` - the value is returned. * is `:spot-capacity-optimized` - `AllocationStrategy/SPOT_CAPACITY_OPTIMIZED` is returned * is `:best-fit-progressive` - `AllocationStrategy/BEST_FIT_PROGRESSIVE` is returned * is `:best-fit` - `AllocationStrategy/BEST_FIT` is returned * is `:spot-price-capacity-optimized` - `AllocationStrategy/SPOT_PRICE_CAPACITY_OPTIMIZED` is returned If a value is not found or matches the above criteria, nil is returned.
(build-cfn-compute-environment-builder builder id config)
The build-cfn-compute-environment-builder function updates a CfnComputeEnvironment$Builder instance using the provided configuration. The function takes the CfnComputeEnvironment$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
computeEnvironmentName | java.lang.String | cdk.support/lookup-entry | :compute-environment-name |
computeResources | software.amazon.awscdk.services.batch.CfnComputeEnvironment$ComputeResourcesProperty | cdk.support/lookup-entry | :compute-resources |
eksConfiguration | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :eks-configuration |
replaceComputeEnvironment | java.lang.Boolean | cdk.support/lookup-entry | :replace-compute-environment |
serviceRole | java.lang.String | cdk.support/lookup-entry | :service-role |
state | java.lang.String | cdk.support/lookup-entry | :state |
tags | java.util.Map | cdk.support/lookup-entry | :tags |
type | java.lang.String | cdk.support/lookup-entry | :type |
unmanagedvCpus | java.lang.Number | cdk.support/lookup-entry | :unmanagedv-cpus |
updatePolicy | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :update-policy |
The build-cfn-compute-environment-builder function updates a CfnComputeEnvironment$Builder instance using the provided configuration. The function takes the CfnComputeEnvironment$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `computeEnvironmentName` | java.lang.String | [[cdk.support/lookup-entry]] | `:compute-environment-name` | | `computeResources` | software.amazon.awscdk.services.batch.CfnComputeEnvironment$ComputeResourcesProperty | [[cdk.support/lookup-entry]] | `:compute-resources` | | `eksConfiguration` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:eks-configuration` | | `replaceComputeEnvironment` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:replace-compute-environment` | | `serviceRole` | java.lang.String | [[cdk.support/lookup-entry]] | `:service-role` | | `state` | java.lang.String | [[cdk.support/lookup-entry]] | `:state` | | `tags` | java.util.Map | [[cdk.support/lookup-entry]] | `:tags` | | `type` | java.lang.String | [[cdk.support/lookup-entry]] | `:type` | | `unmanagedvCpus` | java.lang.Number | [[cdk.support/lookup-entry]] | `:unmanagedv-cpus` | | `updatePolicy` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:update-policy` |
(build-cfn-compute-environment-compute-resources-property-builder builder
id
config)
The build-cfn-compute-environment-compute-resources-property-builder function updates a CfnComputeEnvironment$ComputeResourcesProperty$Builder instance using the provided configuration. The function takes the CfnComputeEnvironment$ComputeResourcesProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
allocationStrategy | java.lang.String | cdk.support/lookup-entry | :allocation-strategy |
bidPercentage | java.lang.Number | cdk.support/lookup-entry | :bid-percentage |
desiredvCpus | java.lang.Number | cdk.support/lookup-entry | :desiredv-cpus |
ec2Configuration | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :ec2-configuration |
ec2KeyPair | java.lang.String | cdk.support/lookup-entry | :ec2-key-pair |
imageId | java.lang.String | cdk.support/lookup-entry | :image-id |
instanceRole | java.lang.String | cdk.support/lookup-entry | :instance-role |
instanceTypes | java.util.List | cdk.support/lookup-entry | :instance-types |
launchTemplate | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :launch-template |
maxvCpus | java.lang.Number | cdk.support/lookup-entry | :maxv-cpus |
minvCpus | java.lang.Number | cdk.support/lookup-entry | :minv-cpus |
placementGroup | java.lang.String | cdk.support/lookup-entry | :placement-group |
securityGroupIds | java.util.List | cdk.support/lookup-entry | :security-group-ids |
spotIamFleetRole | java.lang.String | cdk.support/lookup-entry | :spot-iam-fleet-role |
subnets | java.util.List | cdk.support/lookup-entry | :subnets |
tags | java.util.Map | cdk.support/lookup-entry | :tags |
type | java.lang.String | cdk.support/lookup-entry | :type |
updateToLatestImageVersion | java.lang.Boolean | cdk.support/lookup-entry | :update-to-latest-image-version |
The build-cfn-compute-environment-compute-resources-property-builder function updates a CfnComputeEnvironment$ComputeResourcesProperty$Builder instance using the provided configuration. The function takes the CfnComputeEnvironment$ComputeResourcesProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `allocationStrategy` | java.lang.String | [[cdk.support/lookup-entry]] | `:allocation-strategy` | | `bidPercentage` | java.lang.Number | [[cdk.support/lookup-entry]] | `:bid-percentage` | | `desiredvCpus` | java.lang.Number | [[cdk.support/lookup-entry]] | `:desiredv-cpus` | | `ec2Configuration` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:ec2-configuration` | | `ec2KeyPair` | java.lang.String | [[cdk.support/lookup-entry]] | `:ec2-key-pair` | | `imageId` | java.lang.String | [[cdk.support/lookup-entry]] | `:image-id` | | `instanceRole` | java.lang.String | [[cdk.support/lookup-entry]] | `:instance-role` | | `instanceTypes` | java.util.List | [[cdk.support/lookup-entry]] | `:instance-types` | | `launchTemplate` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:launch-template` | | `maxvCpus` | java.lang.Number | [[cdk.support/lookup-entry]] | `:maxv-cpus` | | `minvCpus` | java.lang.Number | [[cdk.support/lookup-entry]] | `:minv-cpus` | | `placementGroup` | java.lang.String | [[cdk.support/lookup-entry]] | `:placement-group` | | `securityGroupIds` | java.util.List | [[cdk.support/lookup-entry]] | `:security-group-ids` | | `spotIamFleetRole` | java.lang.String | [[cdk.support/lookup-entry]] | `:spot-iam-fleet-role` | | `subnets` | java.util.List | [[cdk.support/lookup-entry]] | `:subnets` | | `tags` | java.util.Map | [[cdk.support/lookup-entry]] | `:tags` | | `type` | java.lang.String | [[cdk.support/lookup-entry]] | `:type` | | `updateToLatestImageVersion` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:update-to-latest-image-version` |
(build-cfn-compute-environment-ec2-configuration-object-property-builder builder
id
config)
The build-cfn-compute-environment-ec2-configuration-object-property-builder function updates a CfnComputeEnvironment$Ec2ConfigurationObjectProperty$Builder instance using the provided configuration. The function takes the CfnComputeEnvironment$Ec2ConfigurationObjectProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
imageIdOverride | java.lang.String | cdk.support/lookup-entry | :image-id-override |
imageKubernetesVersion | java.lang.String | cdk.support/lookup-entry | :image-kubernetes-version |
imageType | java.lang.String | cdk.support/lookup-entry | :image-type |
The build-cfn-compute-environment-ec2-configuration-object-property-builder function updates a CfnComputeEnvironment$Ec2ConfigurationObjectProperty$Builder instance using the provided configuration. The function takes the CfnComputeEnvironment$Ec2ConfigurationObjectProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `imageIdOverride` | java.lang.String | [[cdk.support/lookup-entry]] | `:image-id-override` | | `imageKubernetesVersion` | java.lang.String | [[cdk.support/lookup-entry]] | `:image-kubernetes-version` | | `imageType` | java.lang.String | [[cdk.support/lookup-entry]] | `:image-type` |
(build-cfn-compute-environment-eks-configuration-property-builder builder
id
config)
The build-cfn-compute-environment-eks-configuration-property-builder function updates a CfnComputeEnvironment$EksConfigurationProperty$Builder instance using the provided configuration. The function takes the CfnComputeEnvironment$EksConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
eksClusterArn | java.lang.String | cdk.support/lookup-entry | :eks-cluster-arn |
kubernetesNamespace | java.lang.String | cdk.support/lookup-entry | :kubernetes-namespace |
The build-cfn-compute-environment-eks-configuration-property-builder function updates a CfnComputeEnvironment$EksConfigurationProperty$Builder instance using the provided configuration. The function takes the CfnComputeEnvironment$EksConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `eksClusterArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:eks-cluster-arn` | | `kubernetesNamespace` | java.lang.String | [[cdk.support/lookup-entry]] | `:kubernetes-namespace` |
(build-cfn-compute-environment-launch-template-specification-property-builder
builder
id
config)
The build-cfn-compute-environment-launch-template-specification-property-builder function updates a CfnComputeEnvironment$LaunchTemplateSpecificationProperty$Builder instance using the provided configuration. The function takes the CfnComputeEnvironment$LaunchTemplateSpecificationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
launchTemplateId | java.lang.String | cdk.support/lookup-entry | :launch-template-id |
launchTemplateName | java.lang.String | cdk.support/lookup-entry | :launch-template-name |
version | java.lang.String | cdk.support/lookup-entry | :version |
The build-cfn-compute-environment-launch-template-specification-property-builder function updates a CfnComputeEnvironment$LaunchTemplateSpecificationProperty$Builder instance using the provided configuration. The function takes the CfnComputeEnvironment$LaunchTemplateSpecificationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `launchTemplateId` | java.lang.String | [[cdk.support/lookup-entry]] | `:launch-template-id` | | `launchTemplateName` | java.lang.String | [[cdk.support/lookup-entry]] | `:launch-template-name` | | `version` | java.lang.String | [[cdk.support/lookup-entry]] | `:version` |
(build-cfn-compute-environment-props-builder builder id config)
The build-cfn-compute-environment-props-builder function updates a CfnComputeEnvironmentProps$Builder instance using the provided configuration. The function takes the CfnComputeEnvironmentProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
computeEnvironmentName | java.lang.String | cdk.support/lookup-entry | :compute-environment-name |
computeResources | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :compute-resources |
eksConfiguration | software.amazon.awscdk.services.batch.CfnComputeEnvironment$EksConfigurationProperty | cdk.support/lookup-entry | :eks-configuration |
replaceComputeEnvironment | java.lang.Boolean | cdk.support/lookup-entry | :replace-compute-environment |
serviceRole | java.lang.String | cdk.support/lookup-entry | :service-role |
state | java.lang.String | cdk.support/lookup-entry | :state |
tags | java.util.Map | cdk.support/lookup-entry | :tags |
type | java.lang.String | cdk.support/lookup-entry | :type |
unmanagedvCpus | java.lang.Number | cdk.support/lookup-entry | :unmanagedv-cpus |
updatePolicy | software.amazon.awscdk.services.batch.CfnComputeEnvironment$UpdatePolicyProperty | cdk.support/lookup-entry | :update-policy |
The build-cfn-compute-environment-props-builder function updates a CfnComputeEnvironmentProps$Builder instance using the provided configuration. The function takes the CfnComputeEnvironmentProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `computeEnvironmentName` | java.lang.String | [[cdk.support/lookup-entry]] | `:compute-environment-name` | | `computeResources` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:compute-resources` | | `eksConfiguration` | software.amazon.awscdk.services.batch.CfnComputeEnvironment$EksConfigurationProperty | [[cdk.support/lookup-entry]] | `:eks-configuration` | | `replaceComputeEnvironment` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:replace-compute-environment` | | `serviceRole` | java.lang.String | [[cdk.support/lookup-entry]] | `:service-role` | | `state` | java.lang.String | [[cdk.support/lookup-entry]] | `:state` | | `tags` | java.util.Map | [[cdk.support/lookup-entry]] | `:tags` | | `type` | java.lang.String | [[cdk.support/lookup-entry]] | `:type` | | `unmanagedvCpus` | java.lang.Number | [[cdk.support/lookup-entry]] | `:unmanagedv-cpus` | | `updatePolicy` | software.amazon.awscdk.services.batch.CfnComputeEnvironment$UpdatePolicyProperty | [[cdk.support/lookup-entry]] | `:update-policy` |
(build-cfn-compute-environment-update-policy-property-builder builder id config)
The build-cfn-compute-environment-update-policy-property-builder function updates a CfnComputeEnvironment$UpdatePolicyProperty$Builder instance using the provided configuration. The function takes the CfnComputeEnvironment$UpdatePolicyProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
jobExecutionTimeoutMinutes | java.lang.Number | cdk.support/lookup-entry | :job-execution-timeout-minutes |
terminateJobsOnUpdate | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :terminate-jobs-on-update |
The build-cfn-compute-environment-update-policy-property-builder function updates a CfnComputeEnvironment$UpdatePolicyProperty$Builder instance using the provided configuration. The function takes the CfnComputeEnvironment$UpdatePolicyProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `jobExecutionTimeoutMinutes` | java.lang.Number | [[cdk.support/lookup-entry]] | `:job-execution-timeout-minutes` | | `terminateJobsOnUpdate` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:terminate-jobs-on-update` |
(build-cfn-job-definition-authorization-config-property-builder builder
id
config)
The build-cfn-job-definition-authorization-config-property-builder function updates a CfnJobDefinition$AuthorizationConfigProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$AuthorizationConfigProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
accessPointId | java.lang.String | cdk.support/lookup-entry | :access-point-id |
iam | java.lang.String | cdk.support/lookup-entry | :iam |
The build-cfn-job-definition-authorization-config-property-builder function updates a CfnJobDefinition$AuthorizationConfigProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$AuthorizationConfigProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `accessPointId` | java.lang.String | [[cdk.support/lookup-entry]] | `:access-point-id` | | `iam` | java.lang.String | [[cdk.support/lookup-entry]] | `:iam` |
(build-cfn-job-definition-builder builder id config)
The build-cfn-job-definition-builder function updates a CfnJobDefinition$Builder instance using the provided configuration. The function takes the CfnJobDefinition$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
containerProperties | software.amazon.awscdk.services.batch.CfnJobDefinition$ContainerPropertiesProperty | cdk.support/lookup-entry | :container-properties |
ecsProperties | software.amazon.awscdk.services.batch.CfnJobDefinition$EcsPropertiesProperty | cdk.support/lookup-entry | :ecs-properties |
eksProperties | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :eks-properties |
jobDefinitionName | java.lang.String | cdk.support/lookup-entry | :job-definition-name |
nodeProperties | software.amazon.awscdk.services.batch.CfnJobDefinition$NodePropertiesProperty | cdk.support/lookup-entry | :node-properties |
parameters | java.lang.Object | cdk.support/lookup-entry | :parameters |
platformCapabilities | java.util.List | cdk.support/lookup-entry | :platform-capabilities |
propagateTags | java.lang.Boolean | cdk.support/lookup-entry | :propagate-tags |
retryStrategy | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :retry-strategy |
schedulingPriority | java.lang.Number | cdk.support/lookup-entry | :scheduling-priority |
tags | java.lang.Object | cdk.support/lookup-entry | :tags |
timeout | software.amazon.awscdk.services.batch.CfnJobDefinition$TimeoutProperty | cdk.support/lookup-entry | :timeout |
type | java.lang.String | cdk.support/lookup-entry | :type |
The build-cfn-job-definition-builder function updates a CfnJobDefinition$Builder instance using the provided configuration. The function takes the CfnJobDefinition$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `containerProperties` | software.amazon.awscdk.services.batch.CfnJobDefinition$ContainerPropertiesProperty | [[cdk.support/lookup-entry]] | `:container-properties` | | `ecsProperties` | software.amazon.awscdk.services.batch.CfnJobDefinition$EcsPropertiesProperty | [[cdk.support/lookup-entry]] | `:ecs-properties` | | `eksProperties` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:eks-properties` | | `jobDefinitionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:job-definition-name` | | `nodeProperties` | software.amazon.awscdk.services.batch.CfnJobDefinition$NodePropertiesProperty | [[cdk.support/lookup-entry]] | `:node-properties` | | `parameters` | java.lang.Object | [[cdk.support/lookup-entry]] | `:parameters` | | `platformCapabilities` | java.util.List | [[cdk.support/lookup-entry]] | `:platform-capabilities` | | `propagateTags` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:propagate-tags` | | `retryStrategy` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:retry-strategy` | | `schedulingPriority` | java.lang.Number | [[cdk.support/lookup-entry]] | `:scheduling-priority` | | `tags` | java.lang.Object | [[cdk.support/lookup-entry]] | `:tags` | | `timeout` | software.amazon.awscdk.services.batch.CfnJobDefinition$TimeoutProperty | [[cdk.support/lookup-entry]] | `:timeout` | | `type` | java.lang.String | [[cdk.support/lookup-entry]] | `:type` |
(build-cfn-job-definition-container-properties-property-builder builder
id
config)
The build-cfn-job-definition-container-properties-property-builder function updates a CfnJobDefinition$ContainerPropertiesProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$ContainerPropertiesProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
command | java.util.List | cdk.support/lookup-entry | :command |
environment | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :environment |
ephemeralStorage | software.amazon.awscdk.services.batch.CfnJobDefinition$EphemeralStorageProperty | cdk.support/lookup-entry | :ephemeral-storage |
executionRoleArn | java.lang.String | cdk.support/lookup-entry | :execution-role-arn |
fargatePlatformConfiguration | software.amazon.awscdk.services.batch.CfnJobDefinition$FargatePlatformConfigurationProperty | cdk.support/lookup-entry | :fargate-platform-configuration |
image | java.lang.String | cdk.support/lookup-entry | :image |
instanceType | java.lang.String | cdk.support/lookup-entry | :instance-type |
jobRoleArn | java.lang.String | cdk.support/lookup-entry | :job-role-arn |
linuxParameters | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :linux-parameters |
logConfiguration | software.amazon.awscdk.services.batch.CfnJobDefinition$LogConfigurationProperty | cdk.support/lookup-entry | :log-configuration |
memory | java.lang.Number | cdk.support/lookup-entry | :memory |
mountPoints | java.util.List | cdk.support/lookup-entry | :mount-points |
networkConfiguration | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :network-configuration |
privileged | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :privileged |
readonlyRootFilesystem | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :readonly-root-filesystem |
repositoryCredentials | software.amazon.awscdk.services.batch.CfnJobDefinition$RepositoryCredentialsProperty | cdk.support/lookup-entry | :repository-credentials |
resourceRequirements | java.util.List | cdk.support/lookup-entry | :resource-requirements |
runtimePlatform | software.amazon.awscdk.services.batch.CfnJobDefinition$RuntimePlatformProperty | cdk.support/lookup-entry | :runtime-platform |
secrets | java.util.List | cdk.support/lookup-entry | :secrets |
ulimits | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :ulimits |
user | java.lang.String | cdk.support/lookup-entry | :user |
vcpus | java.lang.Number | cdk.support/lookup-entry | :vcpus |
volumes | java.util.List | cdk.support/lookup-entry | :volumes |
The build-cfn-job-definition-container-properties-property-builder function updates a CfnJobDefinition$ContainerPropertiesProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$ContainerPropertiesProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `command` | java.util.List | [[cdk.support/lookup-entry]] | `:command` | | `environment` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:environment` | | `ephemeralStorage` | software.amazon.awscdk.services.batch.CfnJobDefinition$EphemeralStorageProperty | [[cdk.support/lookup-entry]] | `:ephemeral-storage` | | `executionRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:execution-role-arn` | | `fargatePlatformConfiguration` | software.amazon.awscdk.services.batch.CfnJobDefinition$FargatePlatformConfigurationProperty | [[cdk.support/lookup-entry]] | `:fargate-platform-configuration` | | `image` | java.lang.String | [[cdk.support/lookup-entry]] | `:image` | | `instanceType` | java.lang.String | [[cdk.support/lookup-entry]] | `:instance-type` | | `jobRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:job-role-arn` | | `linuxParameters` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:linux-parameters` | | `logConfiguration` | software.amazon.awscdk.services.batch.CfnJobDefinition$LogConfigurationProperty | [[cdk.support/lookup-entry]] | `:log-configuration` | | `memory` | java.lang.Number | [[cdk.support/lookup-entry]] | `:memory` | | `mountPoints` | java.util.List | [[cdk.support/lookup-entry]] | `:mount-points` | | `networkConfiguration` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:network-configuration` | | `privileged` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:privileged` | | `readonlyRootFilesystem` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:readonly-root-filesystem` | | `repositoryCredentials` | software.amazon.awscdk.services.batch.CfnJobDefinition$RepositoryCredentialsProperty | [[cdk.support/lookup-entry]] | `:repository-credentials` | | `resourceRequirements` | java.util.List | [[cdk.support/lookup-entry]] | `:resource-requirements` | | `runtimePlatform` | software.amazon.awscdk.services.batch.CfnJobDefinition$RuntimePlatformProperty | [[cdk.support/lookup-entry]] | `:runtime-platform` | | `secrets` | java.util.List | [[cdk.support/lookup-entry]] | `:secrets` | | `ulimits` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:ulimits` | | `user` | java.lang.String | [[cdk.support/lookup-entry]] | `:user` | | `vcpus` | java.lang.Number | [[cdk.support/lookup-entry]] | `:vcpus` | | `volumes` | java.util.List | [[cdk.support/lookup-entry]] | `:volumes` |
(build-cfn-job-definition-device-property-builder builder id config)
The build-cfn-job-definition-device-property-builder function updates a CfnJobDefinition$DeviceProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$DeviceProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
containerPath | java.lang.String | cdk.support/lookup-entry | :container-path |
hostPath | java.lang.String | cdk.support/lookup-entry | :host-path |
permissions | java.util.List | cdk.support/lookup-entry | :permissions |
The build-cfn-job-definition-device-property-builder function updates a CfnJobDefinition$DeviceProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$DeviceProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `containerPath` | java.lang.String | [[cdk.support/lookup-entry]] | `:container-path` | | `hostPath` | java.lang.String | [[cdk.support/lookup-entry]] | `:host-path` | | `permissions` | java.util.List | [[cdk.support/lookup-entry]] | `:permissions` |
(build-cfn-job-definition-ecs-properties-property-builder builder id config)
The build-cfn-job-definition-ecs-properties-property-builder function updates a CfnJobDefinition$EcsPropertiesProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$EcsPropertiesProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
taskProperties | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :task-properties |
The build-cfn-job-definition-ecs-properties-property-builder function updates a CfnJobDefinition$EcsPropertiesProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$EcsPropertiesProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `taskProperties` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:task-properties` |
(build-cfn-job-definition-ecs-task-properties-property-builder builder
id
config)
The build-cfn-job-definition-ecs-task-properties-property-builder function updates a CfnJobDefinition$EcsTaskPropertiesProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$EcsTaskPropertiesProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
containers | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :containers |
ephemeralStorage | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :ephemeral-storage |
executionRoleArn | java.lang.String | cdk.support/lookup-entry | :execution-role-arn |
ipcMode | java.lang.String | cdk.support/lookup-entry | :ipc-mode |
networkConfiguration | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :network-configuration |
pidMode | java.lang.String | cdk.support/lookup-entry | :pid-mode |
platformVersion | java.lang.String | cdk.support/lookup-entry | :platform-version |
runtimePlatform | software.amazon.awscdk.services.batch.CfnJobDefinition$RuntimePlatformProperty | cdk.support/lookup-entry | :runtime-platform |
taskRoleArn | java.lang.String | cdk.support/lookup-entry | :task-role-arn |
volumes | java.util.List | cdk.support/lookup-entry | :volumes |
The build-cfn-job-definition-ecs-task-properties-property-builder function updates a CfnJobDefinition$EcsTaskPropertiesProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$EcsTaskPropertiesProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `containers` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:containers` | | `ephemeralStorage` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:ephemeral-storage` | | `executionRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:execution-role-arn` | | `ipcMode` | java.lang.String | [[cdk.support/lookup-entry]] | `:ipc-mode` | | `networkConfiguration` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:network-configuration` | | `pidMode` | java.lang.String | [[cdk.support/lookup-entry]] | `:pid-mode` | | `platformVersion` | java.lang.String | [[cdk.support/lookup-entry]] | `:platform-version` | | `runtimePlatform` | software.amazon.awscdk.services.batch.CfnJobDefinition$RuntimePlatformProperty | [[cdk.support/lookup-entry]] | `:runtime-platform` | | `taskRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:task-role-arn` | | `volumes` | java.util.List | [[cdk.support/lookup-entry]] | `:volumes` |
(build-cfn-job-definition-efs-volume-configuration-property-builder builder
id
config)
The build-cfn-job-definition-efs-volume-configuration-property-builder function updates a CfnJobDefinition$EfsVolumeConfigurationProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$EfsVolumeConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
authorizationConfig | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :authorization-config |
fileSystemId | java.lang.String | cdk.support/lookup-entry | :file-system-id |
rootDirectory | java.lang.String | cdk.support/lookup-entry | :root-directory |
transitEncryption | java.lang.String | cdk.support/lookup-entry | :transit-encryption |
transitEncryptionPort | java.lang.Number | cdk.support/lookup-entry | :transit-encryption-port |
The build-cfn-job-definition-efs-volume-configuration-property-builder function updates a CfnJobDefinition$EfsVolumeConfigurationProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$EfsVolumeConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `authorizationConfig` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:authorization-config` | | `fileSystemId` | java.lang.String | [[cdk.support/lookup-entry]] | `:file-system-id` | | `rootDirectory` | java.lang.String | [[cdk.support/lookup-entry]] | `:root-directory` | | `transitEncryption` | java.lang.String | [[cdk.support/lookup-entry]] | `:transit-encryption` | | `transitEncryptionPort` | java.lang.Number | [[cdk.support/lookup-entry]] | `:transit-encryption-port` |
(build-cfn-job-definition-eks-container-environment-variable-property-builder
builder
id
config)
The build-cfn-job-definition-eks-container-environment-variable-property-builder function updates a CfnJobDefinition$EksContainerEnvironmentVariableProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$EksContainerEnvironmentVariableProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
name | java.lang.String | cdk.support/lookup-entry | :name |
value | java.lang.String | cdk.support/lookup-entry | :value |
The build-cfn-job-definition-eks-container-environment-variable-property-builder function updates a CfnJobDefinition$EksContainerEnvironmentVariableProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$EksContainerEnvironmentVariableProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `value` | java.lang.String | [[cdk.support/lookup-entry]] | `:value` |
(build-cfn-job-definition-eks-container-property-builder builder id config)
The build-cfn-job-definition-eks-container-property-builder function updates a CfnJobDefinition$EksContainerProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$EksContainerProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
args | java.util.List | cdk.support/lookup-entry | :args |
command | java.util.List | cdk.support/lookup-entry | :command |
env | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :env |
image | java.lang.String | cdk.support/lookup-entry | :image |
imagePullPolicy | java.lang.String | cdk.support/lookup-entry | :image-pull-policy |
name | java.lang.String | cdk.support/lookup-entry | :name |
resources | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :resources |
securityContext | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :security-context |
volumeMounts | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :volume-mounts |
The build-cfn-job-definition-eks-container-property-builder function updates a CfnJobDefinition$EksContainerProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$EksContainerProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `args` | java.util.List | [[cdk.support/lookup-entry]] | `:args` | | `command` | java.util.List | [[cdk.support/lookup-entry]] | `:command` | | `env` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:env` | | `image` | java.lang.String | [[cdk.support/lookup-entry]] | `:image` | | `imagePullPolicy` | java.lang.String | [[cdk.support/lookup-entry]] | `:image-pull-policy` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `resources` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:resources` | | `securityContext` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:security-context` | | `volumeMounts` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:volume-mounts` |
(build-cfn-job-definition-eks-container-volume-mount-property-builder builder
id
config)
The build-cfn-job-definition-eks-container-volume-mount-property-builder function updates a CfnJobDefinition$EksContainerVolumeMountProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$EksContainerVolumeMountProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
mountPath | java.lang.String | cdk.support/lookup-entry | :mount-path |
name | java.lang.String | cdk.support/lookup-entry | :name |
readOnly | java.lang.Boolean | cdk.support/lookup-entry | :read-only |
The build-cfn-job-definition-eks-container-volume-mount-property-builder function updates a CfnJobDefinition$EksContainerVolumeMountProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$EksContainerVolumeMountProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `mountPath` | java.lang.String | [[cdk.support/lookup-entry]] | `:mount-path` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `readOnly` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:read-only` |
(build-cfn-job-definition-eks-properties-property-builder builder id config)
The build-cfn-job-definition-eks-properties-property-builder function updates a CfnJobDefinition$EksPropertiesProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$EksPropertiesProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
podProperties | software.amazon.awscdk.services.batch.CfnJobDefinition$PodPropertiesProperty | cdk.support/lookup-entry | :pod-properties |
The build-cfn-job-definition-eks-properties-property-builder function updates a CfnJobDefinition$EksPropertiesProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$EksPropertiesProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `podProperties` | software.amazon.awscdk.services.batch.CfnJobDefinition$PodPropertiesProperty | [[cdk.support/lookup-entry]] | `:pod-properties` |
(build-cfn-job-definition-eks-secret-property-builder builder id config)
The build-cfn-job-definition-eks-secret-property-builder function updates a CfnJobDefinition$EksSecretProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$EksSecretProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
optional | java.lang.Boolean | cdk.support/lookup-entry | :optional |
secretName | java.lang.String | cdk.support/lookup-entry | :secret-name |
The build-cfn-job-definition-eks-secret-property-builder function updates a CfnJobDefinition$EksSecretProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$EksSecretProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `optional` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:optional` | | `secretName` | java.lang.String | [[cdk.support/lookup-entry]] | `:secret-name` |
(build-cfn-job-definition-eks-volume-property-builder builder id config)
The build-cfn-job-definition-eks-volume-property-builder function updates a CfnJobDefinition$EksVolumeProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$EksVolumeProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
emptyDir | software.amazon.awscdk.services.batch.CfnJobDefinition$EmptyDirProperty | cdk.support/lookup-entry | :empty-dir |
hostPath | software.amazon.awscdk.services.batch.CfnJobDefinition$HostPathProperty | cdk.support/lookup-entry | :host-path |
name | java.lang.String | cdk.support/lookup-entry | :name |
secret | software.amazon.awscdk.services.batch.CfnJobDefinition$EksSecretProperty | cdk.support/lookup-entry | :secret |
The build-cfn-job-definition-eks-volume-property-builder function updates a CfnJobDefinition$EksVolumeProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$EksVolumeProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `emptyDir` | software.amazon.awscdk.services.batch.CfnJobDefinition$EmptyDirProperty | [[cdk.support/lookup-entry]] | `:empty-dir` | | `hostPath` | software.amazon.awscdk.services.batch.CfnJobDefinition$HostPathProperty | [[cdk.support/lookup-entry]] | `:host-path` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `secret` | software.amazon.awscdk.services.batch.CfnJobDefinition$EksSecretProperty | [[cdk.support/lookup-entry]] | `:secret` |
(build-cfn-job-definition-empty-dir-property-builder builder id config)
The build-cfn-job-definition-empty-dir-property-builder function updates a CfnJobDefinition$EmptyDirProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$EmptyDirProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
medium | java.lang.String | cdk.support/lookup-entry | :medium |
sizeLimit | java.lang.String | cdk.support/lookup-entry | :size-limit |
The build-cfn-job-definition-empty-dir-property-builder function updates a CfnJobDefinition$EmptyDirProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$EmptyDirProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `medium` | java.lang.String | [[cdk.support/lookup-entry]] | `:medium` | | `sizeLimit` | java.lang.String | [[cdk.support/lookup-entry]] | `:size-limit` |
(build-cfn-job-definition-environment-property-builder builder id config)
The build-cfn-job-definition-environment-property-builder function updates a CfnJobDefinition$EnvironmentProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$EnvironmentProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
name | java.lang.String | cdk.support/lookup-entry | :name |
value | java.lang.String | cdk.support/lookup-entry | :value |
The build-cfn-job-definition-environment-property-builder function updates a CfnJobDefinition$EnvironmentProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$EnvironmentProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `value` | java.lang.String | [[cdk.support/lookup-entry]] | `:value` |
(build-cfn-job-definition-ephemeral-storage-property-builder builder id config)
The build-cfn-job-definition-ephemeral-storage-property-builder function updates a CfnJobDefinition$EphemeralStorageProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$EphemeralStorageProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
sizeInGiB | java.lang.Number | cdk.support/lookup-entry | :size-in-gi-b |
The build-cfn-job-definition-ephemeral-storage-property-builder function updates a CfnJobDefinition$EphemeralStorageProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$EphemeralStorageProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `sizeInGiB` | java.lang.Number | [[cdk.support/lookup-entry]] | `:size-in-gi-b` |
(build-cfn-job-definition-evaluate-on-exit-property-builder builder id config)
The build-cfn-job-definition-evaluate-on-exit-property-builder function updates a CfnJobDefinition$EvaluateOnExitProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$EvaluateOnExitProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
action | java.lang.String | cdk.support/lookup-entry | :action |
onExitCode | java.lang.String | cdk.support/lookup-entry | :on-exit-code |
onReason | java.lang.String | cdk.support/lookup-entry | :on-reason |
onStatusReason | java.lang.String | cdk.support/lookup-entry | :on-status-reason |
The build-cfn-job-definition-evaluate-on-exit-property-builder function updates a CfnJobDefinition$EvaluateOnExitProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$EvaluateOnExitProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `action` | java.lang.String | [[cdk.support/lookup-entry]] | `:action` | | `onExitCode` | java.lang.String | [[cdk.support/lookup-entry]] | `:on-exit-code` | | `onReason` | java.lang.String | [[cdk.support/lookup-entry]] | `:on-reason` | | `onStatusReason` | java.lang.String | [[cdk.support/lookup-entry]] | `:on-status-reason` |
(build-cfn-job-definition-fargate-platform-configuration-property-builder
builder
id
config)
The build-cfn-job-definition-fargate-platform-configuration-property-builder function updates a CfnJobDefinition$FargatePlatformConfigurationProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$FargatePlatformConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
platformVersion | java.lang.String | cdk.support/lookup-entry | :platform-version |
The build-cfn-job-definition-fargate-platform-configuration-property-builder function updates a CfnJobDefinition$FargatePlatformConfigurationProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$FargatePlatformConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `platformVersion` | java.lang.String | [[cdk.support/lookup-entry]] | `:platform-version` |
(build-cfn-job-definition-host-path-property-builder builder id config)
The build-cfn-job-definition-host-path-property-builder function updates a CfnJobDefinition$HostPathProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$HostPathProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
path | java.lang.String | cdk.support/lookup-entry | :path |
The build-cfn-job-definition-host-path-property-builder function updates a CfnJobDefinition$HostPathProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$HostPathProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `path` | java.lang.String | [[cdk.support/lookup-entry]] | `:path` |
(build-cfn-job-definition-image-pull-secret-property-builder builder id config)
The build-cfn-job-definition-image-pull-secret-property-builder function updates a CfnJobDefinition$ImagePullSecretProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$ImagePullSecretProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
name | java.lang.String | cdk.support/lookup-entry | :name |
The build-cfn-job-definition-image-pull-secret-property-builder function updates a CfnJobDefinition$ImagePullSecretProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$ImagePullSecretProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
(build-cfn-job-definition-linux-parameters-property-builder builder id config)
The build-cfn-job-definition-linux-parameters-property-builder function updates a CfnJobDefinition$LinuxParametersProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$LinuxParametersProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
devices | java.util.List | cdk.support/lookup-entry | :devices |
initProcessEnabled | java.lang.Boolean | cdk.support/lookup-entry | :init-process-enabled |
maxSwap | java.lang.Number | cdk.support/lookup-entry | :max-swap |
sharedMemorySize | java.lang.Number | cdk.support/lookup-entry | :shared-memory-size |
swappiness | java.lang.Number | cdk.support/lookup-entry | :swappiness |
tmpfs | java.util.List | cdk.support/lookup-entry | :tmpfs |
The build-cfn-job-definition-linux-parameters-property-builder function updates a CfnJobDefinition$LinuxParametersProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$LinuxParametersProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `devices` | java.util.List | [[cdk.support/lookup-entry]] | `:devices` | | `initProcessEnabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:init-process-enabled` | | `maxSwap` | java.lang.Number | [[cdk.support/lookup-entry]] | `:max-swap` | | `sharedMemorySize` | java.lang.Number | [[cdk.support/lookup-entry]] | `:shared-memory-size` | | `swappiness` | java.lang.Number | [[cdk.support/lookup-entry]] | `:swappiness` | | `tmpfs` | java.util.List | [[cdk.support/lookup-entry]] | `:tmpfs` |
(build-cfn-job-definition-log-configuration-property-builder builder id config)
The build-cfn-job-definition-log-configuration-property-builder function updates a CfnJobDefinition$LogConfigurationProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$LogConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
logDriver | java.lang.String | cdk.support/lookup-entry | :log-driver |
options | java.lang.Object | cdk.support/lookup-entry | :options |
secretOptions | java.util.List | cdk.support/lookup-entry | :secret-options |
The build-cfn-job-definition-log-configuration-property-builder function updates a CfnJobDefinition$LogConfigurationProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$LogConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `logDriver` | java.lang.String | [[cdk.support/lookup-entry]] | `:log-driver` | | `options` | java.lang.Object | [[cdk.support/lookup-entry]] | `:options` | | `secretOptions` | java.util.List | [[cdk.support/lookup-entry]] | `:secret-options` |
(build-cfn-job-definition-metadata-property-builder builder id config)
The build-cfn-job-definition-metadata-property-builder function updates a CfnJobDefinition$MetadataProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$MetadataProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
labels | java.lang.Object | cdk.support/lookup-entry | :labels |
The build-cfn-job-definition-metadata-property-builder function updates a CfnJobDefinition$MetadataProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$MetadataProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `labels` | java.lang.Object | [[cdk.support/lookup-entry]] | `:labels` |
(build-cfn-job-definition-mount-points-property-builder builder id config)
The build-cfn-job-definition-mount-points-property-builder function updates a CfnJobDefinition$MountPointsProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$MountPointsProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
containerPath | java.lang.String | cdk.support/lookup-entry | :container-path |
readOnly | java.lang.Boolean | cdk.support/lookup-entry | :read-only |
sourceVolume | java.lang.String | cdk.support/lookup-entry | :source-volume |
The build-cfn-job-definition-mount-points-property-builder function updates a CfnJobDefinition$MountPointsProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$MountPointsProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `containerPath` | java.lang.String | [[cdk.support/lookup-entry]] | `:container-path` | | `readOnly` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:read-only` | | `sourceVolume` | java.lang.String | [[cdk.support/lookup-entry]] | `:source-volume` |
(build-cfn-job-definition-network-configuration-property-builder builder
id
config)
The build-cfn-job-definition-network-configuration-property-builder function updates a CfnJobDefinition$NetworkConfigurationProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$NetworkConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
assignPublicIp | java.lang.String | cdk.support/lookup-entry | :assign-public-ip |
The build-cfn-job-definition-network-configuration-property-builder function updates a CfnJobDefinition$NetworkConfigurationProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$NetworkConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `assignPublicIp` | java.lang.String | [[cdk.support/lookup-entry]] | `:assign-public-ip` |
(build-cfn-job-definition-node-properties-property-builder builder id config)
The build-cfn-job-definition-node-properties-property-builder function updates a CfnJobDefinition$NodePropertiesProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$NodePropertiesProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
mainNode | java.lang.Number | cdk.support/lookup-entry | :main-node |
nodeRangeProperties | java.util.List | cdk.support/lookup-entry | :node-range-properties |
numNodes | java.lang.Number | cdk.support/lookup-entry | :num-nodes |
The build-cfn-job-definition-node-properties-property-builder function updates a CfnJobDefinition$NodePropertiesProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$NodePropertiesProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `mainNode` | java.lang.Number | [[cdk.support/lookup-entry]] | `:main-node` | | `nodeRangeProperties` | java.util.List | [[cdk.support/lookup-entry]] | `:node-range-properties` | | `numNodes` | java.lang.Number | [[cdk.support/lookup-entry]] | `:num-nodes` |
(build-cfn-job-definition-node-range-property-property-builder builder
id
config)
The build-cfn-job-definition-node-range-property-property-builder function updates a CfnJobDefinition$NodeRangePropertyProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$NodeRangePropertyProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
container | software.amazon.awscdk.services.batch.CfnJobDefinition$ContainerPropertiesProperty | cdk.support/lookup-entry | :container |
ecsProperties | software.amazon.awscdk.services.batch.CfnJobDefinition$EcsPropertiesProperty | cdk.support/lookup-entry | :ecs-properties |
instanceTypes | java.util.List | cdk.support/lookup-entry | :instance-types |
targetNodes | java.lang.String | cdk.support/lookup-entry | :target-nodes |
The build-cfn-job-definition-node-range-property-property-builder function updates a CfnJobDefinition$NodeRangePropertyProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$NodeRangePropertyProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `container` | software.amazon.awscdk.services.batch.CfnJobDefinition$ContainerPropertiesProperty | [[cdk.support/lookup-entry]] | `:container` | | `ecsProperties` | software.amazon.awscdk.services.batch.CfnJobDefinition$EcsPropertiesProperty | [[cdk.support/lookup-entry]] | `:ecs-properties` | | `instanceTypes` | java.util.List | [[cdk.support/lookup-entry]] | `:instance-types` | | `targetNodes` | java.lang.String | [[cdk.support/lookup-entry]] | `:target-nodes` |
(build-cfn-job-definition-pod-properties-property-builder builder id config)
The build-cfn-job-definition-pod-properties-property-builder function updates a CfnJobDefinition$PodPropertiesProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$PodPropertiesProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
containers | java.util.List | cdk.support/lookup-entry | :containers |
dnsPolicy | java.lang.String | cdk.support/lookup-entry | :dns-policy |
hostNetwork | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :host-network |
imagePullSecrets | java.util.List | cdk.support/lookup-entry | :image-pull-secrets |
initContainers | java.util.List | cdk.support/lookup-entry | :init-containers |
metadata | software.amazon.awscdk.services.batch.CfnJobDefinition$MetadataProperty | cdk.support/lookup-entry | :metadata |
serviceAccountName | java.lang.String | cdk.support/lookup-entry | :service-account-name |
shareProcessNamespace | java.lang.Boolean | cdk.support/lookup-entry | :share-process-namespace |
volumes | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :volumes |
The build-cfn-job-definition-pod-properties-property-builder function updates a CfnJobDefinition$PodPropertiesProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$PodPropertiesProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `containers` | java.util.List | [[cdk.support/lookup-entry]] | `:containers` | | `dnsPolicy` | java.lang.String | [[cdk.support/lookup-entry]] | `:dns-policy` | | `hostNetwork` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:host-network` | | `imagePullSecrets` | java.util.List | [[cdk.support/lookup-entry]] | `:image-pull-secrets` | | `initContainers` | java.util.List | [[cdk.support/lookup-entry]] | `:init-containers` | | `metadata` | software.amazon.awscdk.services.batch.CfnJobDefinition$MetadataProperty | [[cdk.support/lookup-entry]] | `:metadata` | | `serviceAccountName` | java.lang.String | [[cdk.support/lookup-entry]] | `:service-account-name` | | `shareProcessNamespace` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:share-process-namespace` | | `volumes` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:volumes` |
(build-cfn-job-definition-props-builder builder id config)
The build-cfn-job-definition-props-builder function updates a CfnJobDefinitionProps$Builder instance using the provided configuration. The function takes the CfnJobDefinitionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
containerProperties | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :container-properties |
ecsProperties | software.amazon.awscdk.services.batch.CfnJobDefinition$EcsPropertiesProperty | cdk.support/lookup-entry | :ecs-properties |
eksProperties | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :eks-properties |
jobDefinitionName | java.lang.String | cdk.support/lookup-entry | :job-definition-name |
nodeProperties | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :node-properties |
parameters | java.lang.Object | cdk.support/lookup-entry | :parameters |
platformCapabilities | java.util.List | cdk.support/lookup-entry | :platform-capabilities |
propagateTags | java.lang.Boolean | cdk.support/lookup-entry | :propagate-tags |
retryStrategy | software.amazon.awscdk.services.batch.CfnJobDefinition$RetryStrategyProperty | cdk.support/lookup-entry | :retry-strategy |
schedulingPriority | java.lang.Number | cdk.support/lookup-entry | :scheduling-priority |
tags | java.lang.Object | cdk.support/lookup-entry | :tags |
timeout | software.amazon.awscdk.services.batch.CfnJobDefinition$TimeoutProperty | cdk.support/lookup-entry | :timeout |
type | java.lang.String | cdk.support/lookup-entry | :type |
The build-cfn-job-definition-props-builder function updates a CfnJobDefinitionProps$Builder instance using the provided configuration. The function takes the CfnJobDefinitionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `containerProperties` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:container-properties` | | `ecsProperties` | software.amazon.awscdk.services.batch.CfnJobDefinition$EcsPropertiesProperty | [[cdk.support/lookup-entry]] | `:ecs-properties` | | `eksProperties` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:eks-properties` | | `jobDefinitionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:job-definition-name` | | `nodeProperties` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:node-properties` | | `parameters` | java.lang.Object | [[cdk.support/lookup-entry]] | `:parameters` | | `platformCapabilities` | java.util.List | [[cdk.support/lookup-entry]] | `:platform-capabilities` | | `propagateTags` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:propagate-tags` | | `retryStrategy` | software.amazon.awscdk.services.batch.CfnJobDefinition$RetryStrategyProperty | [[cdk.support/lookup-entry]] | `:retry-strategy` | | `schedulingPriority` | java.lang.Number | [[cdk.support/lookup-entry]] | `:scheduling-priority` | | `tags` | java.lang.Object | [[cdk.support/lookup-entry]] | `:tags` | | `timeout` | software.amazon.awscdk.services.batch.CfnJobDefinition$TimeoutProperty | [[cdk.support/lookup-entry]] | `:timeout` | | `type` | java.lang.String | [[cdk.support/lookup-entry]] | `:type` |
(build-cfn-job-definition-repository-credentials-property-builder builder
id
config)
The build-cfn-job-definition-repository-credentials-property-builder function updates a CfnJobDefinition$RepositoryCredentialsProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$RepositoryCredentialsProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
credentialsParameter | java.lang.String | cdk.support/lookup-entry | :credentials-parameter |
The build-cfn-job-definition-repository-credentials-property-builder function updates a CfnJobDefinition$RepositoryCredentialsProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$RepositoryCredentialsProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `credentialsParameter` | java.lang.String | [[cdk.support/lookup-entry]] | `:credentials-parameter` |
(build-cfn-job-definition-resource-requirement-property-builder builder
id
config)
The build-cfn-job-definition-resource-requirement-property-builder function updates a CfnJobDefinition$ResourceRequirementProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$ResourceRequirementProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
type | java.lang.String | cdk.support/lookup-entry | :type |
value | java.lang.String | cdk.support/lookup-entry | :value |
The build-cfn-job-definition-resource-requirement-property-builder function updates a CfnJobDefinition$ResourceRequirementProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$ResourceRequirementProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `type` | java.lang.String | [[cdk.support/lookup-entry]] | `:type` | | `value` | java.lang.String | [[cdk.support/lookup-entry]] | `:value` |
(build-cfn-job-definition-resources-property-builder builder id config)
The build-cfn-job-definition-resources-property-builder function updates a CfnJobDefinition$ResourcesProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$ResourcesProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
limits | java.lang.Object | cdk.support/lookup-entry | :limits |
requests | java.lang.Object | cdk.support/lookup-entry | :requests |
The build-cfn-job-definition-resources-property-builder function updates a CfnJobDefinition$ResourcesProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$ResourcesProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `limits` | java.lang.Object | [[cdk.support/lookup-entry]] | `:limits` | | `requests` | java.lang.Object | [[cdk.support/lookup-entry]] | `:requests` |
(build-cfn-job-definition-retry-strategy-property-builder builder id config)
The build-cfn-job-definition-retry-strategy-property-builder function updates a CfnJobDefinition$RetryStrategyProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$RetryStrategyProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
attempts | java.lang.Number | cdk.support/lookup-entry | :attempts |
evaluateOnExit | java.util.List | cdk.support/lookup-entry | :evaluate-on-exit |
The build-cfn-job-definition-retry-strategy-property-builder function updates a CfnJobDefinition$RetryStrategyProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$RetryStrategyProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `attempts` | java.lang.Number | [[cdk.support/lookup-entry]] | `:attempts` | | `evaluateOnExit` | java.util.List | [[cdk.support/lookup-entry]] | `:evaluate-on-exit` |
(build-cfn-job-definition-runtime-platform-property-builder builder id config)
The build-cfn-job-definition-runtime-platform-property-builder function updates a CfnJobDefinition$RuntimePlatformProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$RuntimePlatformProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
cpuArchitecture | java.lang.String | cdk.support/lookup-entry | :cpu-architecture |
operatingSystemFamily | java.lang.String | cdk.support/lookup-entry | :operating-system-family |
The build-cfn-job-definition-runtime-platform-property-builder function updates a CfnJobDefinition$RuntimePlatformProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$RuntimePlatformProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `cpuArchitecture` | java.lang.String | [[cdk.support/lookup-entry]] | `:cpu-architecture` | | `operatingSystemFamily` | java.lang.String | [[cdk.support/lookup-entry]] | `:operating-system-family` |
(build-cfn-job-definition-secret-property-builder builder id config)
The build-cfn-job-definition-secret-property-builder function updates a CfnJobDefinition$SecretProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$SecretProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
name | java.lang.String | cdk.support/lookup-entry | :name |
valueFrom | java.lang.String | cdk.support/lookup-entry | :value-from |
The build-cfn-job-definition-secret-property-builder function updates a CfnJobDefinition$SecretProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$SecretProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `valueFrom` | java.lang.String | [[cdk.support/lookup-entry]] | `:value-from` |
(build-cfn-job-definition-security-context-property-builder builder id config)
The build-cfn-job-definition-security-context-property-builder function updates a CfnJobDefinition$SecurityContextProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$SecurityContextProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
allowPrivilegeEscalation | java.lang.Boolean | cdk.support/lookup-entry | :allow-privilege-escalation |
privileged | java.lang.Boolean | cdk.support/lookup-entry | :privileged |
readOnlyRootFilesystem | java.lang.Boolean | cdk.support/lookup-entry | :read-only-root-filesystem |
runAsGroup | java.lang.Number | cdk.support/lookup-entry | :run-as-group |
runAsNonRoot | java.lang.Boolean | cdk.support/lookup-entry | :run-as-non-root |
runAsUser | java.lang.Number | cdk.support/lookup-entry | :run-as-user |
The build-cfn-job-definition-security-context-property-builder function updates a CfnJobDefinition$SecurityContextProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$SecurityContextProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `allowPrivilegeEscalation` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:allow-privilege-escalation` | | `privileged` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:privileged` | | `readOnlyRootFilesystem` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:read-only-root-filesystem` | | `runAsGroup` | java.lang.Number | [[cdk.support/lookup-entry]] | `:run-as-group` | | `runAsNonRoot` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:run-as-non-root` | | `runAsUser` | java.lang.Number | [[cdk.support/lookup-entry]] | `:run-as-user` |
(build-cfn-job-definition-task-container-dependency-property-builder builder
id
config)
The build-cfn-job-definition-task-container-dependency-property-builder function updates a CfnJobDefinition$TaskContainerDependencyProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$TaskContainerDependencyProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
condition | java.lang.String | cdk.support/lookup-entry | :condition |
containerName | java.lang.String | cdk.support/lookup-entry | :container-name |
The build-cfn-job-definition-task-container-dependency-property-builder function updates a CfnJobDefinition$TaskContainerDependencyProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$TaskContainerDependencyProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `condition` | java.lang.String | [[cdk.support/lookup-entry]] | `:condition` | | `containerName` | java.lang.String | [[cdk.support/lookup-entry]] | `:container-name` |
(build-cfn-job-definition-task-container-properties-property-builder builder
id
config)
The build-cfn-job-definition-task-container-properties-property-builder function updates a CfnJobDefinition$TaskContainerPropertiesProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$TaskContainerPropertiesProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
command | java.util.List | cdk.support/lookup-entry | :command |
dependsOn | java.util.List | cdk.support/lookup-entry | :depends-on |
environment | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :environment |
essential | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :essential |
image | java.lang.String | cdk.support/lookup-entry | :image |
linuxParameters | software.amazon.awscdk.services.batch.CfnJobDefinition$LinuxParametersProperty | cdk.support/lookup-entry | :linux-parameters |
logConfiguration | software.amazon.awscdk.services.batch.CfnJobDefinition$LogConfigurationProperty | cdk.support/lookup-entry | :log-configuration |
mountPoints | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :mount-points |
name | java.lang.String | cdk.support/lookup-entry | :name |
privileged | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :privileged |
readonlyRootFilesystem | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :readonly-root-filesystem |
repositoryCredentials | software.amazon.awscdk.services.batch.CfnJobDefinition$RepositoryCredentialsProperty | cdk.support/lookup-entry | :repository-credentials |
resourceRequirements | java.util.List | cdk.support/lookup-entry | :resource-requirements |
secrets | java.util.List | cdk.support/lookup-entry | :secrets |
ulimits | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :ulimits |
user | java.lang.String | cdk.support/lookup-entry | :user |
The build-cfn-job-definition-task-container-properties-property-builder function updates a CfnJobDefinition$TaskContainerPropertiesProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$TaskContainerPropertiesProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `command` | java.util.List | [[cdk.support/lookup-entry]] | `:command` | | `dependsOn` | java.util.List | [[cdk.support/lookup-entry]] | `:depends-on` | | `environment` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:environment` | | `essential` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:essential` | | `image` | java.lang.String | [[cdk.support/lookup-entry]] | `:image` | | `linuxParameters` | software.amazon.awscdk.services.batch.CfnJobDefinition$LinuxParametersProperty | [[cdk.support/lookup-entry]] | `:linux-parameters` | | `logConfiguration` | software.amazon.awscdk.services.batch.CfnJobDefinition$LogConfigurationProperty | [[cdk.support/lookup-entry]] | `:log-configuration` | | `mountPoints` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:mount-points` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `privileged` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:privileged` | | `readonlyRootFilesystem` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:readonly-root-filesystem` | | `repositoryCredentials` | software.amazon.awscdk.services.batch.CfnJobDefinition$RepositoryCredentialsProperty | [[cdk.support/lookup-entry]] | `:repository-credentials` | | `resourceRequirements` | java.util.List | [[cdk.support/lookup-entry]] | `:resource-requirements` | | `secrets` | java.util.List | [[cdk.support/lookup-entry]] | `:secrets` | | `ulimits` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:ulimits` | | `user` | java.lang.String | [[cdk.support/lookup-entry]] | `:user` |
(build-cfn-job-definition-timeout-property-builder builder id config)
The build-cfn-job-definition-timeout-property-builder function updates a CfnJobDefinition$TimeoutProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$TimeoutProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
attemptDurationSeconds | java.lang.Number | cdk.support/lookup-entry | :attempt-duration-seconds |
The build-cfn-job-definition-timeout-property-builder function updates a CfnJobDefinition$TimeoutProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$TimeoutProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `attemptDurationSeconds` | java.lang.Number | [[cdk.support/lookup-entry]] | `:attempt-duration-seconds` |
(build-cfn-job-definition-tmpfs-property-builder builder id config)
The build-cfn-job-definition-tmpfs-property-builder function updates a CfnJobDefinition$TmpfsProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$TmpfsProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
containerPath | java.lang.String | cdk.support/lookup-entry | :container-path |
mountOptions | java.util.List | cdk.support/lookup-entry | :mount-options |
size | java.lang.Number | cdk.support/lookup-entry | :size |
The build-cfn-job-definition-tmpfs-property-builder function updates a CfnJobDefinition$TmpfsProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$TmpfsProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `containerPath` | java.lang.String | [[cdk.support/lookup-entry]] | `:container-path` | | `mountOptions` | java.util.List | [[cdk.support/lookup-entry]] | `:mount-options` | | `size` | java.lang.Number | [[cdk.support/lookup-entry]] | `:size` |
(build-cfn-job-definition-ulimit-property-builder builder id config)
The build-cfn-job-definition-ulimit-property-builder function updates a CfnJobDefinition$UlimitProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$UlimitProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
hardLimit | java.lang.Number | cdk.support/lookup-entry | :hard-limit |
name | java.lang.String | cdk.support/lookup-entry | :name |
softLimit | java.lang.Number | cdk.support/lookup-entry | :soft-limit |
The build-cfn-job-definition-ulimit-property-builder function updates a CfnJobDefinition$UlimitProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$UlimitProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `hardLimit` | java.lang.Number | [[cdk.support/lookup-entry]] | `:hard-limit` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `softLimit` | java.lang.Number | [[cdk.support/lookup-entry]] | `:soft-limit` |
(build-cfn-job-definition-volumes-host-property-builder builder id config)
The build-cfn-job-definition-volumes-host-property-builder function updates a CfnJobDefinition$VolumesHostProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$VolumesHostProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
sourcePath | java.lang.String | cdk.support/lookup-entry | :source-path |
The build-cfn-job-definition-volumes-host-property-builder function updates a CfnJobDefinition$VolumesHostProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$VolumesHostProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `sourcePath` | java.lang.String | [[cdk.support/lookup-entry]] | `:source-path` |
(build-cfn-job-definition-volumes-property-builder builder id config)
The build-cfn-job-definition-volumes-property-builder function updates a CfnJobDefinition$VolumesProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$VolumesProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
efsVolumeConfiguration | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :efs-volume-configuration |
host | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :host |
name | java.lang.String | cdk.support/lookup-entry | :name |
The build-cfn-job-definition-volumes-property-builder function updates a CfnJobDefinition$VolumesProperty$Builder instance using the provided configuration. The function takes the CfnJobDefinition$VolumesProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `efsVolumeConfiguration` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:efs-volume-configuration` | | `host` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:host` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
(build-cfn-job-queue-builder builder id config)
The build-cfn-job-queue-builder function updates a CfnJobQueue$Builder instance using the provided configuration. The function takes the CfnJobQueue$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
computeEnvironmentOrder | java.util.List | cdk.support/lookup-entry | :compute-environment-order |
jobQueueName | java.lang.String | cdk.support/lookup-entry | :job-queue-name |
jobStateTimeLimitActions | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :job-state-time-limit-actions |
priority | java.lang.Number | cdk.support/lookup-entry | :priority |
schedulingPolicyArn | java.lang.String | cdk.support/lookup-entry | :scheduling-policy-arn |
state | java.lang.String | cdk.support/lookup-entry | :state |
tags | java.util.Map | cdk.support/lookup-entry | :tags |
The build-cfn-job-queue-builder function updates a CfnJobQueue$Builder instance using the provided configuration. The function takes the CfnJobQueue$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `computeEnvironmentOrder` | java.util.List | [[cdk.support/lookup-entry]] | `:compute-environment-order` | | `jobQueueName` | java.lang.String | [[cdk.support/lookup-entry]] | `:job-queue-name` | | `jobStateTimeLimitActions` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:job-state-time-limit-actions` | | `priority` | java.lang.Number | [[cdk.support/lookup-entry]] | `:priority` | | `schedulingPolicyArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:scheduling-policy-arn` | | `state` | java.lang.String | [[cdk.support/lookup-entry]] | `:state` | | `tags` | java.util.Map | [[cdk.support/lookup-entry]] | `:tags` |
(build-cfn-job-queue-compute-environment-order-property-builder builder
id
config)
The build-cfn-job-queue-compute-environment-order-property-builder function updates a CfnJobQueue$ComputeEnvironmentOrderProperty$Builder instance using the provided configuration. The function takes the CfnJobQueue$ComputeEnvironmentOrderProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
computeEnvironment | java.lang.String | cdk.support/lookup-entry | :compute-environment |
order | java.lang.Number | cdk.support/lookup-entry | :order |
The build-cfn-job-queue-compute-environment-order-property-builder function updates a CfnJobQueue$ComputeEnvironmentOrderProperty$Builder instance using the provided configuration. The function takes the CfnJobQueue$ComputeEnvironmentOrderProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `computeEnvironment` | java.lang.String | [[cdk.support/lookup-entry]] | `:compute-environment` | | `order` | java.lang.Number | [[cdk.support/lookup-entry]] | `:order` |
(build-cfn-job-queue-job-state-time-limit-action-property-builder builder
id
config)
The build-cfn-job-queue-job-state-time-limit-action-property-builder function updates a CfnJobQueue$JobStateTimeLimitActionProperty$Builder instance using the provided configuration. The function takes the CfnJobQueue$JobStateTimeLimitActionProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
action | java.lang.String | cdk.support/lookup-entry | :action |
maxTimeSeconds | java.lang.Number | cdk.support/lookup-entry | :max-time-seconds |
reason | java.lang.String | cdk.support/lookup-entry | :reason |
state | java.lang.String | cdk.support/lookup-entry | :state |
The build-cfn-job-queue-job-state-time-limit-action-property-builder function updates a CfnJobQueue$JobStateTimeLimitActionProperty$Builder instance using the provided configuration. The function takes the CfnJobQueue$JobStateTimeLimitActionProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `action` | java.lang.String | [[cdk.support/lookup-entry]] | `:action` | | `maxTimeSeconds` | java.lang.Number | [[cdk.support/lookup-entry]] | `:max-time-seconds` | | `reason` | java.lang.String | [[cdk.support/lookup-entry]] | `:reason` | | `state` | java.lang.String | [[cdk.support/lookup-entry]] | `:state` |
(build-cfn-job-queue-props-builder builder id config)
The build-cfn-job-queue-props-builder function updates a CfnJobQueueProps$Builder instance using the provided configuration. The function takes the CfnJobQueueProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
computeEnvironmentOrder | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :compute-environment-order |
jobQueueName | java.lang.String | cdk.support/lookup-entry | :job-queue-name |
jobStateTimeLimitActions | java.util.List | cdk.support/lookup-entry | :job-state-time-limit-actions |
priority | java.lang.Number | cdk.support/lookup-entry | :priority |
schedulingPolicyArn | java.lang.String | cdk.support/lookup-entry | :scheduling-policy-arn |
state | java.lang.String | cdk.support/lookup-entry | :state |
tags | java.util.Map | cdk.support/lookup-entry | :tags |
The build-cfn-job-queue-props-builder function updates a CfnJobQueueProps$Builder instance using the provided configuration. The function takes the CfnJobQueueProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `computeEnvironmentOrder` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:compute-environment-order` | | `jobQueueName` | java.lang.String | [[cdk.support/lookup-entry]] | `:job-queue-name` | | `jobStateTimeLimitActions` | java.util.List | [[cdk.support/lookup-entry]] | `:job-state-time-limit-actions` | | `priority` | java.lang.Number | [[cdk.support/lookup-entry]] | `:priority` | | `schedulingPolicyArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:scheduling-policy-arn` | | `state` | java.lang.String | [[cdk.support/lookup-entry]] | `:state` | | `tags` | java.util.Map | [[cdk.support/lookup-entry]] | `:tags` |
(build-cfn-scheduling-policy-builder builder id config)
The build-cfn-scheduling-policy-builder function updates a CfnSchedulingPolicy$Builder instance using the provided configuration. The function takes the CfnSchedulingPolicy$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
fairsharePolicy | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :fairshare-policy |
name | java.lang.String | cdk.support/lookup-entry | :name |
tags | java.util.Map | cdk.support/lookup-entry | :tags |
The build-cfn-scheduling-policy-builder function updates a CfnSchedulingPolicy$Builder instance using the provided configuration. The function takes the CfnSchedulingPolicy$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `fairsharePolicy` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:fairshare-policy` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `tags` | java.util.Map | [[cdk.support/lookup-entry]] | `:tags` |
(build-cfn-scheduling-policy-fairshare-policy-property-builder builder
id
config)
The build-cfn-scheduling-policy-fairshare-policy-property-builder function updates a CfnSchedulingPolicy$FairsharePolicyProperty$Builder instance using the provided configuration. The function takes the CfnSchedulingPolicy$FairsharePolicyProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
computeReservation | java.lang.Number | cdk.support/lookup-entry | :compute-reservation |
shareDecaySeconds | java.lang.Number | cdk.support/lookup-entry | :share-decay-seconds |
shareDistribution | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :share-distribution |
The build-cfn-scheduling-policy-fairshare-policy-property-builder function updates a CfnSchedulingPolicy$FairsharePolicyProperty$Builder instance using the provided configuration. The function takes the CfnSchedulingPolicy$FairsharePolicyProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `computeReservation` | java.lang.Number | [[cdk.support/lookup-entry]] | `:compute-reservation` | | `shareDecaySeconds` | java.lang.Number | [[cdk.support/lookup-entry]] | `:share-decay-seconds` | | `shareDistribution` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:share-distribution` |
(build-cfn-scheduling-policy-props-builder builder id config)
The build-cfn-scheduling-policy-props-builder function updates a CfnSchedulingPolicyProps$Builder instance using the provided configuration. The function takes the CfnSchedulingPolicyProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
fairsharePolicy | software.amazon.awscdk.services.batch.CfnSchedulingPolicy$FairsharePolicyProperty | cdk.support/lookup-entry | :fairshare-policy |
name | java.lang.String | cdk.support/lookup-entry | :name |
tags | java.util.Map | cdk.support/lookup-entry | :tags |
The build-cfn-scheduling-policy-props-builder function updates a CfnSchedulingPolicyProps$Builder instance using the provided configuration. The function takes the CfnSchedulingPolicyProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `fairsharePolicy` | software.amazon.awscdk.services.batch.CfnSchedulingPolicy$FairsharePolicyProperty | [[cdk.support/lookup-entry]] | `:fairshare-policy` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `tags` | java.util.Map | [[cdk.support/lookup-entry]] | `:tags` |
(build-cfn-scheduling-policy-share-attributes-property-builder builder
id
config)
The build-cfn-scheduling-policy-share-attributes-property-builder function updates a CfnSchedulingPolicy$ShareAttributesProperty$Builder instance using the provided configuration. The function takes the CfnSchedulingPolicy$ShareAttributesProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
shareIdentifier | java.lang.String | cdk.support/lookup-entry | :share-identifier |
weightFactor | java.lang.Number | cdk.support/lookup-entry | :weight-factor |
The build-cfn-scheduling-policy-share-attributes-property-builder function updates a CfnSchedulingPolicy$ShareAttributesProperty$Builder instance using the provided configuration. The function takes the CfnSchedulingPolicy$ShareAttributesProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `shareIdentifier` | java.lang.String | [[cdk.support/lookup-entry]] | `:share-identifier` | | `weightFactor` | java.lang.Number | [[cdk.support/lookup-entry]] | `:weight-factor` |
(build-compute-environment-props-builder builder id config)
The build-compute-environment-props-builder function updates a ComputeEnvironmentProps$Builder instance using the provided configuration. The function takes the ComputeEnvironmentProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
computeEnvironmentName | java.lang.String | cdk.support/lookup-entry | :compute-environment-name |
enabled | java.lang.Boolean | cdk.support/lookup-entry | :enabled |
serviceRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :service-role |
The build-compute-environment-props-builder function updates a ComputeEnvironmentProps$Builder instance using the provided configuration. The function takes the ComputeEnvironmentProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `computeEnvironmentName` | java.lang.String | [[cdk.support/lookup-entry]] | `:compute-environment-name` | | `enabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:enabled` | | `serviceRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:service-role` |
(build-custom-reason-builder builder id config)
The build-custom-reason-builder function updates a CustomReason$Builder instance using the provided configuration. The function takes the CustomReason$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
onExitCode | java.lang.String | cdk.support/lookup-entry | :on-exit-code |
onReason | java.lang.String | cdk.support/lookup-entry | :on-reason |
onStatusReason | java.lang.String | cdk.support/lookup-entry | :on-status-reason |
The build-custom-reason-builder function updates a CustomReason$Builder instance using the provided configuration. The function takes the CustomReason$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `onExitCode` | java.lang.String | [[cdk.support/lookup-entry]] | `:on-exit-code` | | `onReason` | java.lang.String | [[cdk.support/lookup-entry]] | `:on-reason` | | `onStatusReason` | java.lang.String | [[cdk.support/lookup-entry]] | `:on-status-reason` |
(build-device-builder builder id config)
The build-device-builder function updates a Device$Builder instance using the provided configuration. The function takes the Device$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
containerPath | java.lang.String | cdk.support/lookup-entry | :container-path |
hostPath | java.lang.String | cdk.support/lookup-entry | :host-path |
permissions | java.util.List | cdk.support/lookup-entry | :permissions |
The build-device-builder function updates a Device$Builder instance using the provided configuration. The function takes the Device$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `containerPath` | java.lang.String | [[cdk.support/lookup-entry]] | `:container-path` | | `hostPath` | java.lang.String | [[cdk.support/lookup-entry]] | `:host-path` | | `permissions` | java.util.List | [[cdk.support/lookup-entry]] | `:permissions` |
(build-ecs-container-definition-props-builder builder id config)
The build-ecs-container-definition-props-builder function updates a EcsContainerDefinitionProps$Builder instance using the provided configuration. The function takes the EcsContainerDefinitionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
command | java.util.List | cdk.support/lookup-entry | :command |
cpu | java.lang.Number | cdk.support/lookup-entry | :cpu |
environment | java.util.Map | cdk.support/lookup-entry | :environment |
executionRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :execution-role |
image | software.amazon.awscdk.services.ecs.ContainerImage | cdk.support/lookup-entry | :image |
jobRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :job-role |
linuxParameters | software.amazon.awscdk.services.batch.LinuxParameters | cdk.support/lookup-entry | :linux-parameters |
logging | software.amazon.awscdk.services.ecs.LogDriver | cdk.support/lookup-entry | :logging |
memory | software.amazon.awscdk.Size | cdk.support/lookup-entry | :memory |
readonlyRootFilesystem | java.lang.Boolean | cdk.support/lookup-entry | :readonly-root-filesystem |
secrets | java.util.Map | cdk.support/lookup-entry | :secrets |
user | java.lang.String | cdk.support/lookup-entry | :user |
volumes | java.util.List | cdk.support/lookup-entry | :volumes |
The build-ecs-container-definition-props-builder function updates a EcsContainerDefinitionProps$Builder instance using the provided configuration. The function takes the EcsContainerDefinitionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `command` | java.util.List | [[cdk.support/lookup-entry]] | `:command` | | `cpu` | java.lang.Number | [[cdk.support/lookup-entry]] | `:cpu` | | `environment` | java.util.Map | [[cdk.support/lookup-entry]] | `:environment` | | `executionRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:execution-role` | | `image` | software.amazon.awscdk.services.ecs.ContainerImage | [[cdk.support/lookup-entry]] | `:image` | | `jobRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:job-role` | | `linuxParameters` | software.amazon.awscdk.services.batch.LinuxParameters | [[cdk.support/lookup-entry]] | `:linux-parameters` | | `logging` | software.amazon.awscdk.services.ecs.LogDriver | [[cdk.support/lookup-entry]] | `:logging` | | `memory` | software.amazon.awscdk.Size | [[cdk.support/lookup-entry]] | `:memory` | | `readonlyRootFilesystem` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:readonly-root-filesystem` | | `secrets` | java.util.Map | [[cdk.support/lookup-entry]] | `:secrets` | | `user` | java.lang.String | [[cdk.support/lookup-entry]] | `:user` | | `volumes` | java.util.List | [[cdk.support/lookup-entry]] | `:volumes` |
(build-ecs-ec2-container-definition-builder builder id config)
The build-ecs-ec2-container-definition-builder function updates a EcsEc2ContainerDefinition$Builder instance using the provided configuration. The function takes the EcsEc2ContainerDefinition$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
command | java.util.List | cdk.support/lookup-entry | :command |
cpu | java.lang.Number | cdk.support/lookup-entry | :cpu |
environment | java.util.Map | cdk.support/lookup-entry | :environment |
executionRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :execution-role |
gpu | java.lang.Number | cdk.support/lookup-entry | :gpu |
image | software.amazon.awscdk.services.ecs.ContainerImage | cdk.support/lookup-entry | :image |
jobRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :job-role |
linuxParameters | software.amazon.awscdk.services.batch.LinuxParameters | cdk.support/lookup-entry | :linux-parameters |
logging | software.amazon.awscdk.services.ecs.LogDriver | cdk.support/lookup-entry | :logging |
memory | software.amazon.awscdk.Size | cdk.support/lookup-entry | :memory |
privileged | java.lang.Boolean | cdk.support/lookup-entry | :privileged |
readonlyRootFilesystem | java.lang.Boolean | cdk.support/lookup-entry | :readonly-root-filesystem |
secrets | java.util.Map | cdk.support/lookup-entry | :secrets |
ulimits | java.util.List | cdk.support/lookup-entry | :ulimits |
user | java.lang.String | cdk.support/lookup-entry | :user |
volumes | java.util.List | cdk.support/lookup-entry | :volumes |
The build-ecs-ec2-container-definition-builder function updates a EcsEc2ContainerDefinition$Builder instance using the provided configuration. The function takes the EcsEc2ContainerDefinition$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `command` | java.util.List | [[cdk.support/lookup-entry]] | `:command` | | `cpu` | java.lang.Number | [[cdk.support/lookup-entry]] | `:cpu` | | `environment` | java.util.Map | [[cdk.support/lookup-entry]] | `:environment` | | `executionRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:execution-role` | | `gpu` | java.lang.Number | [[cdk.support/lookup-entry]] | `:gpu` | | `image` | software.amazon.awscdk.services.ecs.ContainerImage | [[cdk.support/lookup-entry]] | `:image` | | `jobRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:job-role` | | `linuxParameters` | software.amazon.awscdk.services.batch.LinuxParameters | [[cdk.support/lookup-entry]] | `:linux-parameters` | | `logging` | software.amazon.awscdk.services.ecs.LogDriver | [[cdk.support/lookup-entry]] | `:logging` | | `memory` | software.amazon.awscdk.Size | [[cdk.support/lookup-entry]] | `:memory` | | `privileged` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:privileged` | | `readonlyRootFilesystem` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:readonly-root-filesystem` | | `secrets` | java.util.Map | [[cdk.support/lookup-entry]] | `:secrets` | | `ulimits` | java.util.List | [[cdk.support/lookup-entry]] | `:ulimits` | | `user` | java.lang.String | [[cdk.support/lookup-entry]] | `:user` | | `volumes` | java.util.List | [[cdk.support/lookup-entry]] | `:volumes` |
(build-ecs-ec2-container-definition-props-builder builder id config)
The build-ecs-ec2-container-definition-props-builder function updates a EcsEc2ContainerDefinitionProps$Builder instance using the provided configuration. The function takes the EcsEc2ContainerDefinitionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
command | java.util.List | cdk.support/lookup-entry | :command |
cpu | java.lang.Number | cdk.support/lookup-entry | :cpu |
environment | java.util.Map | cdk.support/lookup-entry | :environment |
executionRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :execution-role |
gpu | java.lang.Number | cdk.support/lookup-entry | :gpu |
image | software.amazon.awscdk.services.ecs.ContainerImage | cdk.support/lookup-entry | :image |
jobRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :job-role |
linuxParameters | software.amazon.awscdk.services.batch.LinuxParameters | cdk.support/lookup-entry | :linux-parameters |
logging | software.amazon.awscdk.services.ecs.LogDriver | cdk.support/lookup-entry | :logging |
memory | software.amazon.awscdk.Size | cdk.support/lookup-entry | :memory |
privileged | java.lang.Boolean | cdk.support/lookup-entry | :privileged |
readonlyRootFilesystem | java.lang.Boolean | cdk.support/lookup-entry | :readonly-root-filesystem |
secrets | java.util.Map | cdk.support/lookup-entry | :secrets |
ulimits | java.util.List | cdk.support/lookup-entry | :ulimits |
user | java.lang.String | cdk.support/lookup-entry | :user |
volumes | java.util.List | cdk.support/lookup-entry | :volumes |
The build-ecs-ec2-container-definition-props-builder function updates a EcsEc2ContainerDefinitionProps$Builder instance using the provided configuration. The function takes the EcsEc2ContainerDefinitionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `command` | java.util.List | [[cdk.support/lookup-entry]] | `:command` | | `cpu` | java.lang.Number | [[cdk.support/lookup-entry]] | `:cpu` | | `environment` | java.util.Map | [[cdk.support/lookup-entry]] | `:environment` | | `executionRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:execution-role` | | `gpu` | java.lang.Number | [[cdk.support/lookup-entry]] | `:gpu` | | `image` | software.amazon.awscdk.services.ecs.ContainerImage | [[cdk.support/lookup-entry]] | `:image` | | `jobRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:job-role` | | `linuxParameters` | software.amazon.awscdk.services.batch.LinuxParameters | [[cdk.support/lookup-entry]] | `:linux-parameters` | | `logging` | software.amazon.awscdk.services.ecs.LogDriver | [[cdk.support/lookup-entry]] | `:logging` | | `memory` | software.amazon.awscdk.Size | [[cdk.support/lookup-entry]] | `:memory` | | `privileged` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:privileged` | | `readonlyRootFilesystem` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:readonly-root-filesystem` | | `secrets` | java.util.Map | [[cdk.support/lookup-entry]] | `:secrets` | | `ulimits` | java.util.List | [[cdk.support/lookup-entry]] | `:ulimits` | | `user` | java.lang.String | [[cdk.support/lookup-entry]] | `:user` | | `volumes` | java.util.List | [[cdk.support/lookup-entry]] | `:volumes` |
(build-ecs-fargate-container-definition-builder builder id config)
The build-ecs-fargate-container-definition-builder function updates a EcsFargateContainerDefinition$Builder instance using the provided configuration. The function takes the EcsFargateContainerDefinition$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
assignPublicIp | java.lang.Boolean | cdk.support/lookup-entry | :assign-public-ip |
command | java.util.List | cdk.support/lookup-entry | :command |
cpu | java.lang.Number | cdk.support/lookup-entry | :cpu |
environment | java.util.Map | cdk.support/lookup-entry | :environment |
ephemeralStorageSize | software.amazon.awscdk.Size | cdk.support/lookup-entry | :ephemeral-storage-size |
executionRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :execution-role |
fargateCpuArchitecture | software.amazon.awscdk.services.ecs.CpuArchitecture | cdk.support/lookup-entry | :fargate-cpu-architecture |
fargateOperatingSystemFamily | software.amazon.awscdk.services.ecs.OperatingSystemFamily | cdk.support/lookup-entry | :fargate-operating-system-family |
fargatePlatformVersion | software.amazon.awscdk.services.ecs.FargatePlatformVersion | cdk.api.services.ecs/fargate-platform-version | :fargate-platform-version |
image | software.amazon.awscdk.services.ecs.ContainerImage | cdk.support/lookup-entry | :image |
jobRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :job-role |
linuxParameters | software.amazon.awscdk.services.batch.LinuxParameters | cdk.support/lookup-entry | :linux-parameters |
logging | software.amazon.awscdk.services.ecs.LogDriver | cdk.support/lookup-entry | :logging |
memory | software.amazon.awscdk.Size | cdk.support/lookup-entry | :memory |
readonlyRootFilesystem | java.lang.Boolean | cdk.support/lookup-entry | :readonly-root-filesystem |
secrets | java.util.Map | cdk.support/lookup-entry | :secrets |
user | java.lang.String | cdk.support/lookup-entry | :user |
volumes | java.util.List | cdk.support/lookup-entry | :volumes |
The build-ecs-fargate-container-definition-builder function updates a EcsFargateContainerDefinition$Builder instance using the provided configuration. The function takes the EcsFargateContainerDefinition$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `assignPublicIp` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:assign-public-ip` | | `command` | java.util.List | [[cdk.support/lookup-entry]] | `:command` | | `cpu` | java.lang.Number | [[cdk.support/lookup-entry]] | `:cpu` | | `environment` | java.util.Map | [[cdk.support/lookup-entry]] | `:environment` | | `ephemeralStorageSize` | software.amazon.awscdk.Size | [[cdk.support/lookup-entry]] | `:ephemeral-storage-size` | | `executionRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:execution-role` | | `fargateCpuArchitecture` | software.amazon.awscdk.services.ecs.CpuArchitecture | [[cdk.support/lookup-entry]] | `:fargate-cpu-architecture` | | `fargateOperatingSystemFamily` | software.amazon.awscdk.services.ecs.OperatingSystemFamily | [[cdk.support/lookup-entry]] | `:fargate-operating-system-family` | | `fargatePlatformVersion` | software.amazon.awscdk.services.ecs.FargatePlatformVersion | [[cdk.api.services.ecs/fargate-platform-version]] | `:fargate-platform-version` | | `image` | software.amazon.awscdk.services.ecs.ContainerImage | [[cdk.support/lookup-entry]] | `:image` | | `jobRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:job-role` | | `linuxParameters` | software.amazon.awscdk.services.batch.LinuxParameters | [[cdk.support/lookup-entry]] | `:linux-parameters` | | `logging` | software.amazon.awscdk.services.ecs.LogDriver | [[cdk.support/lookup-entry]] | `:logging` | | `memory` | software.amazon.awscdk.Size | [[cdk.support/lookup-entry]] | `:memory` | | `readonlyRootFilesystem` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:readonly-root-filesystem` | | `secrets` | java.util.Map | [[cdk.support/lookup-entry]] | `:secrets` | | `user` | java.lang.String | [[cdk.support/lookup-entry]] | `:user` | | `volumes` | java.util.List | [[cdk.support/lookup-entry]] | `:volumes` |
(build-ecs-fargate-container-definition-props-builder builder id config)
The build-ecs-fargate-container-definition-props-builder function updates a EcsFargateContainerDefinitionProps$Builder instance using the provided configuration. The function takes the EcsFargateContainerDefinitionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
assignPublicIp | java.lang.Boolean | cdk.support/lookup-entry | :assign-public-ip |
command | java.util.List | cdk.support/lookup-entry | :command |
cpu | java.lang.Number | cdk.support/lookup-entry | :cpu |
environment | java.util.Map | cdk.support/lookup-entry | :environment |
ephemeralStorageSize | software.amazon.awscdk.Size | cdk.support/lookup-entry | :ephemeral-storage-size |
executionRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :execution-role |
fargateCpuArchitecture | software.amazon.awscdk.services.ecs.CpuArchitecture | cdk.support/lookup-entry | :fargate-cpu-architecture |
fargateOperatingSystemFamily | software.amazon.awscdk.services.ecs.OperatingSystemFamily | cdk.support/lookup-entry | :fargate-operating-system-family |
fargatePlatformVersion | software.amazon.awscdk.services.ecs.FargatePlatformVersion | cdk.api.services.ecs/fargate-platform-version | :fargate-platform-version |
image | software.amazon.awscdk.services.ecs.ContainerImage | cdk.support/lookup-entry | :image |
jobRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :job-role |
linuxParameters | software.amazon.awscdk.services.batch.LinuxParameters | cdk.support/lookup-entry | :linux-parameters |
logging | software.amazon.awscdk.services.ecs.LogDriver | cdk.support/lookup-entry | :logging |
memory | software.amazon.awscdk.Size | cdk.support/lookup-entry | :memory |
readonlyRootFilesystem | java.lang.Boolean | cdk.support/lookup-entry | :readonly-root-filesystem |
secrets | java.util.Map | cdk.support/lookup-entry | :secrets |
user | java.lang.String | cdk.support/lookup-entry | :user |
volumes | java.util.List | cdk.support/lookup-entry | :volumes |
The build-ecs-fargate-container-definition-props-builder function updates a EcsFargateContainerDefinitionProps$Builder instance using the provided configuration. The function takes the EcsFargateContainerDefinitionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `assignPublicIp` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:assign-public-ip` | | `command` | java.util.List | [[cdk.support/lookup-entry]] | `:command` | | `cpu` | java.lang.Number | [[cdk.support/lookup-entry]] | `:cpu` | | `environment` | java.util.Map | [[cdk.support/lookup-entry]] | `:environment` | | `ephemeralStorageSize` | software.amazon.awscdk.Size | [[cdk.support/lookup-entry]] | `:ephemeral-storage-size` | | `executionRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:execution-role` | | `fargateCpuArchitecture` | software.amazon.awscdk.services.ecs.CpuArchitecture | [[cdk.support/lookup-entry]] | `:fargate-cpu-architecture` | | `fargateOperatingSystemFamily` | software.amazon.awscdk.services.ecs.OperatingSystemFamily | [[cdk.support/lookup-entry]] | `:fargate-operating-system-family` | | `fargatePlatformVersion` | software.amazon.awscdk.services.ecs.FargatePlatformVersion | [[cdk.api.services.ecs/fargate-platform-version]] | `:fargate-platform-version` | | `image` | software.amazon.awscdk.services.ecs.ContainerImage | [[cdk.support/lookup-entry]] | `:image` | | `jobRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:job-role` | | `linuxParameters` | software.amazon.awscdk.services.batch.LinuxParameters | [[cdk.support/lookup-entry]] | `:linux-parameters` | | `logging` | software.amazon.awscdk.services.ecs.LogDriver | [[cdk.support/lookup-entry]] | `:logging` | | `memory` | software.amazon.awscdk.Size | [[cdk.support/lookup-entry]] | `:memory` | | `readonlyRootFilesystem` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:readonly-root-filesystem` | | `secrets` | java.util.Map | [[cdk.support/lookup-entry]] | `:secrets` | | `user` | java.lang.String | [[cdk.support/lookup-entry]] | `:user` | | `volumes` | java.util.List | [[cdk.support/lookup-entry]] | `:volumes` |
(build-ecs-job-definition-builder builder id config)
The build-ecs-job-definition-builder function updates a EcsJobDefinition$Builder instance using the provided configuration. The function takes the EcsJobDefinition$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
container | software.amazon.awscdk.services.batch.IEcsContainerDefinition | cdk.support/lookup-entry | :container |
jobDefinitionName | java.lang.String | cdk.support/lookup-entry | :job-definition-name |
parameters | java.util.Map | cdk.support/lookup-entry | :parameters |
propagateTags | java.lang.Boolean | cdk.support/lookup-entry | :propagate-tags |
retryAttempts | java.lang.Number | cdk.support/lookup-entry | :retry-attempts |
retryStrategies | java.util.List | cdk.support/lookup-entry | :retry-strategies |
schedulingPriority | java.lang.Number | cdk.support/lookup-entry | :scheduling-priority |
timeout | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :timeout |
The build-ecs-job-definition-builder function updates a EcsJobDefinition$Builder instance using the provided configuration. The function takes the EcsJobDefinition$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `container` | software.amazon.awscdk.services.batch.IEcsContainerDefinition | [[cdk.support/lookup-entry]] | `:container` | | `jobDefinitionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:job-definition-name` | | `parameters` | java.util.Map | [[cdk.support/lookup-entry]] | `:parameters` | | `propagateTags` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:propagate-tags` | | `retryAttempts` | java.lang.Number | [[cdk.support/lookup-entry]] | `:retry-attempts` | | `retryStrategies` | java.util.List | [[cdk.support/lookup-entry]] | `:retry-strategies` | | `schedulingPriority` | java.lang.Number | [[cdk.support/lookup-entry]] | `:scheduling-priority` | | `timeout` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:timeout` |
(build-ecs-job-definition-props-builder builder id config)
The build-ecs-job-definition-props-builder function updates a EcsJobDefinitionProps$Builder instance using the provided configuration. The function takes the EcsJobDefinitionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
container | software.amazon.awscdk.services.batch.IEcsContainerDefinition | cdk.support/lookup-entry | :container |
jobDefinitionName | java.lang.String | cdk.support/lookup-entry | :job-definition-name |
parameters | java.util.Map | cdk.support/lookup-entry | :parameters |
propagateTags | java.lang.Boolean | cdk.support/lookup-entry | :propagate-tags |
retryAttempts | java.lang.Number | cdk.support/lookup-entry | :retry-attempts |
retryStrategies | java.util.List | cdk.support/lookup-entry | :retry-strategies |
schedulingPriority | java.lang.Number | cdk.support/lookup-entry | :scheduling-priority |
timeout | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :timeout |
The build-ecs-job-definition-props-builder function updates a EcsJobDefinitionProps$Builder instance using the provided configuration. The function takes the EcsJobDefinitionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `container` | software.amazon.awscdk.services.batch.IEcsContainerDefinition | [[cdk.support/lookup-entry]] | `:container` | | `jobDefinitionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:job-definition-name` | | `parameters` | java.util.Map | [[cdk.support/lookup-entry]] | `:parameters` | | `propagateTags` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:propagate-tags` | | `retryAttempts` | java.lang.Number | [[cdk.support/lookup-entry]] | `:retry-attempts` | | `retryStrategies` | java.util.List | [[cdk.support/lookup-entry]] | `:retry-strategies` | | `schedulingPriority` | java.lang.Number | [[cdk.support/lookup-entry]] | `:scheduling-priority` | | `timeout` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:timeout` |
(build-ecs-machine-image-builder builder id config)
The build-ecs-machine-image-builder function updates a EcsMachineImage$Builder instance using the provided configuration. The function takes the EcsMachineImage$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
image | software.amazon.awscdk.services.ec2.IMachineImage | cdk.support/lookup-entry | :image |
imageType | software.amazon.awscdk.services.batch.EcsMachineImageType | cdk.api.services.batch/ecs-machine-image-type | :image-type |
The build-ecs-machine-image-builder function updates a EcsMachineImage$Builder instance using the provided configuration. The function takes the EcsMachineImage$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `image` | software.amazon.awscdk.services.ec2.IMachineImage | [[cdk.support/lookup-entry]] | `:image` | | `imageType` | software.amazon.awscdk.services.batch.EcsMachineImageType | [[cdk.api.services.batch/ecs-machine-image-type]] | `:image-type` |
(build-ecs-volume-options-builder builder id config)
The build-ecs-volume-options-builder function updates a EcsVolumeOptions$Builder instance using the provided configuration. The function takes the EcsVolumeOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
containerPath | java.lang.String | cdk.support/lookup-entry | :container-path |
name | java.lang.String | cdk.support/lookup-entry | :name |
readonly | java.lang.Boolean | cdk.support/lookup-entry | :readonly |
The build-ecs-volume-options-builder function updates a EcsVolumeOptions$Builder instance using the provided configuration. The function takes the EcsVolumeOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `containerPath` | java.lang.String | [[cdk.support/lookup-entry]] | `:container-path` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `readonly` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:readonly` |
(build-efs-volume-builder builder id config)
The build-efs-volume-builder function updates a EfsVolume$Builder instance using the provided configuration. The function takes the EfsVolume$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
accessPointId | java.lang.String | cdk.support/lookup-entry | :access-point-id |
containerPath | java.lang.String | cdk.support/lookup-entry | :container-path |
enableTransitEncryption | java.lang.Boolean | cdk.support/lookup-entry | :enable-transit-encryption |
fileSystem | software.amazon.awscdk.services.efs.IFileSystem | cdk.support/lookup-entry | :file-system |
name | java.lang.String | cdk.support/lookup-entry | :name |
readonly | java.lang.Boolean | cdk.support/lookup-entry | :readonly |
rootDirectory | java.lang.String | cdk.support/lookup-entry | :root-directory |
transitEncryptionPort | java.lang.Number | cdk.support/lookup-entry | :transit-encryption-port |
useJobRole | java.lang.Boolean | cdk.support/lookup-entry | :use-job-role |
The build-efs-volume-builder function updates a EfsVolume$Builder instance using the provided configuration. The function takes the EfsVolume$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `accessPointId` | java.lang.String | [[cdk.support/lookup-entry]] | `:access-point-id` | | `containerPath` | java.lang.String | [[cdk.support/lookup-entry]] | `:container-path` | | `enableTransitEncryption` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:enable-transit-encryption` | | `fileSystem` | software.amazon.awscdk.services.efs.IFileSystem | [[cdk.support/lookup-entry]] | `:file-system` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `readonly` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:readonly` | | `rootDirectory` | java.lang.String | [[cdk.support/lookup-entry]] | `:root-directory` | | `transitEncryptionPort` | java.lang.Number | [[cdk.support/lookup-entry]] | `:transit-encryption-port` | | `useJobRole` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:use-job-role` |
(build-efs-volume-options-builder builder id config)
The build-efs-volume-options-builder function updates a EfsVolumeOptions$Builder instance using the provided configuration. The function takes the EfsVolumeOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
accessPointId | java.lang.String | cdk.support/lookup-entry | :access-point-id |
containerPath | java.lang.String | cdk.support/lookup-entry | :container-path |
enableTransitEncryption | java.lang.Boolean | cdk.support/lookup-entry | :enable-transit-encryption |
fileSystem | software.amazon.awscdk.services.efs.IFileSystem | cdk.support/lookup-entry | :file-system |
name | java.lang.String | cdk.support/lookup-entry | :name |
readonly | java.lang.Boolean | cdk.support/lookup-entry | :readonly |
rootDirectory | java.lang.String | cdk.support/lookup-entry | :root-directory |
transitEncryptionPort | java.lang.Number | cdk.support/lookup-entry | :transit-encryption-port |
useJobRole | java.lang.Boolean | cdk.support/lookup-entry | :use-job-role |
The build-efs-volume-options-builder function updates a EfsVolumeOptions$Builder instance using the provided configuration. The function takes the EfsVolumeOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `accessPointId` | java.lang.String | [[cdk.support/lookup-entry]] | `:access-point-id` | | `containerPath` | java.lang.String | [[cdk.support/lookup-entry]] | `:container-path` | | `enableTransitEncryption` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:enable-transit-encryption` | | `fileSystem` | software.amazon.awscdk.services.efs.IFileSystem | [[cdk.support/lookup-entry]] | `:file-system` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `readonly` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:readonly` | | `rootDirectory` | java.lang.String | [[cdk.support/lookup-entry]] | `:root-directory` | | `transitEncryptionPort` | java.lang.Number | [[cdk.support/lookup-entry]] | `:transit-encryption-port` | | `useJobRole` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:use-job-role` |
(build-eks-container-definition-builder builder id config)
The build-eks-container-definition-builder function updates a EksContainerDefinition$Builder instance using the provided configuration. The function takes the EksContainerDefinition$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
args | java.util.List | cdk.support/lookup-entry | :args |
command | java.util.List | cdk.support/lookup-entry | :command |
cpuLimit | java.lang.Number | cdk.support/lookup-entry | :cpu-limit |
cpuReservation | java.lang.Number | cdk.support/lookup-entry | :cpu-reservation |
env | java.util.Map | cdk.support/lookup-entry | :env |
gpuLimit | java.lang.Number | cdk.support/lookup-entry | :gpu-limit |
gpuReservation | java.lang.Number | cdk.support/lookup-entry | :gpu-reservation |
image | software.amazon.awscdk.services.ecs.ContainerImage | cdk.support/lookup-entry | :image |
imagePullPolicy | software.amazon.awscdk.services.batch.ImagePullPolicy | cdk.api.services.batch/image-pull-policy | :image-pull-policy |
memoryLimit | software.amazon.awscdk.Size | cdk.support/lookup-entry | :memory-limit |
memoryReservation | software.amazon.awscdk.Size | cdk.support/lookup-entry | :memory-reservation |
name | java.lang.String | cdk.support/lookup-entry | :name |
privileged | java.lang.Boolean | cdk.support/lookup-entry | :privileged |
readonlyRootFilesystem | java.lang.Boolean | cdk.support/lookup-entry | :readonly-root-filesystem |
runAsGroup | java.lang.Number | cdk.support/lookup-entry | :run-as-group |
runAsRoot | java.lang.Boolean | cdk.support/lookup-entry | :run-as-root |
runAsUser | java.lang.Number | cdk.support/lookup-entry | :run-as-user |
volumes | java.util.List | cdk.support/lookup-entry | :volumes |
The build-eks-container-definition-builder function updates a EksContainerDefinition$Builder instance using the provided configuration. The function takes the EksContainerDefinition$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `args` | java.util.List | [[cdk.support/lookup-entry]] | `:args` | | `command` | java.util.List | [[cdk.support/lookup-entry]] | `:command` | | `cpuLimit` | java.lang.Number | [[cdk.support/lookup-entry]] | `:cpu-limit` | | `cpuReservation` | java.lang.Number | [[cdk.support/lookup-entry]] | `:cpu-reservation` | | `env` | java.util.Map | [[cdk.support/lookup-entry]] | `:env` | | `gpuLimit` | java.lang.Number | [[cdk.support/lookup-entry]] | `:gpu-limit` | | `gpuReservation` | java.lang.Number | [[cdk.support/lookup-entry]] | `:gpu-reservation` | | `image` | software.amazon.awscdk.services.ecs.ContainerImage | [[cdk.support/lookup-entry]] | `:image` | | `imagePullPolicy` | software.amazon.awscdk.services.batch.ImagePullPolicy | [[cdk.api.services.batch/image-pull-policy]] | `:image-pull-policy` | | `memoryLimit` | software.amazon.awscdk.Size | [[cdk.support/lookup-entry]] | `:memory-limit` | | `memoryReservation` | software.amazon.awscdk.Size | [[cdk.support/lookup-entry]] | `:memory-reservation` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `privileged` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:privileged` | | `readonlyRootFilesystem` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:readonly-root-filesystem` | | `runAsGroup` | java.lang.Number | [[cdk.support/lookup-entry]] | `:run-as-group` | | `runAsRoot` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:run-as-root` | | `runAsUser` | java.lang.Number | [[cdk.support/lookup-entry]] | `:run-as-user` | | `volumes` | java.util.List | [[cdk.support/lookup-entry]] | `:volumes` |
(build-eks-container-definition-props-builder builder id config)
The build-eks-container-definition-props-builder function updates a EksContainerDefinitionProps$Builder instance using the provided configuration. The function takes the EksContainerDefinitionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
args | java.util.List | cdk.support/lookup-entry | :args |
command | java.util.List | cdk.support/lookup-entry | :command |
cpuLimit | java.lang.Number | cdk.support/lookup-entry | :cpu-limit |
cpuReservation | java.lang.Number | cdk.support/lookup-entry | :cpu-reservation |
env | java.util.Map | cdk.support/lookup-entry | :env |
gpuLimit | java.lang.Number | cdk.support/lookup-entry | :gpu-limit |
gpuReservation | java.lang.Number | cdk.support/lookup-entry | :gpu-reservation |
image | software.amazon.awscdk.services.ecs.ContainerImage | cdk.support/lookup-entry | :image |
imagePullPolicy | software.amazon.awscdk.services.batch.ImagePullPolicy | cdk.api.services.batch/image-pull-policy | :image-pull-policy |
memoryLimit | software.amazon.awscdk.Size | cdk.support/lookup-entry | :memory-limit |
memoryReservation | software.amazon.awscdk.Size | cdk.support/lookup-entry | :memory-reservation |
name | java.lang.String | cdk.support/lookup-entry | :name |
privileged | java.lang.Boolean | cdk.support/lookup-entry | :privileged |
readonlyRootFilesystem | java.lang.Boolean | cdk.support/lookup-entry | :readonly-root-filesystem |
runAsGroup | java.lang.Number | cdk.support/lookup-entry | :run-as-group |
runAsRoot | java.lang.Boolean | cdk.support/lookup-entry | :run-as-root |
runAsUser | java.lang.Number | cdk.support/lookup-entry | :run-as-user |
volumes | java.util.List | cdk.support/lookup-entry | :volumes |
The build-eks-container-definition-props-builder function updates a EksContainerDefinitionProps$Builder instance using the provided configuration. The function takes the EksContainerDefinitionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `args` | java.util.List | [[cdk.support/lookup-entry]] | `:args` | | `command` | java.util.List | [[cdk.support/lookup-entry]] | `:command` | | `cpuLimit` | java.lang.Number | [[cdk.support/lookup-entry]] | `:cpu-limit` | | `cpuReservation` | java.lang.Number | [[cdk.support/lookup-entry]] | `:cpu-reservation` | | `env` | java.util.Map | [[cdk.support/lookup-entry]] | `:env` | | `gpuLimit` | java.lang.Number | [[cdk.support/lookup-entry]] | `:gpu-limit` | | `gpuReservation` | java.lang.Number | [[cdk.support/lookup-entry]] | `:gpu-reservation` | | `image` | software.amazon.awscdk.services.ecs.ContainerImage | [[cdk.support/lookup-entry]] | `:image` | | `imagePullPolicy` | software.amazon.awscdk.services.batch.ImagePullPolicy | [[cdk.api.services.batch/image-pull-policy]] | `:image-pull-policy` | | `memoryLimit` | software.amazon.awscdk.Size | [[cdk.support/lookup-entry]] | `:memory-limit` | | `memoryReservation` | software.amazon.awscdk.Size | [[cdk.support/lookup-entry]] | `:memory-reservation` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `privileged` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:privileged` | | `readonlyRootFilesystem` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:readonly-root-filesystem` | | `runAsGroup` | java.lang.Number | [[cdk.support/lookup-entry]] | `:run-as-group` | | `runAsRoot` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:run-as-root` | | `runAsUser` | java.lang.Number | [[cdk.support/lookup-entry]] | `:run-as-user` | | `volumes` | java.util.List | [[cdk.support/lookup-entry]] | `:volumes` |
(build-eks-job-definition-builder builder id config)
The build-eks-job-definition-builder function updates a EksJobDefinition$Builder instance using the provided configuration. The function takes the EksJobDefinition$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
container | software.amazon.awscdk.services.batch.EksContainerDefinition | cdk.support/lookup-entry | :container |
dnsPolicy | software.amazon.awscdk.services.batch.DnsPolicy | cdk.api.services.batch/dns-policy | :dns-policy |
jobDefinitionName | java.lang.String | cdk.support/lookup-entry | :job-definition-name |
parameters | java.util.Map | cdk.support/lookup-entry | :parameters |
retryAttempts | java.lang.Number | cdk.support/lookup-entry | :retry-attempts |
retryStrategies | java.util.List | cdk.support/lookup-entry | :retry-strategies |
schedulingPriority | java.lang.Number | cdk.support/lookup-entry | :scheduling-priority |
serviceAccount | java.lang.String | cdk.support/lookup-entry | :service-account |
timeout | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :timeout |
useHostNetwork | java.lang.Boolean | cdk.support/lookup-entry | :use-host-network |
The build-eks-job-definition-builder function updates a EksJobDefinition$Builder instance using the provided configuration. The function takes the EksJobDefinition$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `container` | software.amazon.awscdk.services.batch.EksContainerDefinition | [[cdk.support/lookup-entry]] | `:container` | | `dnsPolicy` | software.amazon.awscdk.services.batch.DnsPolicy | [[cdk.api.services.batch/dns-policy]] | `:dns-policy` | | `jobDefinitionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:job-definition-name` | | `parameters` | java.util.Map | [[cdk.support/lookup-entry]] | `:parameters` | | `retryAttempts` | java.lang.Number | [[cdk.support/lookup-entry]] | `:retry-attempts` | | `retryStrategies` | java.util.List | [[cdk.support/lookup-entry]] | `:retry-strategies` | | `schedulingPriority` | java.lang.Number | [[cdk.support/lookup-entry]] | `:scheduling-priority` | | `serviceAccount` | java.lang.String | [[cdk.support/lookup-entry]] | `:service-account` | | `timeout` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:timeout` | | `useHostNetwork` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:use-host-network` |
(build-eks-job-definition-props-builder builder id config)
The build-eks-job-definition-props-builder function updates a EksJobDefinitionProps$Builder instance using the provided configuration. The function takes the EksJobDefinitionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
container | software.amazon.awscdk.services.batch.EksContainerDefinition | cdk.support/lookup-entry | :container |
dnsPolicy | software.amazon.awscdk.services.batch.DnsPolicy | cdk.api.services.batch/dns-policy | :dns-policy |
jobDefinitionName | java.lang.String | cdk.support/lookup-entry | :job-definition-name |
parameters | java.util.Map | cdk.support/lookup-entry | :parameters |
retryAttempts | java.lang.Number | cdk.support/lookup-entry | :retry-attempts |
retryStrategies | java.util.List | cdk.support/lookup-entry | :retry-strategies |
schedulingPriority | java.lang.Number | cdk.support/lookup-entry | :scheduling-priority |
serviceAccount | java.lang.String | cdk.support/lookup-entry | :service-account |
timeout | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :timeout |
useHostNetwork | java.lang.Boolean | cdk.support/lookup-entry | :use-host-network |
The build-eks-job-definition-props-builder function updates a EksJobDefinitionProps$Builder instance using the provided configuration. The function takes the EksJobDefinitionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `container` | software.amazon.awscdk.services.batch.EksContainerDefinition | [[cdk.support/lookup-entry]] | `:container` | | `dnsPolicy` | software.amazon.awscdk.services.batch.DnsPolicy | [[cdk.api.services.batch/dns-policy]] | `:dns-policy` | | `jobDefinitionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:job-definition-name` | | `parameters` | java.util.Map | [[cdk.support/lookup-entry]] | `:parameters` | | `retryAttempts` | java.lang.Number | [[cdk.support/lookup-entry]] | `:retry-attempts` | | `retryStrategies` | java.util.List | [[cdk.support/lookup-entry]] | `:retry-strategies` | | `schedulingPriority` | java.lang.Number | [[cdk.support/lookup-entry]] | `:scheduling-priority` | | `serviceAccount` | java.lang.String | [[cdk.support/lookup-entry]] | `:service-account` | | `timeout` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:timeout` | | `useHostNetwork` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:use-host-network` |
(build-eks-machine-image-builder builder id config)
The build-eks-machine-image-builder function updates a EksMachineImage$Builder instance using the provided configuration. The function takes the EksMachineImage$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
image | software.amazon.awscdk.services.ec2.IMachineImage | cdk.support/lookup-entry | :image |
imageType | software.amazon.awscdk.services.batch.EksMachineImageType | cdk.api.services.batch/eks-machine-image-type | :image-type |
The build-eks-machine-image-builder function updates a EksMachineImage$Builder instance using the provided configuration. The function takes the EksMachineImage$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `image` | software.amazon.awscdk.services.ec2.IMachineImage | [[cdk.support/lookup-entry]] | `:image` | | `imageType` | software.amazon.awscdk.services.batch.EksMachineImageType | [[cdk.api.services.batch/eks-machine-image-type]] | `:image-type` |
(build-eks-volume-options-builder builder id config)
The build-eks-volume-options-builder function updates a EksVolumeOptions$Builder instance using the provided configuration. The function takes the EksVolumeOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
mountPath | java.lang.String | cdk.support/lookup-entry | :mount-path |
name | java.lang.String | cdk.support/lookup-entry | :name |
readonly | java.lang.Boolean | cdk.support/lookup-entry | :readonly |
The build-eks-volume-options-builder function updates a EksVolumeOptions$Builder instance using the provided configuration. The function takes the EksVolumeOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `mountPath` | java.lang.String | [[cdk.support/lookup-entry]] | `:mount-path` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `readonly` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:readonly` |
(build-empty-dir-volume-builder builder id config)
The build-empty-dir-volume-builder function updates a EmptyDirVolume$Builder instance using the provided configuration. The function takes the EmptyDirVolume$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
medium | software.amazon.awscdk.services.batch.EmptyDirMediumType | cdk.api.services.batch/empty-dir-medium-type | :medium |
mountPath | java.lang.String | cdk.support/lookup-entry | :mount-path |
name | java.lang.String | cdk.support/lookup-entry | :name |
readonly | java.lang.Boolean | cdk.support/lookup-entry | :readonly |
sizeLimit | software.amazon.awscdk.Size | cdk.support/lookup-entry | :size-limit |
The build-empty-dir-volume-builder function updates a EmptyDirVolume$Builder instance using the provided configuration. The function takes the EmptyDirVolume$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `medium` | software.amazon.awscdk.services.batch.EmptyDirMediumType | [[cdk.api.services.batch/empty-dir-medium-type]] | `:medium` | | `mountPath` | java.lang.String | [[cdk.support/lookup-entry]] | `:mount-path` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `readonly` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:readonly` | | `sizeLimit` | software.amazon.awscdk.Size | [[cdk.support/lookup-entry]] | `:size-limit` |
(build-empty-dir-volume-options-builder builder id config)
The build-empty-dir-volume-options-builder function updates a EmptyDirVolumeOptions$Builder instance using the provided configuration. The function takes the EmptyDirVolumeOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
medium | software.amazon.awscdk.services.batch.EmptyDirMediumType | cdk.api.services.batch/empty-dir-medium-type | :medium |
mountPath | java.lang.String | cdk.support/lookup-entry | :mount-path |
name | java.lang.String | cdk.support/lookup-entry | :name |
readonly | java.lang.Boolean | cdk.support/lookup-entry | :readonly |
sizeLimit | software.amazon.awscdk.Size | cdk.support/lookup-entry | :size-limit |
The build-empty-dir-volume-options-builder function updates a EmptyDirVolumeOptions$Builder instance using the provided configuration. The function takes the EmptyDirVolumeOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `medium` | software.amazon.awscdk.services.batch.EmptyDirMediumType | [[cdk.api.services.batch/empty-dir-medium-type]] | `:medium` | | `mountPath` | java.lang.String | [[cdk.support/lookup-entry]] | `:mount-path` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `readonly` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:readonly` | | `sizeLimit` | software.amazon.awscdk.Size | [[cdk.support/lookup-entry]] | `:size-limit` |
(build-fairshare-scheduling-policy-builder builder id config)
The build-fairshare-scheduling-policy-builder function updates a FairshareSchedulingPolicy$Builder instance using the provided configuration. The function takes the FairshareSchedulingPolicy$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
computeReservation | java.lang.Number | cdk.support/lookup-entry | :compute-reservation |
schedulingPolicyName | java.lang.String | cdk.support/lookup-entry | :scheduling-policy-name |
shareDecay | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :share-decay |
shares | java.util.List | cdk.support/lookup-entry | :shares |
The build-fairshare-scheduling-policy-builder function updates a FairshareSchedulingPolicy$Builder instance using the provided configuration. The function takes the FairshareSchedulingPolicy$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `computeReservation` | java.lang.Number | [[cdk.support/lookup-entry]] | `:compute-reservation` | | `schedulingPolicyName` | java.lang.String | [[cdk.support/lookup-entry]] | `:scheduling-policy-name` | | `shareDecay` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:share-decay` | | `shares` | java.util.List | [[cdk.support/lookup-entry]] | `:shares` |
(build-fairshare-scheduling-policy-props-builder builder id config)
The build-fairshare-scheduling-policy-props-builder function updates a FairshareSchedulingPolicyProps$Builder instance using the provided configuration. The function takes the FairshareSchedulingPolicyProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
computeReservation | java.lang.Number | cdk.support/lookup-entry | :compute-reservation |
schedulingPolicyName | java.lang.String | cdk.support/lookup-entry | :scheduling-policy-name |
shareDecay | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :share-decay |
shares | java.util.List | cdk.support/lookup-entry | :shares |
The build-fairshare-scheduling-policy-props-builder function updates a FairshareSchedulingPolicyProps$Builder instance using the provided configuration. The function takes the FairshareSchedulingPolicyProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `computeReservation` | java.lang.Number | [[cdk.support/lookup-entry]] | `:compute-reservation` | | `schedulingPolicyName` | java.lang.String | [[cdk.support/lookup-entry]] | `:scheduling-policy-name` | | `shareDecay` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:share-decay` | | `shares` | java.util.List | [[cdk.support/lookup-entry]] | `:shares` |
(build-fargate-compute-environment-builder builder id config)
The build-fargate-compute-environment-builder function updates a FargateComputeEnvironment$Builder instance using the provided configuration. The function takes the FargateComputeEnvironment$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
computeEnvironmentName | java.lang.String | cdk.support/lookup-entry | :compute-environment-name |
enabled | java.lang.Boolean | cdk.support/lookup-entry | :enabled |
maxvCpus | java.lang.Number | cdk.support/lookup-entry | :maxv-cpus |
replaceComputeEnvironment | java.lang.Boolean | cdk.support/lookup-entry | :replace-compute-environment |
securityGroups | java.util.List | cdk.support/lookup-entry | :security-groups |
serviceRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :service-role |
spot | java.lang.Boolean | cdk.support/lookup-entry | :spot |
terminateOnUpdate | java.lang.Boolean | cdk.support/lookup-entry | :terminate-on-update |
updateTimeout | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :update-timeout |
updateToLatestImageVersion | java.lang.Boolean | cdk.support/lookup-entry | :update-to-latest-image-version |
vpc | software.amazon.awscdk.services.ec2.IVpc | cdk.support/lookup-entry | :vpc |
vpcSubnets | software.amazon.awscdk.services.ec2.SubnetSelection | cdk.support/lookup-entry | :vpc-subnets |
The build-fargate-compute-environment-builder function updates a FargateComputeEnvironment$Builder instance using the provided configuration. The function takes the FargateComputeEnvironment$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `computeEnvironmentName` | java.lang.String | [[cdk.support/lookup-entry]] | `:compute-environment-name` | | `enabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:enabled` | | `maxvCpus` | java.lang.Number | [[cdk.support/lookup-entry]] | `:maxv-cpus` | | `replaceComputeEnvironment` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:replace-compute-environment` | | `securityGroups` | java.util.List | [[cdk.support/lookup-entry]] | `:security-groups` | | `serviceRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:service-role` | | `spot` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:spot` | | `terminateOnUpdate` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:terminate-on-update` | | `updateTimeout` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:update-timeout` | | `updateToLatestImageVersion` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:update-to-latest-image-version` | | `vpc` | software.amazon.awscdk.services.ec2.IVpc | [[cdk.support/lookup-entry]] | `:vpc` | | `vpcSubnets` | software.amazon.awscdk.services.ec2.SubnetSelection | [[cdk.support/lookup-entry]] | `:vpc-subnets` |
(build-fargate-compute-environment-props-builder builder id config)
The build-fargate-compute-environment-props-builder function updates a FargateComputeEnvironmentProps$Builder instance using the provided configuration. The function takes the FargateComputeEnvironmentProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
computeEnvironmentName | java.lang.String | cdk.support/lookup-entry | :compute-environment-name |
enabled | java.lang.Boolean | cdk.support/lookup-entry | :enabled |
maxvCpus | java.lang.Number | cdk.support/lookup-entry | :maxv-cpus |
replaceComputeEnvironment | java.lang.Boolean | cdk.support/lookup-entry | :replace-compute-environment |
securityGroups | java.util.List | cdk.support/lookup-entry | :security-groups |
serviceRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :service-role |
spot | java.lang.Boolean | cdk.support/lookup-entry | :spot |
terminateOnUpdate | java.lang.Boolean | cdk.support/lookup-entry | :terminate-on-update |
updateTimeout | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :update-timeout |
updateToLatestImageVersion | java.lang.Boolean | cdk.support/lookup-entry | :update-to-latest-image-version |
vpc | software.amazon.awscdk.services.ec2.IVpc | cdk.support/lookup-entry | :vpc |
vpcSubnets | software.amazon.awscdk.services.ec2.SubnetSelection | cdk.support/lookup-entry | :vpc-subnets |
The build-fargate-compute-environment-props-builder function updates a FargateComputeEnvironmentProps$Builder instance using the provided configuration. The function takes the FargateComputeEnvironmentProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `computeEnvironmentName` | java.lang.String | [[cdk.support/lookup-entry]] | `:compute-environment-name` | | `enabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:enabled` | | `maxvCpus` | java.lang.Number | [[cdk.support/lookup-entry]] | `:maxv-cpus` | | `replaceComputeEnvironment` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:replace-compute-environment` | | `securityGroups` | java.util.List | [[cdk.support/lookup-entry]] | `:security-groups` | | `serviceRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:service-role` | | `spot` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:spot` | | `terminateOnUpdate` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:terminate-on-update` | | `updateTimeout` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:update-timeout` | | `updateToLatestImageVersion` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:update-to-latest-image-version` | | `vpc` | software.amazon.awscdk.services.ec2.IVpc | [[cdk.support/lookup-entry]] | `:vpc` | | `vpcSubnets` | software.amazon.awscdk.services.ec2.SubnetSelection | [[cdk.support/lookup-entry]] | `:vpc-subnets` |
(build-host-path-volume-builder builder id config)
The build-host-path-volume-builder function updates a HostPathVolume$Builder instance using the provided configuration. The function takes the HostPathVolume$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
hostPath | java.lang.String | cdk.support/lookup-entry | :host-path |
mountPath | java.lang.String | cdk.support/lookup-entry | :mount-path |
name | java.lang.String | cdk.support/lookup-entry | :name |
readonly | java.lang.Boolean | cdk.support/lookup-entry | :readonly |
The build-host-path-volume-builder function updates a HostPathVolume$Builder instance using the provided configuration. The function takes the HostPathVolume$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `hostPath` | java.lang.String | [[cdk.support/lookup-entry]] | `:host-path` | | `mountPath` | java.lang.String | [[cdk.support/lookup-entry]] | `:mount-path` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `readonly` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:readonly` |
(build-host-path-volume-options-builder builder id config)
The build-host-path-volume-options-builder function updates a HostPathVolumeOptions$Builder instance using the provided configuration. The function takes the HostPathVolumeOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
hostPath | java.lang.String | cdk.support/lookup-entry | :host-path |
mountPath | java.lang.String | cdk.support/lookup-entry | :mount-path |
name | java.lang.String | cdk.support/lookup-entry | :name |
readonly | java.lang.Boolean | cdk.support/lookup-entry | :readonly |
The build-host-path-volume-options-builder function updates a HostPathVolumeOptions$Builder instance using the provided configuration. The function takes the HostPathVolumeOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `hostPath` | java.lang.String | [[cdk.support/lookup-entry]] | `:host-path` | | `mountPath` | java.lang.String | [[cdk.support/lookup-entry]] | `:mount-path` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `readonly` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:readonly` |
(build-host-volume-builder builder id config)
The build-host-volume-builder function updates a HostVolume$Builder instance using the provided configuration. The function takes the HostVolume$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
containerPath | java.lang.String | cdk.support/lookup-entry | :container-path |
hostPath | java.lang.String | cdk.support/lookup-entry | :host-path |
name | java.lang.String | cdk.support/lookup-entry | :name |
readonly | java.lang.Boolean | cdk.support/lookup-entry | :readonly |
The build-host-volume-builder function updates a HostVolume$Builder instance using the provided configuration. The function takes the HostVolume$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `containerPath` | java.lang.String | [[cdk.support/lookup-entry]] | `:container-path` | | `hostPath` | java.lang.String | [[cdk.support/lookup-entry]] | `:host-path` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `readonly` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:readonly` |
(build-host-volume-options-builder builder id config)
The build-host-volume-options-builder function updates a HostVolumeOptions$Builder instance using the provided configuration. The function takes the HostVolumeOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
containerPath | java.lang.String | cdk.support/lookup-entry | :container-path |
hostPath | java.lang.String | cdk.support/lookup-entry | :host-path |
name | java.lang.String | cdk.support/lookup-entry | :name |
readonly | java.lang.Boolean | cdk.support/lookup-entry | :readonly |
The build-host-volume-options-builder function updates a HostVolumeOptions$Builder instance using the provided configuration. The function takes the HostVolumeOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `containerPath` | java.lang.String | [[cdk.support/lookup-entry]] | `:container-path` | | `hostPath` | java.lang.String | [[cdk.support/lookup-entry]] | `:host-path` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `readonly` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:readonly` |
(build-job-definition-props-builder builder id config)
The build-job-definition-props-builder function updates a JobDefinitionProps$Builder instance using the provided configuration. The function takes the JobDefinitionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
jobDefinitionName | java.lang.String | cdk.support/lookup-entry | :job-definition-name |
parameters | java.util.Map | cdk.support/lookup-entry | :parameters |
retryAttempts | java.lang.Number | cdk.support/lookup-entry | :retry-attempts |
retryStrategies | java.util.List | cdk.support/lookup-entry | :retry-strategies |
schedulingPriority | java.lang.Number | cdk.support/lookup-entry | :scheduling-priority |
timeout | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :timeout |
The build-job-definition-props-builder function updates a JobDefinitionProps$Builder instance using the provided configuration. The function takes the JobDefinitionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `jobDefinitionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:job-definition-name` | | `parameters` | java.util.Map | [[cdk.support/lookup-entry]] | `:parameters` | | `retryAttempts` | java.lang.Number | [[cdk.support/lookup-entry]] | `:retry-attempts` | | `retryStrategies` | java.util.List | [[cdk.support/lookup-entry]] | `:retry-strategies` | | `schedulingPriority` | java.lang.Number | [[cdk.support/lookup-entry]] | `:scheduling-priority` | | `timeout` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:timeout` |
(build-job-queue-builder builder id config)
The build-job-queue-builder function updates a JobQueue$Builder instance using the provided configuration. The function takes the JobQueue$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
computeEnvironments | java.util.List | cdk.support/lookup-entry | :compute-environments |
enabled | java.lang.Boolean | cdk.support/lookup-entry | :enabled |
jobQueueName | java.lang.String | cdk.support/lookup-entry | :job-queue-name |
jobStateTimeLimitActions | java.util.List | cdk.support/lookup-entry | :job-state-time-limit-actions |
priority | java.lang.Number | cdk.support/lookup-entry | :priority |
schedulingPolicy | software.amazon.awscdk.services.batch.ISchedulingPolicy | cdk.support/lookup-entry | :scheduling-policy |
The build-job-queue-builder function updates a JobQueue$Builder instance using the provided configuration. The function takes the JobQueue$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `computeEnvironments` | java.util.List | [[cdk.support/lookup-entry]] | `:compute-environments` | | `enabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:enabled` | | `jobQueueName` | java.lang.String | [[cdk.support/lookup-entry]] | `:job-queue-name` | | `jobStateTimeLimitActions` | java.util.List | [[cdk.support/lookup-entry]] | `:job-state-time-limit-actions` | | `priority` | java.lang.Number | [[cdk.support/lookup-entry]] | `:priority` | | `schedulingPolicy` | software.amazon.awscdk.services.batch.ISchedulingPolicy | [[cdk.support/lookup-entry]] | `:scheduling-policy` |
(build-job-queue-props-builder builder id config)
The build-job-queue-props-builder function updates a JobQueueProps$Builder instance using the provided configuration. The function takes the JobQueueProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
computeEnvironments | java.util.List | cdk.support/lookup-entry | :compute-environments |
enabled | java.lang.Boolean | cdk.support/lookup-entry | :enabled |
jobQueueName | java.lang.String | cdk.support/lookup-entry | :job-queue-name |
jobStateTimeLimitActions | java.util.List | cdk.support/lookup-entry | :job-state-time-limit-actions |
priority | java.lang.Number | cdk.support/lookup-entry | :priority |
schedulingPolicy | software.amazon.awscdk.services.batch.ISchedulingPolicy | cdk.support/lookup-entry | :scheduling-policy |
The build-job-queue-props-builder function updates a JobQueueProps$Builder instance using the provided configuration. The function takes the JobQueueProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `computeEnvironments` | java.util.List | [[cdk.support/lookup-entry]] | `:compute-environments` | | `enabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:enabled` | | `jobQueueName` | java.lang.String | [[cdk.support/lookup-entry]] | `:job-queue-name` | | `jobStateTimeLimitActions` | java.util.List | [[cdk.support/lookup-entry]] | `:job-state-time-limit-actions` | | `priority` | java.lang.Number | [[cdk.support/lookup-entry]] | `:priority` | | `schedulingPolicy` | software.amazon.awscdk.services.batch.ISchedulingPolicy | [[cdk.support/lookup-entry]] | `:scheduling-policy` |
(build-job-state-time-limit-action-builder builder id config)
The build-job-state-time-limit-action-builder function updates a JobStateTimeLimitAction$Builder instance using the provided configuration. The function takes the JobStateTimeLimitAction$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
action | software.amazon.awscdk.services.batch.JobStateTimeLimitActionsAction | cdk.api.services.batch/job-state-time-limit-actions-action | :action |
maxTime | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :max-time |
reason | software.amazon.awscdk.services.batch.JobStateTimeLimitActionsReason | cdk.api.services.batch/job-state-time-limit-actions-reason | :reason |
state | software.amazon.awscdk.services.batch.JobStateTimeLimitActionsState | cdk.api.services.batch/job-state-time-limit-actions-state | :state |
The build-job-state-time-limit-action-builder function updates a JobStateTimeLimitAction$Builder instance using the provided configuration. The function takes the JobStateTimeLimitAction$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `action` | software.amazon.awscdk.services.batch.JobStateTimeLimitActionsAction | [[cdk.api.services.batch/job-state-time-limit-actions-action]] | `:action` | | `maxTime` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:max-time` | | `reason` | software.amazon.awscdk.services.batch.JobStateTimeLimitActionsReason | [[cdk.api.services.batch/job-state-time-limit-actions-reason]] | `:reason` | | `state` | software.amazon.awscdk.services.batch.JobStateTimeLimitActionsState | [[cdk.api.services.batch/job-state-time-limit-actions-state]] | `:state` |
(build-linux-parameters-builder builder id config)
The build-linux-parameters-builder function updates a LinuxParameters$Builder instance using the provided configuration. The function takes the LinuxParameters$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
initProcessEnabled | java.lang.Boolean | cdk.support/lookup-entry | :init-process-enabled |
maxSwap | software.amazon.awscdk.Size | cdk.support/lookup-entry | :max-swap |
sharedMemorySize | software.amazon.awscdk.Size | cdk.support/lookup-entry | :shared-memory-size |
swappiness | java.lang.Number | cdk.support/lookup-entry | :swappiness |
The build-linux-parameters-builder function updates a LinuxParameters$Builder instance using the provided configuration. The function takes the LinuxParameters$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `initProcessEnabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:init-process-enabled` | | `maxSwap` | software.amazon.awscdk.Size | [[cdk.support/lookup-entry]] | `:max-swap` | | `sharedMemorySize` | software.amazon.awscdk.Size | [[cdk.support/lookup-entry]] | `:shared-memory-size` | | `swappiness` | java.lang.Number | [[cdk.support/lookup-entry]] | `:swappiness` |
(build-linux-parameters-props-builder builder id config)
The build-linux-parameters-props-builder function updates a LinuxParametersProps$Builder instance using the provided configuration. The function takes the LinuxParametersProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
initProcessEnabled | java.lang.Boolean | cdk.support/lookup-entry | :init-process-enabled |
maxSwap | software.amazon.awscdk.Size | cdk.support/lookup-entry | :max-swap |
sharedMemorySize | software.amazon.awscdk.Size | cdk.support/lookup-entry | :shared-memory-size |
swappiness | java.lang.Number | cdk.support/lookup-entry | :swappiness |
The build-linux-parameters-props-builder function updates a LinuxParametersProps$Builder instance using the provided configuration. The function takes the LinuxParametersProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `initProcessEnabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:init-process-enabled` | | `maxSwap` | software.amazon.awscdk.Size | [[cdk.support/lookup-entry]] | `:max-swap` | | `sharedMemorySize` | software.amazon.awscdk.Size | [[cdk.support/lookup-entry]] | `:shared-memory-size` | | `swappiness` | java.lang.Number | [[cdk.support/lookup-entry]] | `:swappiness` |
(build-managed-compute-environment-props-builder builder id config)
The build-managed-compute-environment-props-builder function updates a ManagedComputeEnvironmentProps$Builder instance using the provided configuration. The function takes the ManagedComputeEnvironmentProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
computeEnvironmentName | java.lang.String | cdk.support/lookup-entry | :compute-environment-name |
enabled | java.lang.Boolean | cdk.support/lookup-entry | :enabled |
maxvCpus | java.lang.Number | cdk.support/lookup-entry | :maxv-cpus |
replaceComputeEnvironment | java.lang.Boolean | cdk.support/lookup-entry | :replace-compute-environment |
securityGroups | java.util.List | cdk.support/lookup-entry | :security-groups |
serviceRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :service-role |
spot | java.lang.Boolean | cdk.support/lookup-entry | :spot |
terminateOnUpdate | java.lang.Boolean | cdk.support/lookup-entry | :terminate-on-update |
updateTimeout | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :update-timeout |
updateToLatestImageVersion | java.lang.Boolean | cdk.support/lookup-entry | :update-to-latest-image-version |
vpc | software.amazon.awscdk.services.ec2.IVpc | cdk.support/lookup-entry | :vpc |
vpcSubnets | software.amazon.awscdk.services.ec2.SubnetSelection | cdk.support/lookup-entry | :vpc-subnets |
The build-managed-compute-environment-props-builder function updates a ManagedComputeEnvironmentProps$Builder instance using the provided configuration. The function takes the ManagedComputeEnvironmentProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `computeEnvironmentName` | java.lang.String | [[cdk.support/lookup-entry]] | `:compute-environment-name` | | `enabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:enabled` | | `maxvCpus` | java.lang.Number | [[cdk.support/lookup-entry]] | `:maxv-cpus` | | `replaceComputeEnvironment` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:replace-compute-environment` | | `securityGroups` | java.util.List | [[cdk.support/lookup-entry]] | `:security-groups` | | `serviceRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:service-role` | | `spot` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:spot` | | `terminateOnUpdate` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:terminate-on-update` | | `updateTimeout` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:update-timeout` | | `updateToLatestImageVersion` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:update-to-latest-image-version` | | `vpc` | software.amazon.awscdk.services.ec2.IVpc | [[cdk.support/lookup-entry]] | `:vpc` | | `vpcSubnets` | software.amazon.awscdk.services.ec2.SubnetSelection | [[cdk.support/lookup-entry]] | `:vpc-subnets` |
(build-managed-ec2-ecs-compute-environment-builder builder id config)
The build-managed-ec2-ecs-compute-environment-builder function updates a ManagedEc2EcsComputeEnvironment$Builder instance using the provided configuration. The function takes the ManagedEc2EcsComputeEnvironment$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
allocationStrategy | software.amazon.awscdk.services.batch.AllocationStrategy | cdk.api.services.batch/allocation-strategy | :allocation-strategy |
computeEnvironmentName | java.lang.String | cdk.support/lookup-entry | :compute-environment-name |
enabled | java.lang.Boolean | cdk.support/lookup-entry | :enabled |
images | java.util.List | cdk.support/lookup-entry | :images |
instanceClasses | java.util.List | cdk.support/lookup-entry | :instance-classes |
instanceRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :instance-role |
instanceTypes | java.util.List | cdk.support/lookup-entry | :instance-types |
launchTemplate | software.amazon.awscdk.services.ec2.ILaunchTemplate | cdk.support/lookup-entry | :launch-template |
maxvCpus | java.lang.Number | cdk.support/lookup-entry | :maxv-cpus |
minvCpus | java.lang.Number | cdk.support/lookup-entry | :minv-cpus |
placementGroup | software.amazon.awscdk.services.ec2.IPlacementGroup | cdk.support/lookup-entry | :placement-group |
replaceComputeEnvironment | java.lang.Boolean | cdk.support/lookup-entry | :replace-compute-environment |
securityGroups | java.util.List | cdk.support/lookup-entry | :security-groups |
serviceRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :service-role |
spot | java.lang.Boolean | cdk.support/lookup-entry | :spot |
spotBidPercentage | java.lang.Number | cdk.support/lookup-entry | :spot-bid-percentage |
spotFleetRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :spot-fleet-role |
terminateOnUpdate | java.lang.Boolean | cdk.support/lookup-entry | :terminate-on-update |
updateTimeout | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :update-timeout |
updateToLatestImageVersion | java.lang.Boolean | cdk.support/lookup-entry | :update-to-latest-image-version |
useOptimalInstanceClasses | java.lang.Boolean | cdk.support/lookup-entry | :use-optimal-instance-classes |
vpc | software.amazon.awscdk.services.ec2.IVpc | cdk.support/lookup-entry | :vpc |
vpcSubnets | software.amazon.awscdk.services.ec2.SubnetSelection | cdk.support/lookup-entry | :vpc-subnets |
The build-managed-ec2-ecs-compute-environment-builder function updates a ManagedEc2EcsComputeEnvironment$Builder instance using the provided configuration. The function takes the ManagedEc2EcsComputeEnvironment$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `allocationStrategy` | software.amazon.awscdk.services.batch.AllocationStrategy | [[cdk.api.services.batch/allocation-strategy]] | `:allocation-strategy` | | `computeEnvironmentName` | java.lang.String | [[cdk.support/lookup-entry]] | `:compute-environment-name` | | `enabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:enabled` | | `images` | java.util.List | [[cdk.support/lookup-entry]] | `:images` | | `instanceClasses` | java.util.List | [[cdk.support/lookup-entry]] | `:instance-classes` | | `instanceRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:instance-role` | | `instanceTypes` | java.util.List | [[cdk.support/lookup-entry]] | `:instance-types` | | `launchTemplate` | software.amazon.awscdk.services.ec2.ILaunchTemplate | [[cdk.support/lookup-entry]] | `:launch-template` | | `maxvCpus` | java.lang.Number | [[cdk.support/lookup-entry]] | `:maxv-cpus` | | `minvCpus` | java.lang.Number | [[cdk.support/lookup-entry]] | `:minv-cpus` | | `placementGroup` | software.amazon.awscdk.services.ec2.IPlacementGroup | [[cdk.support/lookup-entry]] | `:placement-group` | | `replaceComputeEnvironment` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:replace-compute-environment` | | `securityGroups` | java.util.List | [[cdk.support/lookup-entry]] | `:security-groups` | | `serviceRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:service-role` | | `spot` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:spot` | | `spotBidPercentage` | java.lang.Number | [[cdk.support/lookup-entry]] | `:spot-bid-percentage` | | `spotFleetRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:spot-fleet-role` | | `terminateOnUpdate` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:terminate-on-update` | | `updateTimeout` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:update-timeout` | | `updateToLatestImageVersion` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:update-to-latest-image-version` | | `useOptimalInstanceClasses` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:use-optimal-instance-classes` | | `vpc` | software.amazon.awscdk.services.ec2.IVpc | [[cdk.support/lookup-entry]] | `:vpc` | | `vpcSubnets` | software.amazon.awscdk.services.ec2.SubnetSelection | [[cdk.support/lookup-entry]] | `:vpc-subnets` |
(build-managed-ec2-ecs-compute-environment-props-builder builder id config)
The build-managed-ec2-ecs-compute-environment-props-builder function updates a ManagedEc2EcsComputeEnvironmentProps$Builder instance using the provided configuration. The function takes the ManagedEc2EcsComputeEnvironmentProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
allocationStrategy | software.amazon.awscdk.services.batch.AllocationStrategy | cdk.api.services.batch/allocation-strategy | :allocation-strategy |
computeEnvironmentName | java.lang.String | cdk.support/lookup-entry | :compute-environment-name |
enabled | java.lang.Boolean | cdk.support/lookup-entry | :enabled |
images | java.util.List | cdk.support/lookup-entry | :images |
instanceClasses | java.util.List | cdk.support/lookup-entry | :instance-classes |
instanceRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :instance-role |
instanceTypes | java.util.List | cdk.support/lookup-entry | :instance-types |
launchTemplate | software.amazon.awscdk.services.ec2.ILaunchTemplate | cdk.support/lookup-entry | :launch-template |
maxvCpus | java.lang.Number | cdk.support/lookup-entry | :maxv-cpus |
minvCpus | java.lang.Number | cdk.support/lookup-entry | :minv-cpus |
placementGroup | software.amazon.awscdk.services.ec2.IPlacementGroup | cdk.support/lookup-entry | :placement-group |
replaceComputeEnvironment | java.lang.Boolean | cdk.support/lookup-entry | :replace-compute-environment |
securityGroups | java.util.List | cdk.support/lookup-entry | :security-groups |
serviceRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :service-role |
spot | java.lang.Boolean | cdk.support/lookup-entry | :spot |
spotBidPercentage | java.lang.Number | cdk.support/lookup-entry | :spot-bid-percentage |
spotFleetRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :spot-fleet-role |
terminateOnUpdate | java.lang.Boolean | cdk.support/lookup-entry | :terminate-on-update |
updateTimeout | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :update-timeout |
updateToLatestImageVersion | java.lang.Boolean | cdk.support/lookup-entry | :update-to-latest-image-version |
useOptimalInstanceClasses | java.lang.Boolean | cdk.support/lookup-entry | :use-optimal-instance-classes |
vpc | software.amazon.awscdk.services.ec2.IVpc | cdk.support/lookup-entry | :vpc |
vpcSubnets | software.amazon.awscdk.services.ec2.SubnetSelection | cdk.support/lookup-entry | :vpc-subnets |
The build-managed-ec2-ecs-compute-environment-props-builder function updates a ManagedEc2EcsComputeEnvironmentProps$Builder instance using the provided configuration. The function takes the ManagedEc2EcsComputeEnvironmentProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `allocationStrategy` | software.amazon.awscdk.services.batch.AllocationStrategy | [[cdk.api.services.batch/allocation-strategy]] | `:allocation-strategy` | | `computeEnvironmentName` | java.lang.String | [[cdk.support/lookup-entry]] | `:compute-environment-name` | | `enabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:enabled` | | `images` | java.util.List | [[cdk.support/lookup-entry]] | `:images` | | `instanceClasses` | java.util.List | [[cdk.support/lookup-entry]] | `:instance-classes` | | `instanceRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:instance-role` | | `instanceTypes` | java.util.List | [[cdk.support/lookup-entry]] | `:instance-types` | | `launchTemplate` | software.amazon.awscdk.services.ec2.ILaunchTemplate | [[cdk.support/lookup-entry]] | `:launch-template` | | `maxvCpus` | java.lang.Number | [[cdk.support/lookup-entry]] | `:maxv-cpus` | | `minvCpus` | java.lang.Number | [[cdk.support/lookup-entry]] | `:minv-cpus` | | `placementGroup` | software.amazon.awscdk.services.ec2.IPlacementGroup | [[cdk.support/lookup-entry]] | `:placement-group` | | `replaceComputeEnvironment` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:replace-compute-environment` | | `securityGroups` | java.util.List | [[cdk.support/lookup-entry]] | `:security-groups` | | `serviceRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:service-role` | | `spot` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:spot` | | `spotBidPercentage` | java.lang.Number | [[cdk.support/lookup-entry]] | `:spot-bid-percentage` | | `spotFleetRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:spot-fleet-role` | | `terminateOnUpdate` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:terminate-on-update` | | `updateTimeout` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:update-timeout` | | `updateToLatestImageVersion` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:update-to-latest-image-version` | | `useOptimalInstanceClasses` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:use-optimal-instance-classes` | | `vpc` | software.amazon.awscdk.services.ec2.IVpc | [[cdk.support/lookup-entry]] | `:vpc` | | `vpcSubnets` | software.amazon.awscdk.services.ec2.SubnetSelection | [[cdk.support/lookup-entry]] | `:vpc-subnets` |
(build-managed-ec2-eks-compute-environment-builder builder id config)
The build-managed-ec2-eks-compute-environment-builder function updates a ManagedEc2EksComputeEnvironment$Builder instance using the provided configuration. The function takes the ManagedEc2EksComputeEnvironment$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
allocationStrategy | software.amazon.awscdk.services.batch.AllocationStrategy | cdk.api.services.batch/allocation-strategy | :allocation-strategy |
computeEnvironmentName | java.lang.String | cdk.support/lookup-entry | :compute-environment-name |
eksCluster | software.amazon.awscdk.services.eks.ICluster | cdk.support/lookup-entry | :eks-cluster |
enabled | java.lang.Boolean | cdk.support/lookup-entry | :enabled |
images | java.util.List | cdk.support/lookup-entry | :images |
instanceClasses | java.util.List | cdk.support/lookup-entry | :instance-classes |
instanceRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :instance-role |
instanceTypes | java.util.List | cdk.support/lookup-entry | :instance-types |
kubernetesNamespace | java.lang.String | cdk.support/lookup-entry | :kubernetes-namespace |
launchTemplate | software.amazon.awscdk.services.ec2.ILaunchTemplate | cdk.support/lookup-entry | :launch-template |
maxvCpus | java.lang.Number | cdk.support/lookup-entry | :maxv-cpus |
minvCpus | java.lang.Number | cdk.support/lookup-entry | :minv-cpus |
placementGroup | software.amazon.awscdk.services.ec2.IPlacementGroup | cdk.support/lookup-entry | :placement-group |
replaceComputeEnvironment | java.lang.Boolean | cdk.support/lookup-entry | :replace-compute-environment |
securityGroups | java.util.List | cdk.support/lookup-entry | :security-groups |
serviceRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :service-role |
spot | java.lang.Boolean | cdk.support/lookup-entry | :spot |
spotBidPercentage | java.lang.Number | cdk.support/lookup-entry | :spot-bid-percentage |
terminateOnUpdate | java.lang.Boolean | cdk.support/lookup-entry | :terminate-on-update |
updateTimeout | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :update-timeout |
updateToLatestImageVersion | java.lang.Boolean | cdk.support/lookup-entry | :update-to-latest-image-version |
useOptimalInstanceClasses | java.lang.Boolean | cdk.support/lookup-entry | :use-optimal-instance-classes |
vpc | software.amazon.awscdk.services.ec2.IVpc | cdk.support/lookup-entry | :vpc |
vpcSubnets | software.amazon.awscdk.services.ec2.SubnetSelection | cdk.support/lookup-entry | :vpc-subnets |
The build-managed-ec2-eks-compute-environment-builder function updates a ManagedEc2EksComputeEnvironment$Builder instance using the provided configuration. The function takes the ManagedEc2EksComputeEnvironment$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `allocationStrategy` | software.amazon.awscdk.services.batch.AllocationStrategy | [[cdk.api.services.batch/allocation-strategy]] | `:allocation-strategy` | | `computeEnvironmentName` | java.lang.String | [[cdk.support/lookup-entry]] | `:compute-environment-name` | | `eksCluster` | software.amazon.awscdk.services.eks.ICluster | [[cdk.support/lookup-entry]] | `:eks-cluster` | | `enabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:enabled` | | `images` | java.util.List | [[cdk.support/lookup-entry]] | `:images` | | `instanceClasses` | java.util.List | [[cdk.support/lookup-entry]] | `:instance-classes` | | `instanceRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:instance-role` | | `instanceTypes` | java.util.List | [[cdk.support/lookup-entry]] | `:instance-types` | | `kubernetesNamespace` | java.lang.String | [[cdk.support/lookup-entry]] | `:kubernetes-namespace` | | `launchTemplate` | software.amazon.awscdk.services.ec2.ILaunchTemplate | [[cdk.support/lookup-entry]] | `:launch-template` | | `maxvCpus` | java.lang.Number | [[cdk.support/lookup-entry]] | `:maxv-cpus` | | `minvCpus` | java.lang.Number | [[cdk.support/lookup-entry]] | `:minv-cpus` | | `placementGroup` | software.amazon.awscdk.services.ec2.IPlacementGroup | [[cdk.support/lookup-entry]] | `:placement-group` | | `replaceComputeEnvironment` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:replace-compute-environment` | | `securityGroups` | java.util.List | [[cdk.support/lookup-entry]] | `:security-groups` | | `serviceRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:service-role` | | `spot` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:spot` | | `spotBidPercentage` | java.lang.Number | [[cdk.support/lookup-entry]] | `:spot-bid-percentage` | | `terminateOnUpdate` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:terminate-on-update` | | `updateTimeout` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:update-timeout` | | `updateToLatestImageVersion` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:update-to-latest-image-version` | | `useOptimalInstanceClasses` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:use-optimal-instance-classes` | | `vpc` | software.amazon.awscdk.services.ec2.IVpc | [[cdk.support/lookup-entry]] | `:vpc` | | `vpcSubnets` | software.amazon.awscdk.services.ec2.SubnetSelection | [[cdk.support/lookup-entry]] | `:vpc-subnets` |
(build-managed-ec2-eks-compute-environment-props-builder builder id config)
The build-managed-ec2-eks-compute-environment-props-builder function updates a ManagedEc2EksComputeEnvironmentProps$Builder instance using the provided configuration. The function takes the ManagedEc2EksComputeEnvironmentProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
allocationStrategy | software.amazon.awscdk.services.batch.AllocationStrategy | cdk.api.services.batch/allocation-strategy | :allocation-strategy |
computeEnvironmentName | java.lang.String | cdk.support/lookup-entry | :compute-environment-name |
eksCluster | software.amazon.awscdk.services.eks.ICluster | cdk.support/lookup-entry | :eks-cluster |
enabled | java.lang.Boolean | cdk.support/lookup-entry | :enabled |
images | java.util.List | cdk.support/lookup-entry | :images |
instanceClasses | java.util.List | cdk.support/lookup-entry | :instance-classes |
instanceRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :instance-role |
instanceTypes | java.util.List | cdk.support/lookup-entry | :instance-types |
kubernetesNamespace | java.lang.String | cdk.support/lookup-entry | :kubernetes-namespace |
launchTemplate | software.amazon.awscdk.services.ec2.ILaunchTemplate | cdk.support/lookup-entry | :launch-template |
maxvCpus | java.lang.Number | cdk.support/lookup-entry | :maxv-cpus |
minvCpus | java.lang.Number | cdk.support/lookup-entry | :minv-cpus |
placementGroup | software.amazon.awscdk.services.ec2.IPlacementGroup | cdk.support/lookup-entry | :placement-group |
replaceComputeEnvironment | java.lang.Boolean | cdk.support/lookup-entry | :replace-compute-environment |
securityGroups | java.util.List | cdk.support/lookup-entry | :security-groups |
serviceRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :service-role |
spot | java.lang.Boolean | cdk.support/lookup-entry | :spot |
spotBidPercentage | java.lang.Number | cdk.support/lookup-entry | :spot-bid-percentage |
terminateOnUpdate | java.lang.Boolean | cdk.support/lookup-entry | :terminate-on-update |
updateTimeout | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :update-timeout |
updateToLatestImageVersion | java.lang.Boolean | cdk.support/lookup-entry | :update-to-latest-image-version |
useOptimalInstanceClasses | java.lang.Boolean | cdk.support/lookup-entry | :use-optimal-instance-classes |
vpc | software.amazon.awscdk.services.ec2.IVpc | cdk.support/lookup-entry | :vpc |
vpcSubnets | software.amazon.awscdk.services.ec2.SubnetSelection | cdk.support/lookup-entry | :vpc-subnets |
The build-managed-ec2-eks-compute-environment-props-builder function updates a ManagedEc2EksComputeEnvironmentProps$Builder instance using the provided configuration. The function takes the ManagedEc2EksComputeEnvironmentProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `allocationStrategy` | software.amazon.awscdk.services.batch.AllocationStrategy | [[cdk.api.services.batch/allocation-strategy]] | `:allocation-strategy` | | `computeEnvironmentName` | java.lang.String | [[cdk.support/lookup-entry]] | `:compute-environment-name` | | `eksCluster` | software.amazon.awscdk.services.eks.ICluster | [[cdk.support/lookup-entry]] | `:eks-cluster` | | `enabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:enabled` | | `images` | java.util.List | [[cdk.support/lookup-entry]] | `:images` | | `instanceClasses` | java.util.List | [[cdk.support/lookup-entry]] | `:instance-classes` | | `instanceRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:instance-role` | | `instanceTypes` | java.util.List | [[cdk.support/lookup-entry]] | `:instance-types` | | `kubernetesNamespace` | java.lang.String | [[cdk.support/lookup-entry]] | `:kubernetes-namespace` | | `launchTemplate` | software.amazon.awscdk.services.ec2.ILaunchTemplate | [[cdk.support/lookup-entry]] | `:launch-template` | | `maxvCpus` | java.lang.Number | [[cdk.support/lookup-entry]] | `:maxv-cpus` | | `minvCpus` | java.lang.Number | [[cdk.support/lookup-entry]] | `:minv-cpus` | | `placementGroup` | software.amazon.awscdk.services.ec2.IPlacementGroup | [[cdk.support/lookup-entry]] | `:placement-group` | | `replaceComputeEnvironment` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:replace-compute-environment` | | `securityGroups` | java.util.List | [[cdk.support/lookup-entry]] | `:security-groups` | | `serviceRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:service-role` | | `spot` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:spot` | | `spotBidPercentage` | java.lang.Number | [[cdk.support/lookup-entry]] | `:spot-bid-percentage` | | `terminateOnUpdate` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:terminate-on-update` | | `updateTimeout` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:update-timeout` | | `updateToLatestImageVersion` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:update-to-latest-image-version` | | `useOptimalInstanceClasses` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:use-optimal-instance-classes` | | `vpc` | software.amazon.awscdk.services.ec2.IVpc | [[cdk.support/lookup-entry]] | `:vpc` | | `vpcSubnets` | software.amazon.awscdk.services.ec2.SubnetSelection | [[cdk.support/lookup-entry]] | `:vpc-subnets` |
(build-multi-node-container-builder builder id config)
The build-multi-node-container-builder function updates a MultiNodeContainer$Builder instance using the provided configuration. The function takes the MultiNodeContainer$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
container | software.amazon.awscdk.services.batch.IEcsContainerDefinition | cdk.support/lookup-entry | :container |
endNode | java.lang.Number | cdk.support/lookup-entry | :end-node |
startNode | java.lang.Number | cdk.support/lookup-entry | :start-node |
The build-multi-node-container-builder function updates a MultiNodeContainer$Builder instance using the provided configuration. The function takes the MultiNodeContainer$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `container` | software.amazon.awscdk.services.batch.IEcsContainerDefinition | [[cdk.support/lookup-entry]] | `:container` | | `endNode` | java.lang.Number | [[cdk.support/lookup-entry]] | `:end-node` | | `startNode` | java.lang.Number | [[cdk.support/lookup-entry]] | `:start-node` |
(build-multi-node-job-definition-builder builder id config)
The build-multi-node-job-definition-builder function updates a MultiNodeJobDefinition$Builder instance using the provided configuration. The function takes the MultiNodeJobDefinition$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
containers | java.util.List | cdk.support/lookup-entry | :containers |
instanceType | software.amazon.awscdk.services.ec2.InstanceType | cdk.support/lookup-entry | :instance-type |
jobDefinitionName | java.lang.String | cdk.support/lookup-entry | :job-definition-name |
mainNode | java.lang.Number | cdk.support/lookup-entry | :main-node |
parameters | java.util.Map | cdk.support/lookup-entry | :parameters |
propagateTags | java.lang.Boolean | cdk.support/lookup-entry | :propagate-tags |
retryAttempts | java.lang.Number | cdk.support/lookup-entry | :retry-attempts |
retryStrategies | java.util.List | cdk.support/lookup-entry | :retry-strategies |
schedulingPriority | java.lang.Number | cdk.support/lookup-entry | :scheduling-priority |
timeout | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :timeout |
The build-multi-node-job-definition-builder function updates a MultiNodeJobDefinition$Builder instance using the provided configuration. The function takes the MultiNodeJobDefinition$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `containers` | java.util.List | [[cdk.support/lookup-entry]] | `:containers` | | `instanceType` | software.amazon.awscdk.services.ec2.InstanceType | [[cdk.support/lookup-entry]] | `:instance-type` | | `jobDefinitionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:job-definition-name` | | `mainNode` | java.lang.Number | [[cdk.support/lookup-entry]] | `:main-node` | | `parameters` | java.util.Map | [[cdk.support/lookup-entry]] | `:parameters` | | `propagateTags` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:propagate-tags` | | `retryAttempts` | java.lang.Number | [[cdk.support/lookup-entry]] | `:retry-attempts` | | `retryStrategies` | java.util.List | [[cdk.support/lookup-entry]] | `:retry-strategies` | | `schedulingPriority` | java.lang.Number | [[cdk.support/lookup-entry]] | `:scheduling-priority` | | `timeout` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:timeout` |
(build-multi-node-job-definition-props-builder builder id config)
The build-multi-node-job-definition-props-builder function updates a MultiNodeJobDefinitionProps$Builder instance using the provided configuration. The function takes the MultiNodeJobDefinitionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
containers | java.util.List | cdk.support/lookup-entry | :containers |
instanceType | software.amazon.awscdk.services.ec2.InstanceType | cdk.support/lookup-entry | :instance-type |
jobDefinitionName | java.lang.String | cdk.support/lookup-entry | :job-definition-name |
mainNode | java.lang.Number | cdk.support/lookup-entry | :main-node |
parameters | java.util.Map | cdk.support/lookup-entry | :parameters |
propagateTags | java.lang.Boolean | cdk.support/lookup-entry | :propagate-tags |
retryAttempts | java.lang.Number | cdk.support/lookup-entry | :retry-attempts |
retryStrategies | java.util.List | cdk.support/lookup-entry | :retry-strategies |
schedulingPriority | java.lang.Number | cdk.support/lookup-entry | :scheduling-priority |
timeout | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :timeout |
The build-multi-node-job-definition-props-builder function updates a MultiNodeJobDefinitionProps$Builder instance using the provided configuration. The function takes the MultiNodeJobDefinitionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `containers` | java.util.List | [[cdk.support/lookup-entry]] | `:containers` | | `instanceType` | software.amazon.awscdk.services.ec2.InstanceType | [[cdk.support/lookup-entry]] | `:instance-type` | | `jobDefinitionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:job-definition-name` | | `mainNode` | java.lang.Number | [[cdk.support/lookup-entry]] | `:main-node` | | `parameters` | java.util.Map | [[cdk.support/lookup-entry]] | `:parameters` | | `propagateTags` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:propagate-tags` | | `retryAttempts` | java.lang.Number | [[cdk.support/lookup-entry]] | `:retry-attempts` | | `retryStrategies` | java.util.List | [[cdk.support/lookup-entry]] | `:retry-strategies` | | `schedulingPriority` | java.lang.Number | [[cdk.support/lookup-entry]] | `:scheduling-priority` | | `timeout` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:timeout` |
(build-ordered-compute-environment-builder builder id config)
The build-ordered-compute-environment-builder function updates a OrderedComputeEnvironment$Builder instance using the provided configuration. The function takes the OrderedComputeEnvironment$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
computeEnvironment | software.amazon.awscdk.services.batch.IComputeEnvironment | cdk.support/lookup-entry | :compute-environment |
order | java.lang.Number | cdk.support/lookup-entry | :order |
The build-ordered-compute-environment-builder function updates a OrderedComputeEnvironment$Builder instance using the provided configuration. The function takes the OrderedComputeEnvironment$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `computeEnvironment` | software.amazon.awscdk.services.batch.IComputeEnvironment | [[cdk.support/lookup-entry]] | `:compute-environment` | | `order` | java.lang.Number | [[cdk.support/lookup-entry]] | `:order` |
(build-secret-path-volume-builder builder id config)
The build-secret-path-volume-builder function updates a SecretPathVolume$Builder instance using the provided configuration. The function takes the SecretPathVolume$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
mountPath | java.lang.String | cdk.support/lookup-entry | :mount-path |
name | java.lang.String | cdk.support/lookup-entry | :name |
optional | java.lang.Boolean | cdk.support/lookup-entry | :optional |
readonly | java.lang.Boolean | cdk.support/lookup-entry | :readonly |
secretName | java.lang.String | cdk.support/lookup-entry | :secret-name |
The build-secret-path-volume-builder function updates a SecretPathVolume$Builder instance using the provided configuration. The function takes the SecretPathVolume$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `mountPath` | java.lang.String | [[cdk.support/lookup-entry]] | `:mount-path` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `optional` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:optional` | | `readonly` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:readonly` | | `secretName` | java.lang.String | [[cdk.support/lookup-entry]] | `:secret-name` |
(build-secret-path-volume-options-builder builder id config)
The build-secret-path-volume-options-builder function updates a SecretPathVolumeOptions$Builder instance using the provided configuration. The function takes the SecretPathVolumeOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
mountPath | java.lang.String | cdk.support/lookup-entry | :mount-path |
name | java.lang.String | cdk.support/lookup-entry | :name |
optional | java.lang.Boolean | cdk.support/lookup-entry | :optional |
readonly | java.lang.Boolean | cdk.support/lookup-entry | :readonly |
secretName | java.lang.String | cdk.support/lookup-entry | :secret-name |
The build-secret-path-volume-options-builder function updates a SecretPathVolumeOptions$Builder instance using the provided configuration. The function takes the SecretPathVolumeOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `mountPath` | java.lang.String | [[cdk.support/lookup-entry]] | `:mount-path` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `optional` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:optional` | | `readonly` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:readonly` | | `secretName` | java.lang.String | [[cdk.support/lookup-entry]] | `:secret-name` |
(build-secret-version-info-builder builder id config)
The build-secret-version-info-builder function updates a SecretVersionInfo$Builder instance using the provided configuration. The function takes the SecretVersionInfo$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
versionId | java.lang.String | cdk.support/lookup-entry | :version-id |
versionStage | java.lang.String | cdk.support/lookup-entry | :version-stage |
The build-secret-version-info-builder function updates a SecretVersionInfo$Builder instance using the provided configuration. The function takes the SecretVersionInfo$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `versionId` | java.lang.String | [[cdk.support/lookup-entry]] | `:version-id` | | `versionStage` | java.lang.String | [[cdk.support/lookup-entry]] | `:version-stage` |
(build-share-builder builder id config)
The build-share-builder function updates a Share$Builder instance using the provided configuration. The function takes the Share$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
shareIdentifier | java.lang.String | cdk.support/lookup-entry | :share-identifier |
weightFactor | java.lang.Number | cdk.support/lookup-entry | :weight-factor |
The build-share-builder function updates a Share$Builder instance using the provided configuration. The function takes the Share$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `shareIdentifier` | java.lang.String | [[cdk.support/lookup-entry]] | `:share-identifier` | | `weightFactor` | java.lang.Number | [[cdk.support/lookup-entry]] | `:weight-factor` |
(build-tmpfs-builder builder id config)
The build-tmpfs-builder function updates a Tmpfs$Builder instance using the provided configuration. The function takes the Tmpfs$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
containerPath | java.lang.String | cdk.support/lookup-entry | :container-path |
mountOptions | java.util.List | cdk.support/lookup-entry | :mount-options |
size | software.amazon.awscdk.Size | cdk.support/lookup-entry | :size |
The build-tmpfs-builder function updates a Tmpfs$Builder instance using the provided configuration. The function takes the Tmpfs$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `containerPath` | java.lang.String | [[cdk.support/lookup-entry]] | `:container-path` | | `mountOptions` | java.util.List | [[cdk.support/lookup-entry]] | `:mount-options` | | `size` | software.amazon.awscdk.Size | [[cdk.support/lookup-entry]] | `:size` |
(build-ulimit-builder builder id config)
The build-ulimit-builder function updates a Ulimit$Builder instance using the provided configuration. The function takes the Ulimit$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
hardLimit | java.lang.Number | cdk.support/lookup-entry | :hard-limit |
name | software.amazon.awscdk.services.batch.UlimitName | cdk.api.services.batch/ulimit-name | :name |
softLimit | java.lang.Number | cdk.support/lookup-entry | :soft-limit |
The build-ulimit-builder function updates a Ulimit$Builder instance using the provided configuration. The function takes the Ulimit$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `hardLimit` | java.lang.Number | [[cdk.support/lookup-entry]] | `:hard-limit` | | `name` | software.amazon.awscdk.services.batch.UlimitName | [[cdk.api.services.batch/ulimit-name]] | `:name` | | `softLimit` | java.lang.Number | [[cdk.support/lookup-entry]] | `:soft-limit` |
(build-unmanaged-compute-environment-builder builder id config)
The build-unmanaged-compute-environment-builder function updates a UnmanagedComputeEnvironment$Builder instance using the provided configuration. The function takes the UnmanagedComputeEnvironment$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
computeEnvironmentName | java.lang.String | cdk.support/lookup-entry | :compute-environment-name |
enabled | java.lang.Boolean | cdk.support/lookup-entry | :enabled |
serviceRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :service-role |
unmanagedvCpus | java.lang.Number | cdk.support/lookup-entry | :unmanagedv-cpus |
The build-unmanaged-compute-environment-builder function updates a UnmanagedComputeEnvironment$Builder instance using the provided configuration. The function takes the UnmanagedComputeEnvironment$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `computeEnvironmentName` | java.lang.String | [[cdk.support/lookup-entry]] | `:compute-environment-name` | | `enabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:enabled` | | `serviceRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:service-role` | | `unmanagedvCpus` | java.lang.Number | [[cdk.support/lookup-entry]] | `:unmanagedv-cpus` |
(build-unmanaged-compute-environment-props-builder builder id config)
The build-unmanaged-compute-environment-props-builder function updates a UnmanagedComputeEnvironmentProps$Builder instance using the provided configuration. The function takes the UnmanagedComputeEnvironmentProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
computeEnvironmentName | java.lang.String | cdk.support/lookup-entry | :compute-environment-name |
enabled | java.lang.Boolean | cdk.support/lookup-entry | :enabled |
serviceRole | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :service-role |
unmanagedvCpus | java.lang.Number | cdk.support/lookup-entry | :unmanagedv-cpus |
The build-unmanaged-compute-environment-props-builder function updates a UnmanagedComputeEnvironmentProps$Builder instance using the provided configuration. The function takes the UnmanagedComputeEnvironmentProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `computeEnvironmentName` | java.lang.String | [[cdk.support/lookup-entry]] | `:compute-environment-name` | | `enabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:enabled` | | `serviceRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:service-role` | | `unmanagedvCpus` | java.lang.Number | [[cdk.support/lookup-entry]] | `:unmanagedv-cpus` |
(cfn-compute-environment-builder scope id config)
Creates a CfnComputeEnvironment$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `CfnComputeEnvironment$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-compute-environment-compute-resources-property-builder id config)
Creates a CfnComputeEnvironment$ComputeResourcesProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnComputeEnvironment$ComputeResourcesProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-compute-environment-ec2-configuration-object-property-builder id config)
Creates a CfnComputeEnvironment$Ec2ConfigurationObjectProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnComputeEnvironment$Ec2ConfigurationObjectProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-compute-environment-eks-configuration-property-builder id config)
Creates a CfnComputeEnvironment$EksConfigurationProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnComputeEnvironment$EksConfigurationProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-compute-environment-launch-template-specification-property-builder id
config)
Creates a CfnComputeEnvironment$LaunchTemplateSpecificationProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnComputeEnvironment$LaunchTemplateSpecificationProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-compute-environment-props-builder id config)
Creates a CfnComputeEnvironmentProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnComputeEnvironmentProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-compute-environment-update-policy-property-builder id config)
Creates a CfnComputeEnvironment$UpdatePolicyProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnComputeEnvironment$UpdatePolicyProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-authorization-config-property-builder id config)
Creates a CfnJobDefinition$AuthorizationConfigProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$AuthorizationConfigProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-builder scope id config)
Creates a CfnJobDefinition$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `CfnJobDefinition$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-container-properties-property-builder id config)
Creates a CfnJobDefinition$ContainerPropertiesProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$ContainerPropertiesProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-device-property-builder id config)
Creates a CfnJobDefinition$DeviceProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$DeviceProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-ecs-properties-property-builder id config)
Creates a CfnJobDefinition$EcsPropertiesProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$EcsPropertiesProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-ecs-task-properties-property-builder id config)
Creates a CfnJobDefinition$EcsTaskPropertiesProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$EcsTaskPropertiesProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-efs-volume-configuration-property-builder id config)
Creates a CfnJobDefinition$EfsVolumeConfigurationProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$EfsVolumeConfigurationProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-eks-container-environment-variable-property-builder id
config)
Creates a CfnJobDefinition$EksContainerEnvironmentVariableProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$EksContainerEnvironmentVariableProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-eks-container-property-builder id config)
Creates a CfnJobDefinition$EksContainerProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$EksContainerProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-eks-container-volume-mount-property-builder id config)
Creates a CfnJobDefinition$EksContainerVolumeMountProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$EksContainerVolumeMountProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-eks-properties-property-builder id config)
Creates a CfnJobDefinition$EksPropertiesProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$EksPropertiesProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-eks-secret-property-builder id config)
Creates a CfnJobDefinition$EksSecretProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$EksSecretProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-eks-volume-property-builder id config)
Creates a CfnJobDefinition$EksVolumeProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$EksVolumeProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-empty-dir-property-builder id config)
Creates a CfnJobDefinition$EmptyDirProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$EmptyDirProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-environment-property-builder id config)
Creates a CfnJobDefinition$EnvironmentProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$EnvironmentProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-ephemeral-storage-property-builder id config)
Creates a CfnJobDefinition$EphemeralStorageProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$EphemeralStorageProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-evaluate-on-exit-property-builder id config)
Creates a CfnJobDefinition$EvaluateOnExitProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$EvaluateOnExitProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-fargate-platform-configuration-property-builder id config)
Creates a CfnJobDefinition$FargatePlatformConfigurationProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$FargatePlatformConfigurationProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-host-path-property-builder id config)
Creates a CfnJobDefinition$HostPathProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$HostPathProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-image-pull-secret-property-builder id config)
Creates a CfnJobDefinition$ImagePullSecretProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$ImagePullSecretProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-linux-parameters-property-builder id config)
Creates a CfnJobDefinition$LinuxParametersProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$LinuxParametersProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-log-configuration-property-builder id config)
Creates a CfnJobDefinition$LogConfigurationProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$LogConfigurationProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-metadata-property-builder id config)
Creates a CfnJobDefinition$MetadataProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$MetadataProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-mount-points-property-builder id config)
Creates a CfnJobDefinition$MountPointsProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$MountPointsProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-network-configuration-property-builder id config)
Creates a CfnJobDefinition$NetworkConfigurationProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$NetworkConfigurationProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-node-properties-property-builder id config)
Creates a CfnJobDefinition$NodePropertiesProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$NodePropertiesProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-node-range-property-property-builder id config)
Creates a CfnJobDefinition$NodeRangePropertyProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$NodeRangePropertyProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-pod-properties-property-builder id config)
Creates a CfnJobDefinition$PodPropertiesProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$PodPropertiesProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-props-builder id config)
Creates a CfnJobDefinitionProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinitionProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-repository-credentials-property-builder id config)
Creates a CfnJobDefinition$RepositoryCredentialsProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$RepositoryCredentialsProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-resource-requirement-property-builder id config)
Creates a CfnJobDefinition$ResourceRequirementProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$ResourceRequirementProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-resources-property-builder id config)
Creates a CfnJobDefinition$ResourcesProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$ResourcesProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-retry-strategy-property-builder id config)
Creates a CfnJobDefinition$RetryStrategyProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$RetryStrategyProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-runtime-platform-property-builder id config)
Creates a CfnJobDefinition$RuntimePlatformProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$RuntimePlatformProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-secret-property-builder id config)
Creates a CfnJobDefinition$SecretProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$SecretProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-security-context-property-builder id config)
Creates a CfnJobDefinition$SecurityContextProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$SecurityContextProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-task-container-dependency-property-builder id config)
Creates a CfnJobDefinition$TaskContainerDependencyProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$TaskContainerDependencyProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-task-container-properties-property-builder id config)
Creates a CfnJobDefinition$TaskContainerPropertiesProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$TaskContainerPropertiesProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-timeout-property-builder id config)
Creates a CfnJobDefinition$TimeoutProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$TimeoutProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-tmpfs-property-builder id config)
Creates a CfnJobDefinition$TmpfsProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$TmpfsProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-ulimit-property-builder id config)
Creates a CfnJobDefinition$UlimitProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$UlimitProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-volumes-host-property-builder id config)
Creates a CfnJobDefinition$VolumesHostProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$VolumesHostProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-definition-volumes-property-builder id config)
Creates a CfnJobDefinition$VolumesProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobDefinition$VolumesProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-queue-builder scope id config)
Creates a CfnJobQueue$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `CfnJobQueue$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-queue-compute-environment-order-property-builder id config)
Creates a CfnJobQueue$ComputeEnvironmentOrderProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobQueue$ComputeEnvironmentOrderProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-queue-job-state-time-limit-action-property-builder id config)
Creates a CfnJobQueue$JobStateTimeLimitActionProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobQueue$JobStateTimeLimitActionProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-job-queue-props-builder id config)
Creates a CfnJobQueueProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnJobQueueProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-scheduling-policy-builder scope id config)
Creates a CfnSchedulingPolicy$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `CfnSchedulingPolicy$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-scheduling-policy-fairshare-policy-property-builder id config)
Creates a CfnSchedulingPolicy$FairsharePolicyProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnSchedulingPolicy$FairsharePolicyProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-scheduling-policy-props-builder id config)
Creates a CfnSchedulingPolicyProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnSchedulingPolicyProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-scheduling-policy-share-attributes-property-builder id config)
Creates a CfnSchedulingPolicy$ShareAttributesProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnSchedulingPolicy$ShareAttributesProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(compute-environment-props-builder id config)
Creates a ComputeEnvironmentProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `ComputeEnvironmentProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(custom-reason-builder id config)
Creates a CustomReason$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CustomReason$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(device-builder id config)
Creates a Device$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `Device$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(device-permission config id item-key)
The device-permission
function data interprets values in the provided config data into a
DevicePermission
instance. This simplifies the use of keywords in place of actual enum values in
the configuration provided to builders. The value is found using the cdk.support/lookup-entry
function on the data with the provided namespace id and item-key. The found value is interpretted as follows:
DevicePermission
- the value is returned.:read
- DevicePermission/READ
is returned:write
- DevicePermission/WRITE
is returned:mknod
- DevicePermission/MKNOD
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `device-permission` function data interprets values in the provided config data into a `DevicePermission` instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the `cdk.support/lookup-entry` function on the data with the provided namespace id and item-key. The found value is interpretted as follows: * instance of `DevicePermission` - the value is returned. * is `:read` - `DevicePermission/READ` is returned * is `:write` - `DevicePermission/WRITE` is returned * is `:mknod` - `DevicePermission/MKNOD` is returned If a value is not found or matches the above criteria, nil is returned.
(dns-policy config id item-key)
The dns-policy
function data interprets values in the provided config data into a
DnsPolicy
instance. This simplifies the use of keywords in place of actual enum values in
the configuration provided to builders. The value is found using the cdk.support/lookup-entry
function on the data with the provided namespace id and item-key. The found value is interpretted as follows:
DnsPolicy
- the value is returned.:cluster-first-with-host-net
- DnsPolicy/CLUSTER_FIRST_WITH_HOST_NET
is returned:cluster-first
- DnsPolicy/CLUSTER_FIRST
is returned:default
- DnsPolicy/DEFAULT
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `dns-policy` function data interprets values in the provided config data into a `DnsPolicy` instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the `cdk.support/lookup-entry` function on the data with the provided namespace id and item-key. The found value is interpretted as follows: * instance of `DnsPolicy` - the value is returned. * is `:cluster-first-with-host-net` - `DnsPolicy/CLUSTER_FIRST_WITH_HOST_NET` is returned * is `:cluster-first` - `DnsPolicy/CLUSTER_FIRST` is returned * is `:default` - `DnsPolicy/DEFAULT` is returned If a value is not found or matches the above criteria, nil is returned.
(ecs-container-definition-props-builder id config)
Creates a EcsContainerDefinitionProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `EcsContainerDefinitionProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(ecs-ec2-container-definition-builder scope id config)
Creates a EcsEc2ContainerDefinition$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `EcsEc2ContainerDefinition$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(ecs-ec2-container-definition-props-builder id config)
Creates a EcsEc2ContainerDefinitionProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `EcsEc2ContainerDefinitionProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(ecs-fargate-container-definition-builder scope id config)
Creates a EcsFargateContainerDefinition$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `EcsFargateContainerDefinition$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(ecs-fargate-container-definition-props-builder id config)
Creates a EcsFargateContainerDefinitionProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `EcsFargateContainerDefinitionProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(ecs-job-definition-builder scope id config)
Creates a EcsJobDefinition$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `EcsJobDefinition$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(ecs-job-definition-props-builder id config)
Creates a EcsJobDefinitionProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `EcsJobDefinitionProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(ecs-machine-image-builder id config)
Creates a EcsMachineImage$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `EcsMachineImage$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(ecs-machine-image-type config id item-key)
The ecs-machine-image-type
function data interprets values in the provided config data into a
EcsMachineImageType
instance. This simplifies the use of keywords in place of actual enum values in
the configuration provided to builders. The value is found using the cdk.support/lookup-entry
function on the data with the provided namespace id and item-key. The found value is interpretted as follows:
EcsMachineImageType
- the value is returned.:ecs-al2-nvidia
- EcsMachineImageType/ECS_AL2_NVIDIA
is returned:ecs-al2
- EcsMachineImageType/ECS_AL2
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `ecs-machine-image-type` function data interprets values in the provided config data into a `EcsMachineImageType` instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the `cdk.support/lookup-entry` function on the data with the provided namespace id and item-key. The found value is interpretted as follows: * instance of `EcsMachineImageType` - the value is returned. * is `:ecs-al2-nvidia` - `EcsMachineImageType/ECS_AL2_NVIDIA` is returned * is `:ecs-al2` - `EcsMachineImageType/ECS_AL2` is returned If a value is not found or matches the above criteria, nil is returned.
(ecs-volume-options-builder id config)
Creates a EcsVolumeOptions$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `EcsVolumeOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(efs-volume-builder id config)
Creates a EfsVolume$Builder
instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `EfsVolume$Builder` instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(efs-volume-options-builder id config)
Creates a EfsVolumeOptions$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `EfsVolumeOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(eks-container-definition-builder scope id config)
Creates a EksContainerDefinition$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `EksContainerDefinition$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(eks-container-definition-props-builder id config)
Creates a EksContainerDefinitionProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `EksContainerDefinitionProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(eks-job-definition-builder scope id config)
Creates a EksJobDefinition$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `EksJobDefinition$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(eks-job-definition-props-builder id config)
Creates a EksJobDefinitionProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `EksJobDefinitionProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(eks-machine-image-builder id config)
Creates a EksMachineImage$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `EksMachineImage$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(eks-machine-image-type config id item-key)
The eks-machine-image-type
function data interprets values in the provided config data into a
EksMachineImageType
instance. This simplifies the use of keywords in place of actual enum values in
the configuration provided to builders. The value is found using the cdk.support/lookup-entry
function on the data with the provided namespace id and item-key. The found value is interpretted as follows:
EksMachineImageType
- the value is returned.:eks-al2-nvidia
- EksMachineImageType/EKS_AL2_NVIDIA
is returned:eks-al2
- EksMachineImageType/EKS_AL2
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `eks-machine-image-type` function data interprets values in the provided config data into a `EksMachineImageType` instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the `cdk.support/lookup-entry` function on the data with the provided namespace id and item-key. The found value is interpretted as follows: * instance of `EksMachineImageType` - the value is returned. * is `:eks-al2-nvidia` - `EksMachineImageType/EKS_AL2_NVIDIA` is returned * is `:eks-al2` - `EksMachineImageType/EKS_AL2` is returned If a value is not found or matches the above criteria, nil is returned.
(eks-volume-options-builder id config)
Creates a EksVolumeOptions$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `EksVolumeOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(empty-dir-medium-type config id item-key)
The empty-dir-medium-type
function data interprets values in the provided config data into a
EmptyDirMediumType
instance. This simplifies the use of keywords in place of actual enum values in
the configuration provided to builders. The value is found using the cdk.support/lookup-entry
function on the data with the provided namespace id and item-key. The found value is interpretted as follows:
EmptyDirMediumType
- the value is returned.:disk
- EmptyDirMediumType/DISK
is returned:memory
- EmptyDirMediumType/MEMORY
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `empty-dir-medium-type` function data interprets values in the provided config data into a `EmptyDirMediumType` instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the `cdk.support/lookup-entry` function on the data with the provided namespace id and item-key. The found value is interpretted as follows: * instance of `EmptyDirMediumType` - the value is returned. * is `:disk` - `EmptyDirMediumType/DISK` is returned * is `:memory` - `EmptyDirMediumType/MEMORY` is returned If a value is not found or matches the above criteria, nil is returned.
(empty-dir-volume-builder id config)
Creates a EmptyDirVolume$Builder
instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `EmptyDirVolume$Builder` instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(empty-dir-volume-options-builder id config)
Creates a EmptyDirVolumeOptions$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `EmptyDirVolumeOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(fairshare-scheduling-policy-builder scope id config)
Creates a FairshareSchedulingPolicy$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `FairshareSchedulingPolicy$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(fairshare-scheduling-policy-props-builder id config)
Creates a FairshareSchedulingPolicyProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `FairshareSchedulingPolicyProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(fargate-compute-environment-builder scope id config)
Creates a FargateComputeEnvironment$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `FargateComputeEnvironment$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(fargate-compute-environment-props-builder id config)
Creates a FargateComputeEnvironmentProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `FargateComputeEnvironmentProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(host-path-volume-builder id config)
Creates a HostPathVolume$Builder
instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `HostPathVolume$Builder` instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(host-path-volume-options-builder id config)
Creates a HostPathVolumeOptions$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `HostPathVolumeOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(host-volume-builder id config)
Creates a HostVolume$Builder
instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `HostVolume$Builder` instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(host-volume-options-builder id config)
Creates a HostVolumeOptions$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `HostVolumeOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(image-pull-policy config id item-key)
The image-pull-policy
function data interprets values in the provided config data into a
ImagePullPolicy
instance. This simplifies the use of keywords in place of actual enum values in
the configuration provided to builders. The value is found using the cdk.support/lookup-entry
function on the data with the provided namespace id and item-key. The found value is interpretted as follows:
ImagePullPolicy
- the value is returned.:never
- ImagePullPolicy/NEVER
is returned:if-not-present
- ImagePullPolicy/IF_NOT_PRESENT
is returned:always
- ImagePullPolicy/ALWAYS
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `image-pull-policy` function data interprets values in the provided config data into a `ImagePullPolicy` instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the `cdk.support/lookup-entry` function on the data with the provided namespace id and item-key. The found value is interpretted as follows: * instance of `ImagePullPolicy` - the value is returned. * is `:never` - `ImagePullPolicy/NEVER` is returned * is `:if-not-present` - `ImagePullPolicy/IF_NOT_PRESENT` is returned * is `:always` - `ImagePullPolicy/ALWAYS` is returned If a value is not found or matches the above criteria, nil is returned.
(job-definition-props-builder id config)
Creates a JobDefinitionProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `JobDefinitionProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(job-queue-builder scope id config)
Creates a JobQueue$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `JobQueue$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(job-queue-props-builder id config)
Creates a JobQueueProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `JobQueueProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(job-state-time-limit-action-builder id config)
Creates a JobStateTimeLimitAction$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `JobStateTimeLimitAction$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(job-state-time-limit-actions-action config id item-key)
The job-state-time-limit-actions-action
function data interprets values in the provided config data into a
JobStateTimeLimitActionsAction
instance. This simplifies the use of keywords in place of actual enum values in
the configuration provided to builders. The value is found using the cdk.support/lookup-entry
function on the data with the provided namespace id and item-key. The found value is interpretted as follows:
JobStateTimeLimitActionsAction
- the value is returned.:cancel
- JobStateTimeLimitActionsAction/CANCEL
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `job-state-time-limit-actions-action` function data interprets values in the provided config data into a `JobStateTimeLimitActionsAction` instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the `cdk.support/lookup-entry` function on the data with the provided namespace id and item-key. The found value is interpretted as follows: * instance of `JobStateTimeLimitActionsAction` - the value is returned. * is `:cancel` - `JobStateTimeLimitActionsAction/CANCEL` is returned If a value is not found or matches the above criteria, nil is returned.
(job-state-time-limit-actions-reason config id item-key)
The job-state-time-limit-actions-reason
function data interprets values in the provided config data into a
JobStateTimeLimitActionsReason
instance. This simplifies the use of keywords in place of actual enum values in
the configuration provided to builders. The value is found using the cdk.support/lookup-entry
function on the data with the provided namespace id and item-key. The found value is interpretted as follows:
JobStateTimeLimitActionsReason
- the value is returned.:compute-environment-max-resource
- JobStateTimeLimitActionsReason/COMPUTE_ENVIRONMENT_MAX_RESOURCE
is returned:insufficient-instance-capacity
- JobStateTimeLimitActionsReason/INSUFFICIENT_INSTANCE_CAPACITY
is returned:job-resource-requirement
- JobStateTimeLimitActionsReason/JOB_RESOURCE_REQUIREMENT
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `job-state-time-limit-actions-reason` function data interprets values in the provided config data into a `JobStateTimeLimitActionsReason` instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the `cdk.support/lookup-entry` function on the data with the provided namespace id and item-key. The found value is interpretted as follows: * instance of `JobStateTimeLimitActionsReason` - the value is returned. * is `:compute-environment-max-resource` - `JobStateTimeLimitActionsReason/COMPUTE_ENVIRONMENT_MAX_RESOURCE` is returned * is `:insufficient-instance-capacity` - `JobStateTimeLimitActionsReason/INSUFFICIENT_INSTANCE_CAPACITY` is returned * is `:job-resource-requirement` - `JobStateTimeLimitActionsReason/JOB_RESOURCE_REQUIREMENT` is returned If a value is not found or matches the above criteria, nil is returned.
(job-state-time-limit-actions-state config id item-key)
The job-state-time-limit-actions-state
function data interprets values in the provided config data into a
JobStateTimeLimitActionsState
instance. This simplifies the use of keywords in place of actual enum values in
the configuration provided to builders. The value is found using the cdk.support/lookup-entry
function on the data with the provided namespace id and item-key. The found value is interpretted as follows:
JobStateTimeLimitActionsState
- the value is returned.:runnable
- JobStateTimeLimitActionsState/RUNNABLE
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `job-state-time-limit-actions-state` function data interprets values in the provided config data into a `JobStateTimeLimitActionsState` instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the `cdk.support/lookup-entry` function on the data with the provided namespace id and item-key. The found value is interpretted as follows: * instance of `JobStateTimeLimitActionsState` - the value is returned. * is `:runnable` - `JobStateTimeLimitActionsState/RUNNABLE` is returned If a value is not found or matches the above criteria, nil is returned.
(linux-parameters-builder scope id config)
Creates a LinuxParameters$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `LinuxParameters$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(linux-parameters-props-builder id config)
Creates a LinuxParametersProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `LinuxParametersProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(managed-compute-environment-props-builder id config)
Creates a ManagedComputeEnvironmentProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `ManagedComputeEnvironmentProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(managed-ec2-ecs-compute-environment-builder scope id config)
Creates a ManagedEc2EcsComputeEnvironment$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `ManagedEc2EcsComputeEnvironment$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(managed-ec2-ecs-compute-environment-props-builder id config)
Creates a ManagedEc2EcsComputeEnvironmentProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `ManagedEc2EcsComputeEnvironmentProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(managed-ec2-eks-compute-environment-builder scope id config)
Creates a ManagedEc2EksComputeEnvironment$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `ManagedEc2EksComputeEnvironment$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(managed-ec2-eks-compute-environment-props-builder id config)
Creates a ManagedEc2EksComputeEnvironmentProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `ManagedEc2EksComputeEnvironmentProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(multi-node-container-builder id config)
Creates a MultiNodeContainer$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `MultiNodeContainer$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(multi-node-job-definition-builder scope id config)
Creates a MultiNodeJobDefinition$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `MultiNodeJobDefinition$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(multi-node-job-definition-props-builder id config)
Creates a MultiNodeJobDefinitionProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `MultiNodeJobDefinitionProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(ordered-compute-environment-builder id config)
Creates a OrderedComputeEnvironment$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `OrderedComputeEnvironment$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(secret-path-volume-builder id config)
Creates a SecretPathVolume$Builder
instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `SecretPathVolume$Builder` instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(secret-path-volume-options-builder id config)
Creates a SecretPathVolumeOptions$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `SecretPathVolumeOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(secret-version-info-builder id config)
Creates a SecretVersionInfo$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `SecretVersionInfo$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(share-builder id config)
Creates a Share$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `Share$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(tmpfs-builder id config)
Creates a Tmpfs$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `Tmpfs$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(tmpfs-mount-option config id item-key)
The tmpfs-mount-option
function data interprets values in the provided config data into a
TmpfsMountOption
instance. This simplifies the use of keywords in place of actual enum values in
the configuration provided to builders. The value is found using the cdk.support/lookup-entry
function on the data with the provided namespace id and item-key. The found value is interpretted as follows:
TmpfsMountOption
- the value is returned.:rbind
- TmpfsMountOption/RBIND
is returned:strictatime
- TmpfsMountOption/STRICTATIME
is returned:slave
- TmpfsMountOption/SLAVE
is returned:rslave
- TmpfsMountOption/RSLAVE
is returned:nosuid
- TmpfsMountOption/NOSUID
is returned:nomand
- TmpfsMountOption/NOMAND
is returned:rshared
- TmpfsMountOption/RSHARED
is returned:nr-blocks
- TmpfsMountOption/NR_BLOCKS
is returned:atime
- TmpfsMountOption/ATIME
is returned:shared
- TmpfsMountOption/SHARED
is returned:norelatime
- TmpfsMountOption/NORELATIME
is returned:mode
- TmpfsMountOption/MODE
is returned:noexec
- TmpfsMountOption/NOEXEC
is returned:sync
- TmpfsMountOption/SYNC
is returned:uid
- TmpfsMountOption/UID
is returned:suid
- TmpfsMountOption/SUID
is returned:defaults
- TmpfsMountOption/DEFAULTS
is returned:rprivate
- TmpfsMountOption/RPRIVATE
is returned:exec
- TmpfsMountOption/EXEC
is returned:nostrictatime
- TmpfsMountOption/NOSTRICTATIME
is returned:noatime
- TmpfsMountOption/NOATIME
is returned:nodev
- TmpfsMountOption/NODEV
is returned:unbindable
- TmpfsMountOption/UNBINDABLE
is returned:mpol
- TmpfsMountOption/MPOL
is returned:ro
- TmpfsMountOption/RO
is returned:dirsync
- TmpfsMountOption/DIRSYNC
is returned:nodiratime
- TmpfsMountOption/NODIRATIME
is returned:remount
- TmpfsMountOption/REMOUNT
is returned:mand
- TmpfsMountOption/MAND
is returned:async
- TmpfsMountOption/ASYNC
is returned:relatime
- TmpfsMountOption/RELATIME
is returned:private
- TmpfsMountOption/PRIVATE
is returned:runbindable
- TmpfsMountOption/RUNBINDABLE
is returned:bind
- TmpfsMountOption/BIND
is returned:dev
- TmpfsMountOption/DEV
is returned:diratime
- TmpfsMountOption/DIRATIME
is returned:nr-inodes
- TmpfsMountOption/NR_INODES
is returned:rw
- TmpfsMountOption/RW
is returned:gid
- TmpfsMountOption/GID
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `tmpfs-mount-option` function data interprets values in the provided config data into a `TmpfsMountOption` instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the `cdk.support/lookup-entry` function on the data with the provided namespace id and item-key. The found value is interpretted as follows: * instance of `TmpfsMountOption` - the value is returned. * is `:rbind` - `TmpfsMountOption/RBIND` is returned * is `:strictatime` - `TmpfsMountOption/STRICTATIME` is returned * is `:slave` - `TmpfsMountOption/SLAVE` is returned * is `:rslave` - `TmpfsMountOption/RSLAVE` is returned * is `:nosuid` - `TmpfsMountOption/NOSUID` is returned * is `:nomand` - `TmpfsMountOption/NOMAND` is returned * is `:rshared` - `TmpfsMountOption/RSHARED` is returned * is `:nr-blocks` - `TmpfsMountOption/NR_BLOCKS` is returned * is `:atime` - `TmpfsMountOption/ATIME` is returned * is `:shared` - `TmpfsMountOption/SHARED` is returned * is `:norelatime` - `TmpfsMountOption/NORELATIME` is returned * is `:mode` - `TmpfsMountOption/MODE` is returned * is `:noexec` - `TmpfsMountOption/NOEXEC` is returned * is `:sync` - `TmpfsMountOption/SYNC` is returned * is `:uid` - `TmpfsMountOption/UID` is returned * is `:suid` - `TmpfsMountOption/SUID` is returned * is `:defaults` - `TmpfsMountOption/DEFAULTS` is returned * is `:rprivate` - `TmpfsMountOption/RPRIVATE` is returned * is `:exec` - `TmpfsMountOption/EXEC` is returned * is `:nostrictatime` - `TmpfsMountOption/NOSTRICTATIME` is returned * is `:noatime` - `TmpfsMountOption/NOATIME` is returned * is `:nodev` - `TmpfsMountOption/NODEV` is returned * is `:unbindable` - `TmpfsMountOption/UNBINDABLE` is returned * is `:mpol` - `TmpfsMountOption/MPOL` is returned * is `:ro` - `TmpfsMountOption/RO` is returned * is `:dirsync` - `TmpfsMountOption/DIRSYNC` is returned * is `:nodiratime` - `TmpfsMountOption/NODIRATIME` is returned * is `:remount` - `TmpfsMountOption/REMOUNT` is returned * is `:mand` - `TmpfsMountOption/MAND` is returned * is `:async` - `TmpfsMountOption/ASYNC` is returned * is `:relatime` - `TmpfsMountOption/RELATIME` is returned * is `:private` - `TmpfsMountOption/PRIVATE` is returned * is `:runbindable` - `TmpfsMountOption/RUNBINDABLE` is returned * is `:bind` - `TmpfsMountOption/BIND` is returned * is `:dev` - `TmpfsMountOption/DEV` is returned * is `:diratime` - `TmpfsMountOption/DIRATIME` is returned * is `:nr-inodes` - `TmpfsMountOption/NR_INODES` is returned * is `:rw` - `TmpfsMountOption/RW` is returned * is `:gid` - `TmpfsMountOption/GID` is returned If a value is not found or matches the above criteria, nil is returned.
(ulimit-builder id config)
Creates a Ulimit$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `Ulimit$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(ulimit-name config id item-key)
The ulimit-name
function data interprets values in the provided config data into a
UlimitName
instance. This simplifies the use of keywords in place of actual enum values in
the configuration provided to builders. The value is found using the cdk.support/lookup-entry
function on the data with the provided namespace id and item-key. The found value is interpretted as follows:
UlimitName
- the value is returned.:data
- UlimitName/DATA
is returned:rttime
- UlimitName/RTTIME
is returned:locks
- UlimitName/LOCKS
is returned:msgqueue
- UlimitName/MSGQUEUE
is returned:nice
- UlimitName/NICE
is returned:memlock
- UlimitName/MEMLOCK
is returned:nproc
- UlimitName/NPROC
is returned:stack
- UlimitName/STACK
is returned:sigpending
- UlimitName/SIGPENDING
is returned:core
- UlimitName/CORE
is returned:fsize
- UlimitName/FSIZE
is returned:nofile
- UlimitName/NOFILE
is returned:rtprio
- UlimitName/RTPRIO
is returned:cpu
- UlimitName/CPU
is returned:rss
- UlimitName/RSS
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `ulimit-name` function data interprets values in the provided config data into a `UlimitName` instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the `cdk.support/lookup-entry` function on the data with the provided namespace id and item-key. The found value is interpretted as follows: * instance of `UlimitName` - the value is returned. * is `:data` - `UlimitName/DATA` is returned * is `:rttime` - `UlimitName/RTTIME` is returned * is `:locks` - `UlimitName/LOCKS` is returned * is `:msgqueue` - `UlimitName/MSGQUEUE` is returned * is `:nice` - `UlimitName/NICE` is returned * is `:memlock` - `UlimitName/MEMLOCK` is returned * is `:nproc` - `UlimitName/NPROC` is returned * is `:stack` - `UlimitName/STACK` is returned * is `:sigpending` - `UlimitName/SIGPENDING` is returned * is `:core` - `UlimitName/CORE` is returned * is `:fsize` - `UlimitName/FSIZE` is returned * is `:nofile` - `UlimitName/NOFILE` is returned * is `:rtprio` - `UlimitName/RTPRIO` is returned * is `:cpu` - `UlimitName/CPU` is returned * is `:rss` - `UlimitName/RSS` is returned If a value is not found or matches the above criteria, nil is returned.
(unmanaged-compute-environment-builder scope id config)
Creates a UnmanagedComputeEnvironment$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `UnmanagedComputeEnvironment$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(unmanaged-compute-environment-props-builder id config)
Creates a UnmanagedComputeEnvironmentProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `UnmanagedComputeEnvironmentProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close