aws-cdk-lib 2.178.2__py3-none-any.whl → 2.180.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of aws-cdk-lib might be problematic. Click here for more details.
- aws_cdk/__init__.py +83 -41
- aws_cdk/_jsii/__init__.py +1 -2
- aws_cdk/_jsii/{aws-cdk-lib@2.178.2.jsii.tgz → aws-cdk-lib@2.180.0.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +47 -0
- aws_cdk/aws_apigateway/__init__.py +176 -35
- aws_cdk/aws_apigatewayv2/__init__.py +151 -32
- aws_cdk/aws_apigatewayv2_integrations/__init__.py +348 -0
- aws_cdk/aws_applicationautoscaling/__init__.py +8 -8
- aws_cdk/aws_appsync/__init__.py +10 -7
- aws_cdk/aws_backup/__init__.py +89 -0
- aws_cdk/aws_batch/__init__.py +89 -50
- aws_cdk/aws_bedrock/__init__.py +506 -62
- aws_cdk/aws_cloudfront/__init__.py +1037 -146
- aws_cdk/aws_cloudfront_origins/__init__.py +1338 -144
- aws_cdk/aws_cloudtrail/__init__.py +4 -8
- aws_cdk/aws_cloudwatch/__init__.py +1 -1
- aws_cdk/aws_codebuild/__init__.py +218 -2
- aws_cdk/aws_codepipeline/__init__.py +113 -28
- aws_cdk/aws_codepipeline_actions/__init__.py +554 -63
- aws_cdk/aws_codestar/__init__.py +2 -1
- aws_cdk/aws_cognito/__init__.py +676 -29
- aws_cdk/aws_connect/__init__.py +257 -0
- aws_cdk/aws_datasync/__init__.py +279 -50
- aws_cdk/aws_deadline/__init__.py +683 -6
- aws_cdk/aws_directoryservice/__init__.py +9 -4
- aws_cdk/aws_dlm/__init__.py +2 -2
- aws_cdk/aws_dms/__init__.py +3 -3
- aws_cdk/aws_dynamodb/__init__.py +0 -54
- aws_cdk/aws_ec2/__init__.py +402 -130
- aws_cdk/aws_ecs/__init__.py +28 -43
- aws_cdk/aws_efs/__init__.py +1 -1
- aws_cdk/aws_eks/__init__.py +560 -182
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +112 -27
- aws_cdk/aws_emrcontainers/__init__.py +44 -1
- aws_cdk/aws_events/__init__.py +17 -26
- aws_cdk/aws_events_targets/__init__.py +303 -16
- aws_cdk/aws_fms/__init__.py +5 -5
- aws_cdk/aws_fsx/__init__.py +5 -4
- aws_cdk/aws_glue/__init__.py +161 -0
- aws_cdk/aws_groundstation/__init__.py +23 -1
- aws_cdk/aws_iam/__init__.py +15 -15
- aws_cdk/aws_iot/__init__.py +7 -0
- aws_cdk/aws_ivs/__init__.py +254 -77
- aws_cdk/aws_kinesis/__init__.py +689 -35
- aws_cdk/aws_lambda/__init__.py +10 -15
- aws_cdk/aws_lambda_event_sources/__init__.py +175 -2
- aws_cdk/aws_logs/__init__.py +62 -13
- aws_cdk/aws_medialive/__init__.py +314 -4
- aws_cdk/aws_opensearchserverless/__init__.py +19 -0
- aws_cdk/aws_pinpoint/__init__.py +14 -9
- aws_cdk/aws_rds/__init__.py +246 -82
- aws_cdk/aws_s3/__init__.py +287 -9
- aws_cdk/aws_s3objectlambda/__init__.py +2 -2
- aws_cdk/aws_ses/__init__.py +228 -8
- aws_cdk/aws_ssm/__init__.py +4 -5
- aws_cdk/aws_stepfunctions/__init__.py +301 -70
- aws_cdk/aws_stepfunctions_tasks/__init__.py +269 -163
- aws_cdk/aws_supportapp/__init__.py +7 -7
- aws_cdk/aws_transfer/__init__.py +820 -2
- aws_cdk/aws_wafv2/__init__.py +17 -9
- aws_cdk/custom_resources/__init__.py +23 -26
- aws_cdk/cx_api/__init__.py +16 -0
- aws_cdk/pipelines/__init__.py +2 -2
- {aws_cdk_lib-2.178.2.dist-info → aws_cdk_lib-2.180.0.dist-info}/METADATA +1 -2
- {aws_cdk_lib-2.178.2.dist-info → aws_cdk_lib-2.180.0.dist-info}/RECORD +69 -70
- aws_cdk/lambda_layer_kubectl/__init__.py +0 -107
- {aws_cdk_lib-2.178.2.dist-info → aws_cdk_lib-2.180.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.178.2.dist-info → aws_cdk_lib-2.180.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.178.2.dist-info → aws_cdk_lib-2.180.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.178.2.dist-info → aws_cdk_lib-2.180.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_deadline/__init__.py
CHANGED
|
@@ -126,7 +126,7 @@ class CfnFarm(
|
|
|
126
126
|
:param scope: Scope in which this resource is defined.
|
|
127
127
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
128
128
|
:param display_name: The display name of the farm. .. epigraph:: This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.
|
|
129
|
-
:param description: A description of the farm that helps identify what the farm is used for. Default: - ""
|
|
129
|
+
:param description: A description of the farm that helps identify what the farm is used for. .. epigraph:: This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field. Default: - ""
|
|
130
130
|
:param kms_key_arn: The ARN for the KMS key.
|
|
131
131
|
:param tags: The tags to add to your farm. Each tag consists of a tag key and a tag value. Tag keys and values are both required, but tag values can be empty strings.
|
|
132
132
|
'''
|
|
@@ -277,7 +277,7 @@ class CfnFarmProps:
|
|
|
277
277
|
'''Properties for defining a ``CfnFarm``.
|
|
278
278
|
|
|
279
279
|
:param display_name: The display name of the farm. .. epigraph:: This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.
|
|
280
|
-
:param description: A description of the farm that helps identify what the farm is used for. Default: - ""
|
|
280
|
+
:param description: A description of the farm that helps identify what the farm is used for. .. epigraph:: This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field. Default: - ""
|
|
281
281
|
:param kms_key_arn: The ARN for the KMS key.
|
|
282
282
|
:param tags: The tags to add to your farm. Each tag consists of a tag key and a tag value. Tag keys and values are both required, but tag values can be empty strings.
|
|
283
283
|
|
|
@@ -336,6 +336,10 @@ class CfnFarmProps:
|
|
|
336
336
|
def description(self) -> typing.Optional[builtins.str]:
|
|
337
337
|
'''A description of the farm that helps identify what the farm is used for.
|
|
338
338
|
|
|
339
|
+
.. epigraph::
|
|
340
|
+
|
|
341
|
+
This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.
|
|
342
|
+
|
|
339
343
|
:default: - ""
|
|
340
344
|
|
|
341
345
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-farm.html#cfn-deadline-farm-description
|
|
@@ -540,7 +544,7 @@ class CfnFleet(
|
|
|
540
544
|
:param farm_id: The farm ID.
|
|
541
545
|
:param max_worker_count: The maximum number of workers specified in the fleet.
|
|
542
546
|
:param role_arn: The IAM role that workers in the fleet use when processing jobs.
|
|
543
|
-
:param description: A description that helps identify what the fleet is used for. Default: - ""
|
|
547
|
+
:param description: A description that helps identify what the fleet is used for. .. epigraph:: This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field. Default: - ""
|
|
544
548
|
:param min_worker_count: The minimum number of workers in the fleet. Default: - 0
|
|
545
549
|
:param tags: The tags to add to your fleet. Each tag consists of a tag key and a tag value. Tag keys and values are both required, but tag values can be empty strings.
|
|
546
550
|
'''
|
|
@@ -2579,7 +2583,7 @@ class CfnFleetProps:
|
|
|
2579
2583
|
:param farm_id: The farm ID.
|
|
2580
2584
|
:param max_worker_count: The maximum number of workers specified in the fleet.
|
|
2581
2585
|
:param role_arn: The IAM role that workers in the fleet use when processing jobs.
|
|
2582
|
-
:param description: A description that helps identify what the fleet is used for. Default: - ""
|
|
2586
|
+
:param description: A description that helps identify what the fleet is used for. .. epigraph:: This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field. Default: - ""
|
|
2583
2587
|
:param min_worker_count: The minimum number of workers in the fleet. Default: - 0
|
|
2584
2588
|
:param tags: The tags to add to your fleet. Each tag consists of a tag key and a tag value. Tag keys and values are both required, but tag values can be empty strings.
|
|
2585
2589
|
|
|
@@ -2798,6 +2802,10 @@ class CfnFleetProps:
|
|
|
2798
2802
|
def description(self) -> typing.Optional[builtins.str]:
|
|
2799
2803
|
'''A description that helps identify what the fleet is used for.
|
|
2800
2804
|
|
|
2805
|
+
.. epigraph::
|
|
2806
|
+
|
|
2807
|
+
This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.
|
|
2808
|
+
|
|
2801
2809
|
:default: - ""
|
|
2802
2810
|
|
|
2803
2811
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-fleet.html#cfn-deadline-fleet-description
|
|
@@ -3154,6 +3162,336 @@ class CfnLicenseEndpointProps:
|
|
|
3154
3162
|
)
|
|
3155
3163
|
|
|
3156
3164
|
|
|
3165
|
+
@jsii.implements(_IInspectable_c2943556)
|
|
3166
|
+
class CfnLimit(
|
|
3167
|
+
_CfnResource_9df397a6,
|
|
3168
|
+
metaclass=jsii.JSIIMeta,
|
|
3169
|
+
jsii_type="aws-cdk-lib.aws_deadline.CfnLimit",
|
|
3170
|
+
):
|
|
3171
|
+
'''Creates a limit that manages the distribution of shared resources, such as floating licenses.
|
|
3172
|
+
|
|
3173
|
+
A limit can throttle work assignments, help manage workloads, and track current usage. Before you use a limit, you must associate the limit with one or more queues.
|
|
3174
|
+
|
|
3175
|
+
You must add the ``amountRequirementName`` to a step in a job template to declare the limit requirement.
|
|
3176
|
+
|
|
3177
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-limit.html
|
|
3178
|
+
:cloudformationResource: AWS::Deadline::Limit
|
|
3179
|
+
:exampleMetadata: fixture=_generated
|
|
3180
|
+
|
|
3181
|
+
Example::
|
|
3182
|
+
|
|
3183
|
+
# The code below shows an example of how to instantiate this type.
|
|
3184
|
+
# The values are placeholders you should change.
|
|
3185
|
+
from aws_cdk import aws_deadline as deadline
|
|
3186
|
+
|
|
3187
|
+
cfn_limit = deadline.CfnLimit(self, "MyCfnLimit",
|
|
3188
|
+
amount_requirement_name="amountRequirementName",
|
|
3189
|
+
display_name="displayName",
|
|
3190
|
+
farm_id="farmId",
|
|
3191
|
+
max_count=123,
|
|
3192
|
+
|
|
3193
|
+
# the properties below are optional
|
|
3194
|
+
description="description"
|
|
3195
|
+
)
|
|
3196
|
+
'''
|
|
3197
|
+
|
|
3198
|
+
def __init__(
|
|
3199
|
+
self,
|
|
3200
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
3201
|
+
id: builtins.str,
|
|
3202
|
+
*,
|
|
3203
|
+
amount_requirement_name: builtins.str,
|
|
3204
|
+
display_name: builtins.str,
|
|
3205
|
+
farm_id: builtins.str,
|
|
3206
|
+
max_count: jsii.Number,
|
|
3207
|
+
description: typing.Optional[builtins.str] = None,
|
|
3208
|
+
) -> None:
|
|
3209
|
+
'''
|
|
3210
|
+
:param scope: Scope in which this resource is defined.
|
|
3211
|
+
:param id: Construct identifier for this resource (unique in its scope).
|
|
3212
|
+
:param amount_requirement_name: The value that you specify as the ``name`` in the ``amounts`` field of the ``hostRequirements`` in a step of a job template to declare the limit requirement.
|
|
3213
|
+
:param display_name: The name of the limit used in lists to identify the limit. .. epigraph:: This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.
|
|
3214
|
+
:param farm_id: The unique identifier of the farm that contains the limit.
|
|
3215
|
+
:param max_count: The maximum number of resources constrained by this limit. When all of the resources are in use, steps that require the limit won't be scheduled until the resource is available. The ``maxValue`` must not be 0. If the value is -1, there is no restriction on the number of resources that can be acquired for this limit.
|
|
3216
|
+
:param description: A description of the limit. A clear description helps you identify the purpose of the limit. .. epigraph:: This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field. Default: - ""
|
|
3217
|
+
'''
|
|
3218
|
+
if __debug__:
|
|
3219
|
+
type_hints = typing.get_type_hints(_typecheckingstub__95a2d36b6bd2c6b4526ddd666cdb501efdf5ffcc5bb8ceefea12e0b2b03771db)
|
|
3220
|
+
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
3221
|
+
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
3222
|
+
props = CfnLimitProps(
|
|
3223
|
+
amount_requirement_name=amount_requirement_name,
|
|
3224
|
+
display_name=display_name,
|
|
3225
|
+
farm_id=farm_id,
|
|
3226
|
+
max_count=max_count,
|
|
3227
|
+
description=description,
|
|
3228
|
+
)
|
|
3229
|
+
|
|
3230
|
+
jsii.create(self.__class__, self, [scope, id, props])
|
|
3231
|
+
|
|
3232
|
+
@jsii.member(jsii_name="inspect")
|
|
3233
|
+
def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
|
|
3234
|
+
'''Examines the CloudFormation resource and discloses attributes.
|
|
3235
|
+
|
|
3236
|
+
:param inspector: tree inspector to collect and process attributes.
|
|
3237
|
+
'''
|
|
3238
|
+
if __debug__:
|
|
3239
|
+
type_hints = typing.get_type_hints(_typecheckingstub__83b7d3f7848e22e6703b3dee913451d9b15c46f08fe2a7b74b935640f721d335)
|
|
3240
|
+
check_type(argname="argument inspector", value=inspector, expected_type=type_hints["inspector"])
|
|
3241
|
+
return typing.cast(None, jsii.invoke(self, "inspect", [inspector]))
|
|
3242
|
+
|
|
3243
|
+
@jsii.member(jsii_name="renderProperties")
|
|
3244
|
+
def _render_properties(
|
|
3245
|
+
self,
|
|
3246
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
3247
|
+
) -> typing.Mapping[builtins.str, typing.Any]:
|
|
3248
|
+
'''
|
|
3249
|
+
:param props: -
|
|
3250
|
+
'''
|
|
3251
|
+
if __debug__:
|
|
3252
|
+
type_hints = typing.get_type_hints(_typecheckingstub__a2b5807c8c27d5bd8286a9475a427521d61b900937d67184c5db692856bf7f09)
|
|
3253
|
+
check_type(argname="argument props", value=props, expected_type=type_hints["props"])
|
|
3254
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "renderProperties", [props]))
|
|
3255
|
+
|
|
3256
|
+
@jsii.python.classproperty
|
|
3257
|
+
@jsii.member(jsii_name="CFN_RESOURCE_TYPE_NAME")
|
|
3258
|
+
def CFN_RESOURCE_TYPE_NAME(cls) -> builtins.str:
|
|
3259
|
+
'''The CloudFormation resource type name for this resource class.'''
|
|
3260
|
+
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
3261
|
+
|
|
3262
|
+
@builtins.property
|
|
3263
|
+
@jsii.member(jsii_name="attrCurrentCount")
|
|
3264
|
+
def attr_current_count(self) -> jsii.Number:
|
|
3265
|
+
'''The number of resources from the limit that are being used by jobs.
|
|
3266
|
+
|
|
3267
|
+
The result is delayed and may not be the count at the time that you called the operation.
|
|
3268
|
+
|
|
3269
|
+
:cloudformationAttribute: CurrentCount
|
|
3270
|
+
'''
|
|
3271
|
+
return typing.cast(jsii.Number, jsii.get(self, "attrCurrentCount"))
|
|
3272
|
+
|
|
3273
|
+
@builtins.property
|
|
3274
|
+
@jsii.member(jsii_name="attrLimitId")
|
|
3275
|
+
def attr_limit_id(self) -> builtins.str:
|
|
3276
|
+
'''The unique identifier of the limit.
|
|
3277
|
+
|
|
3278
|
+
:cloudformationAttribute: LimitId
|
|
3279
|
+
'''
|
|
3280
|
+
return typing.cast(builtins.str, jsii.get(self, "attrLimitId"))
|
|
3281
|
+
|
|
3282
|
+
@builtins.property
|
|
3283
|
+
@jsii.member(jsii_name="cfnProperties")
|
|
3284
|
+
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
3285
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
|
|
3286
|
+
|
|
3287
|
+
@builtins.property
|
|
3288
|
+
@jsii.member(jsii_name="amountRequirementName")
|
|
3289
|
+
def amount_requirement_name(self) -> builtins.str:
|
|
3290
|
+
'''The value that you specify as the ``name`` in the ``amounts`` field of the ``hostRequirements`` in a step of a job template to declare the limit requirement.'''
|
|
3291
|
+
return typing.cast(builtins.str, jsii.get(self, "amountRequirementName"))
|
|
3292
|
+
|
|
3293
|
+
@amount_requirement_name.setter
|
|
3294
|
+
def amount_requirement_name(self, value: builtins.str) -> None:
|
|
3295
|
+
if __debug__:
|
|
3296
|
+
type_hints = typing.get_type_hints(_typecheckingstub__28aff12a88e4878af62a4facf3ba960c0989b8e072de10a3a9a7109a99ffb156)
|
|
3297
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
3298
|
+
jsii.set(self, "amountRequirementName", value) # pyright: ignore[reportArgumentType]
|
|
3299
|
+
|
|
3300
|
+
@builtins.property
|
|
3301
|
+
@jsii.member(jsii_name="displayName")
|
|
3302
|
+
def display_name(self) -> builtins.str:
|
|
3303
|
+
'''The name of the limit used in lists to identify the limit.'''
|
|
3304
|
+
return typing.cast(builtins.str, jsii.get(self, "displayName"))
|
|
3305
|
+
|
|
3306
|
+
@display_name.setter
|
|
3307
|
+
def display_name(self, value: builtins.str) -> None:
|
|
3308
|
+
if __debug__:
|
|
3309
|
+
type_hints = typing.get_type_hints(_typecheckingstub__b34d01cf916eae1174982512038db6386277599954f595da403eefd285383489)
|
|
3310
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
3311
|
+
jsii.set(self, "displayName", value) # pyright: ignore[reportArgumentType]
|
|
3312
|
+
|
|
3313
|
+
@builtins.property
|
|
3314
|
+
@jsii.member(jsii_name="farmId")
|
|
3315
|
+
def farm_id(self) -> builtins.str:
|
|
3316
|
+
'''The unique identifier of the farm that contains the limit.'''
|
|
3317
|
+
return typing.cast(builtins.str, jsii.get(self, "farmId"))
|
|
3318
|
+
|
|
3319
|
+
@farm_id.setter
|
|
3320
|
+
def farm_id(self, value: builtins.str) -> None:
|
|
3321
|
+
if __debug__:
|
|
3322
|
+
type_hints = typing.get_type_hints(_typecheckingstub__12a4bb4f4b8f310c2fdfebb62cb19dff797b3c697b3d7cad8fb909c2a4295253)
|
|
3323
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
3324
|
+
jsii.set(self, "farmId", value) # pyright: ignore[reportArgumentType]
|
|
3325
|
+
|
|
3326
|
+
@builtins.property
|
|
3327
|
+
@jsii.member(jsii_name="maxCount")
|
|
3328
|
+
def max_count(self) -> jsii.Number:
|
|
3329
|
+
'''The maximum number of resources constrained by this limit.'''
|
|
3330
|
+
return typing.cast(jsii.Number, jsii.get(self, "maxCount"))
|
|
3331
|
+
|
|
3332
|
+
@max_count.setter
|
|
3333
|
+
def max_count(self, value: jsii.Number) -> None:
|
|
3334
|
+
if __debug__:
|
|
3335
|
+
type_hints = typing.get_type_hints(_typecheckingstub__f77e580a09313f12612831bf7da9ccf6b581b5d578a3c742ae117491d077fbde)
|
|
3336
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
3337
|
+
jsii.set(self, "maxCount", value) # pyright: ignore[reportArgumentType]
|
|
3338
|
+
|
|
3339
|
+
@builtins.property
|
|
3340
|
+
@jsii.member(jsii_name="description")
|
|
3341
|
+
def description(self) -> typing.Optional[builtins.str]:
|
|
3342
|
+
'''A description of the limit.
|
|
3343
|
+
|
|
3344
|
+
A clear description helps you identify the purpose of the limit.
|
|
3345
|
+
'''
|
|
3346
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "description"))
|
|
3347
|
+
|
|
3348
|
+
@description.setter
|
|
3349
|
+
def description(self, value: typing.Optional[builtins.str]) -> None:
|
|
3350
|
+
if __debug__:
|
|
3351
|
+
type_hints = typing.get_type_hints(_typecheckingstub__dbf2d43f89d2f23cb2d43ac25f868a67c740d12d602cbee498c4f96ef06792a9)
|
|
3352
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
3353
|
+
jsii.set(self, "description", value) # pyright: ignore[reportArgumentType]
|
|
3354
|
+
|
|
3355
|
+
|
|
3356
|
+
@jsii.data_type(
|
|
3357
|
+
jsii_type="aws-cdk-lib.aws_deadline.CfnLimitProps",
|
|
3358
|
+
jsii_struct_bases=[],
|
|
3359
|
+
name_mapping={
|
|
3360
|
+
"amount_requirement_name": "amountRequirementName",
|
|
3361
|
+
"display_name": "displayName",
|
|
3362
|
+
"farm_id": "farmId",
|
|
3363
|
+
"max_count": "maxCount",
|
|
3364
|
+
"description": "description",
|
|
3365
|
+
},
|
|
3366
|
+
)
|
|
3367
|
+
class CfnLimitProps:
|
|
3368
|
+
def __init__(
|
|
3369
|
+
self,
|
|
3370
|
+
*,
|
|
3371
|
+
amount_requirement_name: builtins.str,
|
|
3372
|
+
display_name: builtins.str,
|
|
3373
|
+
farm_id: builtins.str,
|
|
3374
|
+
max_count: jsii.Number,
|
|
3375
|
+
description: typing.Optional[builtins.str] = None,
|
|
3376
|
+
) -> None:
|
|
3377
|
+
'''Properties for defining a ``CfnLimit``.
|
|
3378
|
+
|
|
3379
|
+
:param amount_requirement_name: The value that you specify as the ``name`` in the ``amounts`` field of the ``hostRequirements`` in a step of a job template to declare the limit requirement.
|
|
3380
|
+
:param display_name: The name of the limit used in lists to identify the limit. .. epigraph:: This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.
|
|
3381
|
+
:param farm_id: The unique identifier of the farm that contains the limit.
|
|
3382
|
+
:param max_count: The maximum number of resources constrained by this limit. When all of the resources are in use, steps that require the limit won't be scheduled until the resource is available. The ``maxValue`` must not be 0. If the value is -1, there is no restriction on the number of resources that can be acquired for this limit.
|
|
3383
|
+
:param description: A description of the limit. A clear description helps you identify the purpose of the limit. .. epigraph:: This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field. Default: - ""
|
|
3384
|
+
|
|
3385
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-limit.html
|
|
3386
|
+
:exampleMetadata: fixture=_generated
|
|
3387
|
+
|
|
3388
|
+
Example::
|
|
3389
|
+
|
|
3390
|
+
# The code below shows an example of how to instantiate this type.
|
|
3391
|
+
# The values are placeholders you should change.
|
|
3392
|
+
from aws_cdk import aws_deadline as deadline
|
|
3393
|
+
|
|
3394
|
+
cfn_limit_props = deadline.CfnLimitProps(
|
|
3395
|
+
amount_requirement_name="amountRequirementName",
|
|
3396
|
+
display_name="displayName",
|
|
3397
|
+
farm_id="farmId",
|
|
3398
|
+
max_count=123,
|
|
3399
|
+
|
|
3400
|
+
# the properties below are optional
|
|
3401
|
+
description="description"
|
|
3402
|
+
)
|
|
3403
|
+
'''
|
|
3404
|
+
if __debug__:
|
|
3405
|
+
type_hints = typing.get_type_hints(_typecheckingstub__14084853add855b7c5ddee255b1050f58be9e132b41ff835081046502cdc22b8)
|
|
3406
|
+
check_type(argname="argument amount_requirement_name", value=amount_requirement_name, expected_type=type_hints["amount_requirement_name"])
|
|
3407
|
+
check_type(argname="argument display_name", value=display_name, expected_type=type_hints["display_name"])
|
|
3408
|
+
check_type(argname="argument farm_id", value=farm_id, expected_type=type_hints["farm_id"])
|
|
3409
|
+
check_type(argname="argument max_count", value=max_count, expected_type=type_hints["max_count"])
|
|
3410
|
+
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
3411
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
3412
|
+
"amount_requirement_name": amount_requirement_name,
|
|
3413
|
+
"display_name": display_name,
|
|
3414
|
+
"farm_id": farm_id,
|
|
3415
|
+
"max_count": max_count,
|
|
3416
|
+
}
|
|
3417
|
+
if description is not None:
|
|
3418
|
+
self._values["description"] = description
|
|
3419
|
+
|
|
3420
|
+
@builtins.property
|
|
3421
|
+
def amount_requirement_name(self) -> builtins.str:
|
|
3422
|
+
'''The value that you specify as the ``name`` in the ``amounts`` field of the ``hostRequirements`` in a step of a job template to declare the limit requirement.
|
|
3423
|
+
|
|
3424
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-limit.html#cfn-deadline-limit-amountrequirementname
|
|
3425
|
+
'''
|
|
3426
|
+
result = self._values.get("amount_requirement_name")
|
|
3427
|
+
assert result is not None, "Required property 'amount_requirement_name' is missing"
|
|
3428
|
+
return typing.cast(builtins.str, result)
|
|
3429
|
+
|
|
3430
|
+
@builtins.property
|
|
3431
|
+
def display_name(self) -> builtins.str:
|
|
3432
|
+
'''The name of the limit used in lists to identify the limit.
|
|
3433
|
+
|
|
3434
|
+
.. epigraph::
|
|
3435
|
+
|
|
3436
|
+
This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.
|
|
3437
|
+
|
|
3438
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-limit.html#cfn-deadline-limit-displayname
|
|
3439
|
+
'''
|
|
3440
|
+
result = self._values.get("display_name")
|
|
3441
|
+
assert result is not None, "Required property 'display_name' is missing"
|
|
3442
|
+
return typing.cast(builtins.str, result)
|
|
3443
|
+
|
|
3444
|
+
@builtins.property
|
|
3445
|
+
def farm_id(self) -> builtins.str:
|
|
3446
|
+
'''The unique identifier of the farm that contains the limit.
|
|
3447
|
+
|
|
3448
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-limit.html#cfn-deadline-limit-farmid
|
|
3449
|
+
'''
|
|
3450
|
+
result = self._values.get("farm_id")
|
|
3451
|
+
assert result is not None, "Required property 'farm_id' is missing"
|
|
3452
|
+
return typing.cast(builtins.str, result)
|
|
3453
|
+
|
|
3454
|
+
@builtins.property
|
|
3455
|
+
def max_count(self) -> jsii.Number:
|
|
3456
|
+
'''The maximum number of resources constrained by this limit.
|
|
3457
|
+
|
|
3458
|
+
When all of the resources are in use, steps that require the limit won't be scheduled until the resource is available.
|
|
3459
|
+
|
|
3460
|
+
The ``maxValue`` must not be 0. If the value is -1, there is no restriction on the number of resources that can be acquired for this limit.
|
|
3461
|
+
|
|
3462
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-limit.html#cfn-deadline-limit-maxcount
|
|
3463
|
+
'''
|
|
3464
|
+
result = self._values.get("max_count")
|
|
3465
|
+
assert result is not None, "Required property 'max_count' is missing"
|
|
3466
|
+
return typing.cast(jsii.Number, result)
|
|
3467
|
+
|
|
3468
|
+
@builtins.property
|
|
3469
|
+
def description(self) -> typing.Optional[builtins.str]:
|
|
3470
|
+
'''A description of the limit. A clear description helps you identify the purpose of the limit.
|
|
3471
|
+
|
|
3472
|
+
.. epigraph::
|
|
3473
|
+
|
|
3474
|
+
This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.
|
|
3475
|
+
|
|
3476
|
+
:default: - ""
|
|
3477
|
+
|
|
3478
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-limit.html#cfn-deadline-limit-description
|
|
3479
|
+
'''
|
|
3480
|
+
result = self._values.get("description")
|
|
3481
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
3482
|
+
|
|
3483
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
3484
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
3485
|
+
|
|
3486
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
3487
|
+
return not (rhs == self)
|
|
3488
|
+
|
|
3489
|
+
def __repr__(self) -> str:
|
|
3490
|
+
return "CfnLimitProps(%s)" % ", ".join(
|
|
3491
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
3492
|
+
)
|
|
3493
|
+
|
|
3494
|
+
|
|
3157
3495
|
@jsii.implements(_IInspectable_c2943556)
|
|
3158
3496
|
class CfnMeteredProduct(
|
|
3159
3497
|
_CfnResource_9df397a6,
|
|
@@ -3751,7 +4089,7 @@ class CfnQueue(
|
|
|
3751
4089
|
:param farm_id: The farm ID.
|
|
3752
4090
|
:param allowed_storage_profile_ids: The identifiers of the storage profiles that this queue can use to share assets between workers using different operating systems.
|
|
3753
4091
|
:param default_budget_action: The default action taken on a queue summary if a budget wasn't configured. Default: - "NONE"
|
|
3754
|
-
:param description: A description of the queue that helps identify what the queue is used for. Default: - ""
|
|
4092
|
+
:param description: A description of the queue that helps identify what the queue is used for. .. epigraph:: This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field. Default: - ""
|
|
3755
4093
|
:param job_attachment_settings: The job attachment settings. These are the Amazon S3 bucket name and the Amazon S3 prefix.
|
|
3756
4094
|
:param job_run_as_user: Identifies the user for a job.
|
|
3757
4095
|
:param required_file_system_location_names: The file system location that the queue uses.
|
|
@@ -4804,6 +5142,221 @@ class CfnQueueFleetAssociationProps:
|
|
|
4804
5142
|
)
|
|
4805
5143
|
|
|
4806
5144
|
|
|
5145
|
+
@jsii.implements(_IInspectable_c2943556)
|
|
5146
|
+
class CfnQueueLimitAssociation(
|
|
5147
|
+
_CfnResource_9df397a6,
|
|
5148
|
+
metaclass=jsii.JSIIMeta,
|
|
5149
|
+
jsii_type="aws-cdk-lib.aws_deadline.CfnQueueLimitAssociation",
|
|
5150
|
+
):
|
|
5151
|
+
'''Associates a limit with a particular queue.
|
|
5152
|
+
|
|
5153
|
+
After the limit is associated, all workers for jobs that specify the limit associated with the queue are subject to the limit. You can't associate two limits with the same ``amountRequirementName`` to the same queue.
|
|
5154
|
+
|
|
5155
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-queuelimitassociation.html
|
|
5156
|
+
:cloudformationResource: AWS::Deadline::QueueLimitAssociation
|
|
5157
|
+
:exampleMetadata: fixture=_generated
|
|
5158
|
+
|
|
5159
|
+
Example::
|
|
5160
|
+
|
|
5161
|
+
# The code below shows an example of how to instantiate this type.
|
|
5162
|
+
# The values are placeholders you should change.
|
|
5163
|
+
from aws_cdk import aws_deadline as deadline
|
|
5164
|
+
|
|
5165
|
+
cfn_queue_limit_association = deadline.CfnQueueLimitAssociation(self, "MyCfnQueueLimitAssociation",
|
|
5166
|
+
farm_id="farmId",
|
|
5167
|
+
limit_id="limitId",
|
|
5168
|
+
queue_id="queueId"
|
|
5169
|
+
)
|
|
5170
|
+
'''
|
|
5171
|
+
|
|
5172
|
+
def __init__(
|
|
5173
|
+
self,
|
|
5174
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
5175
|
+
id: builtins.str,
|
|
5176
|
+
*,
|
|
5177
|
+
farm_id: builtins.str,
|
|
5178
|
+
limit_id: builtins.str,
|
|
5179
|
+
queue_id: builtins.str,
|
|
5180
|
+
) -> None:
|
|
5181
|
+
'''
|
|
5182
|
+
:param scope: Scope in which this resource is defined.
|
|
5183
|
+
:param id: Construct identifier for this resource (unique in its scope).
|
|
5184
|
+
:param farm_id: The unique identifier of the farm that contains the queue-limit association.
|
|
5185
|
+
:param limit_id: The unique identifier of the limit in the association.
|
|
5186
|
+
:param queue_id: The unique identifier of the queue in the association.
|
|
5187
|
+
'''
|
|
5188
|
+
if __debug__:
|
|
5189
|
+
type_hints = typing.get_type_hints(_typecheckingstub__33bb0126f21fd4cda69453821444b10474f3d0aa1fb2e74c53855f1bab6619af)
|
|
5190
|
+
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
5191
|
+
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
5192
|
+
props = CfnQueueLimitAssociationProps(
|
|
5193
|
+
farm_id=farm_id, limit_id=limit_id, queue_id=queue_id
|
|
5194
|
+
)
|
|
5195
|
+
|
|
5196
|
+
jsii.create(self.__class__, self, [scope, id, props])
|
|
5197
|
+
|
|
5198
|
+
@jsii.member(jsii_name="inspect")
|
|
5199
|
+
def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
|
|
5200
|
+
'''Examines the CloudFormation resource and discloses attributes.
|
|
5201
|
+
|
|
5202
|
+
:param inspector: tree inspector to collect and process attributes.
|
|
5203
|
+
'''
|
|
5204
|
+
if __debug__:
|
|
5205
|
+
type_hints = typing.get_type_hints(_typecheckingstub__ea4db6a7c399e845c1e7229799d5119d1b27b4eafa4177f531354937d19f1288)
|
|
5206
|
+
check_type(argname="argument inspector", value=inspector, expected_type=type_hints["inspector"])
|
|
5207
|
+
return typing.cast(None, jsii.invoke(self, "inspect", [inspector]))
|
|
5208
|
+
|
|
5209
|
+
@jsii.member(jsii_name="renderProperties")
|
|
5210
|
+
def _render_properties(
|
|
5211
|
+
self,
|
|
5212
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
5213
|
+
) -> typing.Mapping[builtins.str, typing.Any]:
|
|
5214
|
+
'''
|
|
5215
|
+
:param props: -
|
|
5216
|
+
'''
|
|
5217
|
+
if __debug__:
|
|
5218
|
+
type_hints = typing.get_type_hints(_typecheckingstub__90795c7c14ba63ddf5c77599ab3af7be5c53e96f84e225e618cd6a0e6b7172aa)
|
|
5219
|
+
check_type(argname="argument props", value=props, expected_type=type_hints["props"])
|
|
5220
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "renderProperties", [props]))
|
|
5221
|
+
|
|
5222
|
+
@jsii.python.classproperty
|
|
5223
|
+
@jsii.member(jsii_name="CFN_RESOURCE_TYPE_NAME")
|
|
5224
|
+
def CFN_RESOURCE_TYPE_NAME(cls) -> builtins.str:
|
|
5225
|
+
'''The CloudFormation resource type name for this resource class.'''
|
|
5226
|
+
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
5227
|
+
|
|
5228
|
+
@builtins.property
|
|
5229
|
+
@jsii.member(jsii_name="cfnProperties")
|
|
5230
|
+
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
5231
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
|
|
5232
|
+
|
|
5233
|
+
@builtins.property
|
|
5234
|
+
@jsii.member(jsii_name="farmId")
|
|
5235
|
+
def farm_id(self) -> builtins.str:
|
|
5236
|
+
'''The unique identifier of the farm that contains the queue-limit association.'''
|
|
5237
|
+
return typing.cast(builtins.str, jsii.get(self, "farmId"))
|
|
5238
|
+
|
|
5239
|
+
@farm_id.setter
|
|
5240
|
+
def farm_id(self, value: builtins.str) -> None:
|
|
5241
|
+
if __debug__:
|
|
5242
|
+
type_hints = typing.get_type_hints(_typecheckingstub__403fffa3c6aecc39b19be3c4370bf9a2122428534f3f293d7d0e92ea712a482a)
|
|
5243
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5244
|
+
jsii.set(self, "farmId", value) # pyright: ignore[reportArgumentType]
|
|
5245
|
+
|
|
5246
|
+
@builtins.property
|
|
5247
|
+
@jsii.member(jsii_name="limitId")
|
|
5248
|
+
def limit_id(self) -> builtins.str:
|
|
5249
|
+
'''The unique identifier of the limit in the association.'''
|
|
5250
|
+
return typing.cast(builtins.str, jsii.get(self, "limitId"))
|
|
5251
|
+
|
|
5252
|
+
@limit_id.setter
|
|
5253
|
+
def limit_id(self, value: builtins.str) -> None:
|
|
5254
|
+
if __debug__:
|
|
5255
|
+
type_hints = typing.get_type_hints(_typecheckingstub__81482eb74e42f1ae8e5a39d253572074c07dac8a3f9c6cf155bcdc70b07a9d8b)
|
|
5256
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5257
|
+
jsii.set(self, "limitId", value) # pyright: ignore[reportArgumentType]
|
|
5258
|
+
|
|
5259
|
+
@builtins.property
|
|
5260
|
+
@jsii.member(jsii_name="queueId")
|
|
5261
|
+
def queue_id(self) -> builtins.str:
|
|
5262
|
+
'''The unique identifier of the queue in the association.'''
|
|
5263
|
+
return typing.cast(builtins.str, jsii.get(self, "queueId"))
|
|
5264
|
+
|
|
5265
|
+
@queue_id.setter
|
|
5266
|
+
def queue_id(self, value: builtins.str) -> None:
|
|
5267
|
+
if __debug__:
|
|
5268
|
+
type_hints = typing.get_type_hints(_typecheckingstub__95918502773e04fedfce617293e1273542487559239540340f6318ee3b2652bd)
|
|
5269
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5270
|
+
jsii.set(self, "queueId", value) # pyright: ignore[reportArgumentType]
|
|
5271
|
+
|
|
5272
|
+
|
|
5273
|
+
@jsii.data_type(
|
|
5274
|
+
jsii_type="aws-cdk-lib.aws_deadline.CfnQueueLimitAssociationProps",
|
|
5275
|
+
jsii_struct_bases=[],
|
|
5276
|
+
name_mapping={"farm_id": "farmId", "limit_id": "limitId", "queue_id": "queueId"},
|
|
5277
|
+
)
|
|
5278
|
+
class CfnQueueLimitAssociationProps:
|
|
5279
|
+
def __init__(
|
|
5280
|
+
self,
|
|
5281
|
+
*,
|
|
5282
|
+
farm_id: builtins.str,
|
|
5283
|
+
limit_id: builtins.str,
|
|
5284
|
+
queue_id: builtins.str,
|
|
5285
|
+
) -> None:
|
|
5286
|
+
'''Properties for defining a ``CfnQueueLimitAssociation``.
|
|
5287
|
+
|
|
5288
|
+
:param farm_id: The unique identifier of the farm that contains the queue-limit association.
|
|
5289
|
+
:param limit_id: The unique identifier of the limit in the association.
|
|
5290
|
+
:param queue_id: The unique identifier of the queue in the association.
|
|
5291
|
+
|
|
5292
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-queuelimitassociation.html
|
|
5293
|
+
:exampleMetadata: fixture=_generated
|
|
5294
|
+
|
|
5295
|
+
Example::
|
|
5296
|
+
|
|
5297
|
+
# The code below shows an example of how to instantiate this type.
|
|
5298
|
+
# The values are placeholders you should change.
|
|
5299
|
+
from aws_cdk import aws_deadline as deadline
|
|
5300
|
+
|
|
5301
|
+
cfn_queue_limit_association_props = deadline.CfnQueueLimitAssociationProps(
|
|
5302
|
+
farm_id="farmId",
|
|
5303
|
+
limit_id="limitId",
|
|
5304
|
+
queue_id="queueId"
|
|
5305
|
+
)
|
|
5306
|
+
'''
|
|
5307
|
+
if __debug__:
|
|
5308
|
+
type_hints = typing.get_type_hints(_typecheckingstub__a6ee3120556a9adfac55bd8ed189354788afc9d44f3f38d4c0ed4d4741462bd3)
|
|
5309
|
+
check_type(argname="argument farm_id", value=farm_id, expected_type=type_hints["farm_id"])
|
|
5310
|
+
check_type(argname="argument limit_id", value=limit_id, expected_type=type_hints["limit_id"])
|
|
5311
|
+
check_type(argname="argument queue_id", value=queue_id, expected_type=type_hints["queue_id"])
|
|
5312
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
5313
|
+
"farm_id": farm_id,
|
|
5314
|
+
"limit_id": limit_id,
|
|
5315
|
+
"queue_id": queue_id,
|
|
5316
|
+
}
|
|
5317
|
+
|
|
5318
|
+
@builtins.property
|
|
5319
|
+
def farm_id(self) -> builtins.str:
|
|
5320
|
+
'''The unique identifier of the farm that contains the queue-limit association.
|
|
5321
|
+
|
|
5322
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-queuelimitassociation.html#cfn-deadline-queuelimitassociation-farmid
|
|
5323
|
+
'''
|
|
5324
|
+
result = self._values.get("farm_id")
|
|
5325
|
+
assert result is not None, "Required property 'farm_id' is missing"
|
|
5326
|
+
return typing.cast(builtins.str, result)
|
|
5327
|
+
|
|
5328
|
+
@builtins.property
|
|
5329
|
+
def limit_id(self) -> builtins.str:
|
|
5330
|
+
'''The unique identifier of the limit in the association.
|
|
5331
|
+
|
|
5332
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-queuelimitassociation.html#cfn-deadline-queuelimitassociation-limitid
|
|
5333
|
+
'''
|
|
5334
|
+
result = self._values.get("limit_id")
|
|
5335
|
+
assert result is not None, "Required property 'limit_id' is missing"
|
|
5336
|
+
return typing.cast(builtins.str, result)
|
|
5337
|
+
|
|
5338
|
+
@builtins.property
|
|
5339
|
+
def queue_id(self) -> builtins.str:
|
|
5340
|
+
'''The unique identifier of the queue in the association.
|
|
5341
|
+
|
|
5342
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-queuelimitassociation.html#cfn-deadline-queuelimitassociation-queueid
|
|
5343
|
+
'''
|
|
5344
|
+
result = self._values.get("queue_id")
|
|
5345
|
+
assert result is not None, "Required property 'queue_id' is missing"
|
|
5346
|
+
return typing.cast(builtins.str, result)
|
|
5347
|
+
|
|
5348
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
5349
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
5350
|
+
|
|
5351
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
5352
|
+
return not (rhs == self)
|
|
5353
|
+
|
|
5354
|
+
def __repr__(self) -> str:
|
|
5355
|
+
return "CfnQueueLimitAssociationProps(%s)" % ", ".join(
|
|
5356
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
5357
|
+
)
|
|
5358
|
+
|
|
5359
|
+
|
|
4807
5360
|
@jsii.data_type(
|
|
4808
5361
|
jsii_type="aws-cdk-lib.aws_deadline.CfnQueueProps",
|
|
4809
5362
|
jsii_struct_bases=[],
|
|
@@ -4841,7 +5394,7 @@ class CfnQueueProps:
|
|
|
4841
5394
|
:param farm_id: The farm ID.
|
|
4842
5395
|
:param allowed_storage_profile_ids: The identifiers of the storage profiles that this queue can use to share assets between workers using different operating systems.
|
|
4843
5396
|
:param default_budget_action: The default action taken on a queue summary if a budget wasn't configured. Default: - "NONE"
|
|
4844
|
-
:param description: A description of the queue that helps identify what the queue is used for. Default: - ""
|
|
5397
|
+
:param description: A description of the queue that helps identify what the queue is used for. .. epigraph:: This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field. Default: - ""
|
|
4845
5398
|
:param job_attachment_settings: The job attachment settings. These are the Amazon S3 bucket name and the Amazon S3 prefix.
|
|
4846
5399
|
:param job_run_as_user: Identifies the user for a job.
|
|
4847
5400
|
:param required_file_system_location_names: The file system location that the queue uses.
|
|
@@ -4971,6 +5524,10 @@ class CfnQueueProps:
|
|
|
4971
5524
|
def description(self) -> typing.Optional[builtins.str]:
|
|
4972
5525
|
'''A description of the queue that helps identify what the queue is used for.
|
|
4973
5526
|
|
|
5527
|
+
.. epigraph::
|
|
5528
|
+
|
|
5529
|
+
This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.
|
|
5530
|
+
|
|
4974
5531
|
:default: - ""
|
|
4975
5532
|
|
|
4976
5533
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-queue.html#cfn-deadline-queue-description
|
|
@@ -5422,6 +5979,8 @@ __all__ = [
|
|
|
5422
5979
|
"CfnFleetProps",
|
|
5423
5980
|
"CfnLicenseEndpoint",
|
|
5424
5981
|
"CfnLicenseEndpointProps",
|
|
5982
|
+
"CfnLimit",
|
|
5983
|
+
"CfnLimitProps",
|
|
5425
5984
|
"CfnMeteredProduct",
|
|
5426
5985
|
"CfnMeteredProductProps",
|
|
5427
5986
|
"CfnMonitor",
|
|
@@ -5431,6 +5990,8 @@ __all__ = [
|
|
|
5431
5990
|
"CfnQueueEnvironmentProps",
|
|
5432
5991
|
"CfnQueueFleetAssociation",
|
|
5433
5992
|
"CfnQueueFleetAssociationProps",
|
|
5993
|
+
"CfnQueueLimitAssociation",
|
|
5994
|
+
"CfnQueueLimitAssociationProps",
|
|
5434
5995
|
"CfnQueueProps",
|
|
5435
5996
|
"CfnStorageProfile",
|
|
5436
5997
|
"CfnStorageProfileProps",
|
|
@@ -5789,6 +6350,72 @@ def _typecheckingstub__7a9c98d4186629e7162fde16ad1be09ade6a940c8cf979c87af77955e
|
|
|
5789
6350
|
"""Type checking stubs"""
|
|
5790
6351
|
pass
|
|
5791
6352
|
|
|
6353
|
+
def _typecheckingstub__95a2d36b6bd2c6b4526ddd666cdb501efdf5ffcc5bb8ceefea12e0b2b03771db(
|
|
6354
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
6355
|
+
id: builtins.str,
|
|
6356
|
+
*,
|
|
6357
|
+
amount_requirement_name: builtins.str,
|
|
6358
|
+
display_name: builtins.str,
|
|
6359
|
+
farm_id: builtins.str,
|
|
6360
|
+
max_count: jsii.Number,
|
|
6361
|
+
description: typing.Optional[builtins.str] = None,
|
|
6362
|
+
) -> None:
|
|
6363
|
+
"""Type checking stubs"""
|
|
6364
|
+
pass
|
|
6365
|
+
|
|
6366
|
+
def _typecheckingstub__83b7d3f7848e22e6703b3dee913451d9b15c46f08fe2a7b74b935640f721d335(
|
|
6367
|
+
inspector: _TreeInspector_488e0dd5,
|
|
6368
|
+
) -> None:
|
|
6369
|
+
"""Type checking stubs"""
|
|
6370
|
+
pass
|
|
6371
|
+
|
|
6372
|
+
def _typecheckingstub__a2b5807c8c27d5bd8286a9475a427521d61b900937d67184c5db692856bf7f09(
|
|
6373
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
6374
|
+
) -> None:
|
|
6375
|
+
"""Type checking stubs"""
|
|
6376
|
+
pass
|
|
6377
|
+
|
|
6378
|
+
def _typecheckingstub__28aff12a88e4878af62a4facf3ba960c0989b8e072de10a3a9a7109a99ffb156(
|
|
6379
|
+
value: builtins.str,
|
|
6380
|
+
) -> None:
|
|
6381
|
+
"""Type checking stubs"""
|
|
6382
|
+
pass
|
|
6383
|
+
|
|
6384
|
+
def _typecheckingstub__b34d01cf916eae1174982512038db6386277599954f595da403eefd285383489(
|
|
6385
|
+
value: builtins.str,
|
|
6386
|
+
) -> None:
|
|
6387
|
+
"""Type checking stubs"""
|
|
6388
|
+
pass
|
|
6389
|
+
|
|
6390
|
+
def _typecheckingstub__12a4bb4f4b8f310c2fdfebb62cb19dff797b3c697b3d7cad8fb909c2a4295253(
|
|
6391
|
+
value: builtins.str,
|
|
6392
|
+
) -> None:
|
|
6393
|
+
"""Type checking stubs"""
|
|
6394
|
+
pass
|
|
6395
|
+
|
|
6396
|
+
def _typecheckingstub__f77e580a09313f12612831bf7da9ccf6b581b5d578a3c742ae117491d077fbde(
|
|
6397
|
+
value: jsii.Number,
|
|
6398
|
+
) -> None:
|
|
6399
|
+
"""Type checking stubs"""
|
|
6400
|
+
pass
|
|
6401
|
+
|
|
6402
|
+
def _typecheckingstub__dbf2d43f89d2f23cb2d43ac25f868a67c740d12d602cbee498c4f96ef06792a9(
|
|
6403
|
+
value: typing.Optional[builtins.str],
|
|
6404
|
+
) -> None:
|
|
6405
|
+
"""Type checking stubs"""
|
|
6406
|
+
pass
|
|
6407
|
+
|
|
6408
|
+
def _typecheckingstub__14084853add855b7c5ddee255b1050f58be9e132b41ff835081046502cdc22b8(
|
|
6409
|
+
*,
|
|
6410
|
+
amount_requirement_name: builtins.str,
|
|
6411
|
+
display_name: builtins.str,
|
|
6412
|
+
farm_id: builtins.str,
|
|
6413
|
+
max_count: jsii.Number,
|
|
6414
|
+
description: typing.Optional[builtins.str] = None,
|
|
6415
|
+
) -> None:
|
|
6416
|
+
"""Type checking stubs"""
|
|
6417
|
+
pass
|
|
6418
|
+
|
|
5792
6419
|
def _typecheckingstub__1349660e6447c1e6551d1ce7cde2c5dc6adbf1fb1fdceb9f214b066a5a6b4ebe(
|
|
5793
6420
|
scope: _constructs_77d1e7e8.Construct,
|
|
5794
6421
|
id: builtins.str,
|
|
@@ -6128,6 +6755,56 @@ def _typecheckingstub__5457199586ad5b5517f14765c4203a9a198d98c68deaf06933477e9fc
|
|
|
6128
6755
|
"""Type checking stubs"""
|
|
6129
6756
|
pass
|
|
6130
6757
|
|
|
6758
|
+
def _typecheckingstub__33bb0126f21fd4cda69453821444b10474f3d0aa1fb2e74c53855f1bab6619af(
|
|
6759
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
6760
|
+
id: builtins.str,
|
|
6761
|
+
*,
|
|
6762
|
+
farm_id: builtins.str,
|
|
6763
|
+
limit_id: builtins.str,
|
|
6764
|
+
queue_id: builtins.str,
|
|
6765
|
+
) -> None:
|
|
6766
|
+
"""Type checking stubs"""
|
|
6767
|
+
pass
|
|
6768
|
+
|
|
6769
|
+
def _typecheckingstub__ea4db6a7c399e845c1e7229799d5119d1b27b4eafa4177f531354937d19f1288(
|
|
6770
|
+
inspector: _TreeInspector_488e0dd5,
|
|
6771
|
+
) -> None:
|
|
6772
|
+
"""Type checking stubs"""
|
|
6773
|
+
pass
|
|
6774
|
+
|
|
6775
|
+
def _typecheckingstub__90795c7c14ba63ddf5c77599ab3af7be5c53e96f84e225e618cd6a0e6b7172aa(
|
|
6776
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
6777
|
+
) -> None:
|
|
6778
|
+
"""Type checking stubs"""
|
|
6779
|
+
pass
|
|
6780
|
+
|
|
6781
|
+
def _typecheckingstub__403fffa3c6aecc39b19be3c4370bf9a2122428534f3f293d7d0e92ea712a482a(
|
|
6782
|
+
value: builtins.str,
|
|
6783
|
+
) -> None:
|
|
6784
|
+
"""Type checking stubs"""
|
|
6785
|
+
pass
|
|
6786
|
+
|
|
6787
|
+
def _typecheckingstub__81482eb74e42f1ae8e5a39d253572074c07dac8a3f9c6cf155bcdc70b07a9d8b(
|
|
6788
|
+
value: builtins.str,
|
|
6789
|
+
) -> None:
|
|
6790
|
+
"""Type checking stubs"""
|
|
6791
|
+
pass
|
|
6792
|
+
|
|
6793
|
+
def _typecheckingstub__95918502773e04fedfce617293e1273542487559239540340f6318ee3b2652bd(
|
|
6794
|
+
value: builtins.str,
|
|
6795
|
+
) -> None:
|
|
6796
|
+
"""Type checking stubs"""
|
|
6797
|
+
pass
|
|
6798
|
+
|
|
6799
|
+
def _typecheckingstub__a6ee3120556a9adfac55bd8ed189354788afc9d44f3f38d4c0ed4d4741462bd3(
|
|
6800
|
+
*,
|
|
6801
|
+
farm_id: builtins.str,
|
|
6802
|
+
limit_id: builtins.str,
|
|
6803
|
+
queue_id: builtins.str,
|
|
6804
|
+
) -> None:
|
|
6805
|
+
"""Type checking stubs"""
|
|
6806
|
+
pass
|
|
6807
|
+
|
|
6131
6808
|
def _typecheckingstub__a92d64f51023fd5b945aa0d9e2b696749e02f9df358265737e05dd4a730fd30d(
|
|
6132
6809
|
*,
|
|
6133
6810
|
display_name: builtins.str,
|