aws-cdk-lib 2.137.0__py3-none-any.whl → 2.138.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 +8 -0
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.137.0.jsii.tgz → aws-cdk-lib@2.138.0.jsii.tgz} +0 -0
- aws_cdk/aws_amplify/__init__.py +29 -113
- aws_cdk/aws_appconfig/__init__.py +26 -33
- aws_cdk/aws_apprunner/__init__.py +5 -2
- aws_cdk/aws_appsync/__init__.py +400 -13
- aws_cdk/aws_aps/__init__.py +64 -47
- aws_cdk/aws_b2bi/__init__.py +2 -6
- aws_cdk/aws_backup/__init__.py +27 -23
- aws_cdk/aws_batch/__init__.py +103 -0
- aws_cdk/aws_bcmdataexports/__init__.py +1114 -0
- aws_cdk/aws_chatbot/__init__.py +6 -4
- aws_cdk/aws_cleanrooms/__init__.py +526 -3
- aws_cdk/aws_cleanroomsml/__init__.py +960 -0
- aws_cdk/aws_cloudtrail/__init__.py +10 -10
- aws_cdk/aws_cloudwatch/__init__.py +124 -8
- aws_cdk/aws_codebuild/__init__.py +27 -22
- aws_cdk/aws_codeconnections/__init__.py +435 -0
- aws_cdk/aws_cognito/__init__.py +175 -79
- aws_cdk/aws_deadline/__init__.py +5394 -0
- aws_cdk/aws_ec2/__init__.py +279 -163
- aws_cdk/aws_ecs/__init__.py +240 -1
- aws_cdk/aws_efs/__init__.py +2 -2
- aws_cdk/aws_elasticache/__init__.py +86 -32
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +52 -2
- aws_cdk/aws_emr/__init__.py +2 -2
- aws_cdk/aws_entityresolution/__init__.py +1982 -773
- aws_cdk/aws_globalaccelerator/__init__.py +443 -0
- aws_cdk/aws_iam/__init__.py +1 -2
- aws_cdk/aws_internetmonitor/__init__.py +14 -6
- aws_cdk/aws_ivs/__init__.py +1273 -71
- aws_cdk/aws_mediatailor/__init__.py +41 -0
- aws_cdk/aws_personalize/__init__.py +8 -6
- aws_cdk/aws_pinpoint/__init__.py +5 -3
- aws_cdk/aws_pipes/__init__.py +5 -1
- aws_cdk/aws_quicksight/__init__.py +12 -6
- aws_cdk/aws_rds/__init__.py +355 -85
- aws_cdk/aws_route53/__init__.py +587 -14
- aws_cdk/aws_sagemaker/__init__.py +233 -2
- aws_cdk/aws_securityhub/__init__.py +4940 -102
- aws_cdk/aws_securitylake/__init__.py +1237 -55
- aws_cdk/aws_sns/__init__.py +61 -4
- aws_cdk/aws_ssmcontacts/__init__.py +11 -4
- aws_cdk/aws_stepfunctions/__init__.py +8 -16
- aws_cdk/aws_stepfunctions_tasks/__init__.py +676 -1
- aws_cdk/aws_transfer/__init__.py +4 -4
- aws_cdk/aws_verifiedpermissions/__init__.py +114 -37
- aws_cdk/aws_workspacesthinclient/__init__.py +8 -8
- aws_cdk/custom_resources/__init__.py +248 -26
- {aws_cdk_lib-2.137.0.dist-info → aws_cdk_lib-2.138.0.dist-info}/METADATA +3 -3
- {aws_cdk_lib-2.137.0.dist-info → aws_cdk_lib-2.138.0.dist-info}/RECORD +56 -52
- {aws_cdk_lib-2.137.0.dist-info → aws_cdk_lib-2.138.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.137.0.dist-info → aws_cdk_lib-2.138.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.137.0.dist-info → aws_cdk_lib-2.138.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.137.0.dist-info → aws_cdk_lib-2.138.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_batch/__init__.py
CHANGED
|
@@ -4241,6 +4241,7 @@ class CfnJobDefinition(
|
|
|
4241
4241
|
requests=requests
|
|
4242
4242
|
),
|
|
4243
4243
|
security_context=batch.CfnJobDefinition.SecurityContextProperty(
|
|
4244
|
+
allow_privilege_escalation=False,
|
|
4244
4245
|
privileged=False,
|
|
4245
4246
|
read_only_root_filesystem=False,
|
|
4246
4247
|
run_as_group=123,
|
|
@@ -4554,6 +4555,7 @@ class CfnJobDefinition(
|
|
|
4554
4555
|
requests=requests
|
|
4555
4556
|
),
|
|
4556
4557
|
security_context=batch.CfnJobDefinition.SecurityContextProperty(
|
|
4558
|
+
allow_privilege_escalation=False,
|
|
4557
4559
|
privileged=False,
|
|
4558
4560
|
read_only_root_filesystem=False,
|
|
4559
4561
|
run_as_group=123,
|
|
@@ -4568,6 +4570,9 @@ class CfnJobDefinition(
|
|
|
4568
4570
|
)],
|
|
4569
4571
|
dns_policy="dnsPolicy",
|
|
4570
4572
|
host_network=False,
|
|
4573
|
+
image_pull_secrets=[batch.CfnJobDefinition.ImagePullSecretProperty(
|
|
4574
|
+
name="name"
|
|
4575
|
+
)],
|
|
4571
4576
|
init_containers=[batch.CfnJobDefinition.EksContainerProperty(
|
|
4572
4577
|
image="image",
|
|
4573
4578
|
|
|
@@ -4587,6 +4592,7 @@ class CfnJobDefinition(
|
|
|
4587
4592
|
requests=requests
|
|
4588
4593
|
),
|
|
4589
4594
|
security_context=batch.CfnJobDefinition.SecurityContextProperty(
|
|
4595
|
+
allow_privilege_escalation=False,
|
|
4590
4596
|
privileged=False,
|
|
4591
4597
|
read_only_root_filesystem=False,
|
|
4592
4598
|
run_as_group=123,
|
|
@@ -5286,6 +5292,56 @@ class CfnJobDefinition(
|
|
|
5286
5292
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
5287
5293
|
)
|
|
5288
5294
|
|
|
5295
|
+
@jsii.data_type(
|
|
5296
|
+
jsii_type="aws-cdk-lib.aws_batch.CfnJobDefinition.ImagePullSecretProperty",
|
|
5297
|
+
jsii_struct_bases=[],
|
|
5298
|
+
name_mapping={"name": "name"},
|
|
5299
|
+
)
|
|
5300
|
+
class ImagePullSecretProperty:
|
|
5301
|
+
def __init__(self, *, name: builtins.str) -> None:
|
|
5302
|
+
'''
|
|
5303
|
+
:param name:
|
|
5304
|
+
|
|
5305
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-imagepullsecret.html
|
|
5306
|
+
:exampleMetadata: fixture=_generated
|
|
5307
|
+
|
|
5308
|
+
Example::
|
|
5309
|
+
|
|
5310
|
+
# The code below shows an example of how to instantiate this type.
|
|
5311
|
+
# The values are placeholders you should change.
|
|
5312
|
+
from aws_cdk import aws_batch as batch
|
|
5313
|
+
|
|
5314
|
+
image_pull_secret_property = batch.CfnJobDefinition.ImagePullSecretProperty(
|
|
5315
|
+
name="name"
|
|
5316
|
+
)
|
|
5317
|
+
'''
|
|
5318
|
+
if __debug__:
|
|
5319
|
+
type_hints = typing.get_type_hints(_typecheckingstub__510e7e45fa5176303c62970a1bb0161e95eb0fcd2438671b35f8c5a3c506b95a)
|
|
5320
|
+
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
5321
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
5322
|
+
"name": name,
|
|
5323
|
+
}
|
|
5324
|
+
|
|
5325
|
+
@builtins.property
|
|
5326
|
+
def name(self) -> builtins.str:
|
|
5327
|
+
'''
|
|
5328
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-imagepullsecret.html#cfn-batch-jobdefinition-imagepullsecret-name
|
|
5329
|
+
'''
|
|
5330
|
+
result = self._values.get("name")
|
|
5331
|
+
assert result is not None, "Required property 'name' is missing"
|
|
5332
|
+
return typing.cast(builtins.str, result)
|
|
5333
|
+
|
|
5334
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
5335
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
5336
|
+
|
|
5337
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
5338
|
+
return not (rhs == self)
|
|
5339
|
+
|
|
5340
|
+
def __repr__(self) -> str:
|
|
5341
|
+
return "ImagePullSecretProperty(%s)" % ", ".join(
|
|
5342
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
5343
|
+
)
|
|
5344
|
+
|
|
5289
5345
|
@jsii.data_type(
|
|
5290
5346
|
jsii_type="aws-cdk-lib.aws_batch.CfnJobDefinition.LinuxParametersProperty",
|
|
5291
5347
|
jsii_struct_bases=[],
|
|
@@ -6453,6 +6509,7 @@ class CfnJobDefinition(
|
|
|
6453
6509
|
"containers": "containers",
|
|
6454
6510
|
"dns_policy": "dnsPolicy",
|
|
6455
6511
|
"host_network": "hostNetwork",
|
|
6512
|
+
"image_pull_secrets": "imagePullSecrets",
|
|
6456
6513
|
"init_containers": "initContainers",
|
|
6457
6514
|
"metadata": "metadata",
|
|
6458
6515
|
"service_account_name": "serviceAccountName",
|
|
@@ -6467,6 +6524,7 @@ class CfnJobDefinition(
|
|
|
6467
6524
|
containers: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnJobDefinition.EksContainerProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
6468
6525
|
dns_policy: typing.Optional[builtins.str] = None,
|
|
6469
6526
|
host_network: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
6527
|
+
image_pull_secrets: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnJobDefinition.ImagePullSecretProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
6470
6528
|
init_containers: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnJobDefinition.EksContainerProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
6471
6529
|
metadata: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnJobDefinition.MetadataProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6472
6530
|
service_account_name: typing.Optional[builtins.str] = None,
|
|
@@ -6478,6 +6536,7 @@ class CfnJobDefinition(
|
|
|
6478
6536
|
:param containers: The properties of the container that's used on the Amazon EKS pod.
|
|
6479
6537
|
:param dns_policy: The DNS policy for the pod. The default value is ``ClusterFirst`` . If the ``hostNetwork`` parameter is not specified, the default is ``ClusterFirstWithHostNet`` . ``ClusterFirst`` indicates that any DNS query that does not match the configured cluster domain suffix is forwarded to the upstream nameserver inherited from the node. For more information, see `Pod's DNS policy <https://docs.aws.amazon.com/https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/#pod-s-dns-policy>`_ in the *Kubernetes documentation* . Valid values: ``Default`` | ``ClusterFirst`` | ``ClusterFirstWithHostNet``
|
|
6480
6538
|
:param host_network: Indicates if the pod uses the hosts' network IP address. The default value is ``true`` . Setting this to ``false`` enables the Kubernetes pod networking model. Most AWS Batch workloads are egress-only and don't require the overhead of IP allocation for each pod for incoming connections. For more information, see `Host namespaces <https://docs.aws.amazon.com/https://kubernetes.io/docs/concepts/security/pod-security-policy/#host-namespaces>`_ and `Pod networking <https://docs.aws.amazon.com/https://kubernetes.io/docs/concepts/workloads/pods/#pod-networking>`_ in the *Kubernetes documentation* .
|
|
6539
|
+
:param image_pull_secrets:
|
|
6481
6540
|
:param init_containers: These containers run before application containers, always runs to completion, and must complete successfully before the next container starts. These containers are registered with the Amazon EKS Connector agent and persists the registration information in the Kubernetes backend data store. For more information, see `Init Containers <https://docs.aws.amazon.com/https://kubernetes.io/docs/concepts/workloads/pods/init-containers/>`_ in the *Kubernetes documentation* . .. epigraph:: This object is limited to 10 elements
|
|
6482
6541
|
:param metadata: Metadata about the Kubernetes pod. For more information, see `Understanding Kubernetes Objects <https://docs.aws.amazon.com/https://kubernetes.io/docs/concepts/overview/working-with-objects/kubernetes-objects/>`_ in the *Kubernetes documentation* .
|
|
6483
6542
|
:param service_account_name: The name of the service account that's used to run the pod. For more information, see `Kubernetes service accounts <https://docs.aws.amazon.com/eks/latest/userguide/service-accounts.html>`_ and `Configure a Kubernetes service account to assume an IAM role <https://docs.aws.amazon.com/eks/latest/userguide/associate-service-account-role.html>`_ in the *Amazon EKS User Guide* and `Configure service accounts for pods <https://docs.aws.amazon.com/https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/>`_ in the *Kubernetes documentation* .
|
|
@@ -6517,6 +6576,7 @@ class CfnJobDefinition(
|
|
|
6517
6576
|
requests=requests
|
|
6518
6577
|
),
|
|
6519
6578
|
security_context=batch.CfnJobDefinition.SecurityContextProperty(
|
|
6579
|
+
allow_privilege_escalation=False,
|
|
6520
6580
|
privileged=False,
|
|
6521
6581
|
read_only_root_filesystem=False,
|
|
6522
6582
|
run_as_group=123,
|
|
@@ -6531,6 +6591,9 @@ class CfnJobDefinition(
|
|
|
6531
6591
|
)],
|
|
6532
6592
|
dns_policy="dnsPolicy",
|
|
6533
6593
|
host_network=False,
|
|
6594
|
+
image_pull_secrets=[batch.CfnJobDefinition.ImagePullSecretProperty(
|
|
6595
|
+
name="name"
|
|
6596
|
+
)],
|
|
6534
6597
|
init_containers=[batch.CfnJobDefinition.EksContainerProperty(
|
|
6535
6598
|
image="image",
|
|
6536
6599
|
|
|
@@ -6550,6 +6613,7 @@ class CfnJobDefinition(
|
|
|
6550
6613
|
requests=requests
|
|
6551
6614
|
),
|
|
6552
6615
|
security_context=batch.CfnJobDefinition.SecurityContextProperty(
|
|
6616
|
+
allow_privilege_escalation=False,
|
|
6553
6617
|
privileged=False,
|
|
6554
6618
|
read_only_root_filesystem=False,
|
|
6555
6619
|
run_as_group=123,
|
|
@@ -6592,6 +6656,7 @@ class CfnJobDefinition(
|
|
|
6592
6656
|
check_type(argname="argument containers", value=containers, expected_type=type_hints["containers"])
|
|
6593
6657
|
check_type(argname="argument dns_policy", value=dns_policy, expected_type=type_hints["dns_policy"])
|
|
6594
6658
|
check_type(argname="argument host_network", value=host_network, expected_type=type_hints["host_network"])
|
|
6659
|
+
check_type(argname="argument image_pull_secrets", value=image_pull_secrets, expected_type=type_hints["image_pull_secrets"])
|
|
6595
6660
|
check_type(argname="argument init_containers", value=init_containers, expected_type=type_hints["init_containers"])
|
|
6596
6661
|
check_type(argname="argument metadata", value=metadata, expected_type=type_hints["metadata"])
|
|
6597
6662
|
check_type(argname="argument service_account_name", value=service_account_name, expected_type=type_hints["service_account_name"])
|
|
@@ -6604,6 +6669,8 @@ class CfnJobDefinition(
|
|
|
6604
6669
|
self._values["dns_policy"] = dns_policy
|
|
6605
6670
|
if host_network is not None:
|
|
6606
6671
|
self._values["host_network"] = host_network
|
|
6672
|
+
if image_pull_secrets is not None:
|
|
6673
|
+
self._values["image_pull_secrets"] = image_pull_secrets
|
|
6607
6674
|
if init_containers is not None:
|
|
6608
6675
|
self._values["init_containers"] = init_containers
|
|
6609
6676
|
if metadata is not None:
|
|
@@ -6652,6 +6719,16 @@ class CfnJobDefinition(
|
|
|
6652
6719
|
result = self._values.get("host_network")
|
|
6653
6720
|
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
6654
6721
|
|
|
6722
|
+
@builtins.property
|
|
6723
|
+
def image_pull_secrets(
|
|
6724
|
+
self,
|
|
6725
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnJobDefinition.ImagePullSecretProperty"]]]]:
|
|
6726
|
+
'''
|
|
6727
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-podproperties.html#cfn-batch-jobdefinition-podproperties-imagepullsecrets
|
|
6728
|
+
'''
|
|
6729
|
+
result = self._values.get("image_pull_secrets")
|
|
6730
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnJobDefinition.ImagePullSecretProperty"]]]], result)
|
|
6731
|
+
|
|
6655
6732
|
@builtins.property
|
|
6656
6733
|
def init_containers(
|
|
6657
6734
|
self,
|
|
@@ -7214,6 +7291,7 @@ class CfnJobDefinition(
|
|
|
7214
7291
|
jsii_type="aws-cdk-lib.aws_batch.CfnJobDefinition.SecurityContextProperty",
|
|
7215
7292
|
jsii_struct_bases=[],
|
|
7216
7293
|
name_mapping={
|
|
7294
|
+
"allow_privilege_escalation": "allowPrivilegeEscalation",
|
|
7217
7295
|
"privileged": "privileged",
|
|
7218
7296
|
"read_only_root_filesystem": "readOnlyRootFilesystem",
|
|
7219
7297
|
"run_as_group": "runAsGroup",
|
|
@@ -7225,6 +7303,7 @@ class CfnJobDefinition(
|
|
|
7225
7303
|
def __init__(
|
|
7226
7304
|
self,
|
|
7227
7305
|
*,
|
|
7306
|
+
allow_privilege_escalation: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
7228
7307
|
privileged: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
7229
7308
|
read_only_root_filesystem: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
7230
7309
|
run_as_group: typing.Optional[jsii.Number] = None,
|
|
@@ -7232,6 +7311,7 @@ class CfnJobDefinition(
|
|
|
7232
7311
|
run_as_user: typing.Optional[jsii.Number] = None,
|
|
7233
7312
|
) -> None:
|
|
7234
7313
|
'''
|
|
7314
|
+
:param allow_privilege_escalation:
|
|
7235
7315
|
:param privileged:
|
|
7236
7316
|
:param read_only_root_filesystem:
|
|
7237
7317
|
:param run_as_group:
|
|
@@ -7248,6 +7328,7 @@ class CfnJobDefinition(
|
|
|
7248
7328
|
from aws_cdk import aws_batch as batch
|
|
7249
7329
|
|
|
7250
7330
|
security_context_property = batch.CfnJobDefinition.SecurityContextProperty(
|
|
7331
|
+
allow_privilege_escalation=False,
|
|
7251
7332
|
privileged=False,
|
|
7252
7333
|
read_only_root_filesystem=False,
|
|
7253
7334
|
run_as_group=123,
|
|
@@ -7257,12 +7338,15 @@ class CfnJobDefinition(
|
|
|
7257
7338
|
'''
|
|
7258
7339
|
if __debug__:
|
|
7259
7340
|
type_hints = typing.get_type_hints(_typecheckingstub__ecf4bfd8ece80e1bc3ee0536353fc145f3c5b08f62a604a53b62e7d2526f9d0e)
|
|
7341
|
+
check_type(argname="argument allow_privilege_escalation", value=allow_privilege_escalation, expected_type=type_hints["allow_privilege_escalation"])
|
|
7260
7342
|
check_type(argname="argument privileged", value=privileged, expected_type=type_hints["privileged"])
|
|
7261
7343
|
check_type(argname="argument read_only_root_filesystem", value=read_only_root_filesystem, expected_type=type_hints["read_only_root_filesystem"])
|
|
7262
7344
|
check_type(argname="argument run_as_group", value=run_as_group, expected_type=type_hints["run_as_group"])
|
|
7263
7345
|
check_type(argname="argument run_as_non_root", value=run_as_non_root, expected_type=type_hints["run_as_non_root"])
|
|
7264
7346
|
check_type(argname="argument run_as_user", value=run_as_user, expected_type=type_hints["run_as_user"])
|
|
7265
7347
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
7348
|
+
if allow_privilege_escalation is not None:
|
|
7349
|
+
self._values["allow_privilege_escalation"] = allow_privilege_escalation
|
|
7266
7350
|
if privileged is not None:
|
|
7267
7351
|
self._values["privileged"] = privileged
|
|
7268
7352
|
if read_only_root_filesystem is not None:
|
|
@@ -7274,6 +7358,16 @@ class CfnJobDefinition(
|
|
|
7274
7358
|
if run_as_user is not None:
|
|
7275
7359
|
self._values["run_as_user"] = run_as_user
|
|
7276
7360
|
|
|
7361
|
+
@builtins.property
|
|
7362
|
+
def allow_privilege_escalation(
|
|
7363
|
+
self,
|
|
7364
|
+
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
7365
|
+
'''
|
|
7366
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-securitycontext.html#cfn-batch-jobdefinition-securitycontext-allowprivilegeescalation
|
|
7367
|
+
'''
|
|
7368
|
+
result = self._values.get("allow_privilege_escalation")
|
|
7369
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
7370
|
+
|
|
7277
7371
|
@builtins.property
|
|
7278
7372
|
def privileged(
|
|
7279
7373
|
self,
|
|
@@ -23118,6 +23212,13 @@ def _typecheckingstub__2bf55e035d36507c507c0ff620eda0a3096496a2cd5226656fc5e4af4
|
|
|
23118
23212
|
"""Type checking stubs"""
|
|
23119
23213
|
pass
|
|
23120
23214
|
|
|
23215
|
+
def _typecheckingstub__510e7e45fa5176303c62970a1bb0161e95eb0fcd2438671b35f8c5a3c506b95a(
|
|
23216
|
+
*,
|
|
23217
|
+
name: builtins.str,
|
|
23218
|
+
) -> None:
|
|
23219
|
+
"""Type checking stubs"""
|
|
23220
|
+
pass
|
|
23221
|
+
|
|
23121
23222
|
def _typecheckingstub__46c01503a14b135de04e03e8a183177fbaa4f728ed5853b4de848d62c1f248ae(
|
|
23122
23223
|
*,
|
|
23123
23224
|
devices: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnJobDefinition.DeviceProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
@@ -23186,6 +23287,7 @@ def _typecheckingstub__75127ae5a1697c34be5f24dcb69fa5c36a3498e1b2c284babc814c444
|
|
|
23186
23287
|
containers: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnJobDefinition.EksContainerProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
23187
23288
|
dns_policy: typing.Optional[builtins.str] = None,
|
|
23188
23289
|
host_network: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
23290
|
+
image_pull_secrets: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnJobDefinition.ImagePullSecretProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
23189
23291
|
init_containers: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnJobDefinition.EksContainerProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
23190
23292
|
metadata: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnJobDefinition.MetadataProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
23191
23293
|
service_account_name: typing.Optional[builtins.str] = None,
|
|
@@ -23244,6 +23346,7 @@ def _typecheckingstub__627c25c89399f4c648455cf23b1833f2f5961be5393bea72498980b6d
|
|
|
23244
23346
|
|
|
23245
23347
|
def _typecheckingstub__ecf4bfd8ece80e1bc3ee0536353fc145f3c5b08f62a604a53b62e7d2526f9d0e(
|
|
23246
23348
|
*,
|
|
23349
|
+
allow_privilege_escalation: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
23247
23350
|
privileged: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
23248
23351
|
read_only_root_filesystem: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
23249
23352
|
run_as_group: typing.Optional[jsii.Number] = None,
|