aws-cdk-lib 2.96.2__py3-none-any.whl → 2.97.1__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 +246 -62
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.96.2.jsii.tgz → aws-cdk-lib@2.97.1.jsii.tgz} +0 -0
- aws_cdk/aws_apigatewayv2/__init__.py +1 -1
- aws_cdk/aws_appflow/__init__.py +205 -7
- aws_cdk/aws_appstream/__init__.py +33 -28
- aws_cdk/aws_appsync/__init__.py +555 -71
- aws_cdk/aws_autoscaling/__init__.py +5 -11
- aws_cdk/aws_billingconductor/__init__.py +145 -1
- aws_cdk/aws_cleanrooms/__init__.py +1198 -86
- aws_cdk/aws_cloudformation/__init__.py +221 -55
- aws_cdk/aws_cloudwatch/__init__.py +325 -2
- aws_cdk/aws_cognito/__init__.py +9 -13
- aws_cdk/aws_config/__init__.py +68 -73
- aws_cdk/aws_connect/__init__.py +909 -164
- aws_cdk/aws_customerprofiles/__init__.py +44 -0
- aws_cdk/aws_dms/__init__.py +198 -0
- aws_cdk/aws_ec2/__init__.py +593 -73
- aws_cdk/aws_ecr/__init__.py +7 -2
- aws_cdk/aws_ecs/__init__.py +2 -2
- aws_cdk/aws_efs/__init__.py +237 -0
- aws_cdk/aws_emr/__init__.py +232 -0
- aws_cdk/aws_entityresolution/__init__.py +1702 -0
- aws_cdk/aws_events/__init__.py +13 -18
- aws_cdk/aws_fms/__init__.py +3 -3
- aws_cdk/aws_gamelift/__init__.py +10 -15
- aws_cdk/aws_grafana/__init__.py +9 -5
- aws_cdk/aws_guardduty/__init__.py +272 -205
- aws_cdk/aws_iam/__init__.py +20 -18
- aws_cdk/aws_iotwireless/__init__.py +38 -54
- aws_cdk/aws_lakeformation/__init__.py +18 -6
- aws_cdk/aws_lambda/__init__.py +1 -1
- aws_cdk/aws_lightsail/__init__.py +225 -0
- aws_cdk/aws_lookoutequipment/__init__.py +4 -4
- aws_cdk/aws_macie/__init__.py +5 -3
- aws_cdk/aws_mediapackagev2/__init__.py +3227 -0
- aws_cdk/aws_pcaconnectorad/__init__.py +6785 -0
- aws_cdk/aws_quicksight/__init__.py +189 -116
- aws_cdk/aws_rds/__init__.py +316 -9
- aws_cdk/aws_resiliencehub/__init__.py +38 -21
- aws_cdk/aws_route53resolver/__init__.py +429 -0
- aws_cdk/aws_sagemaker/__init__.py +34 -34
- aws_cdk/aws_stepfunctions/__init__.py +111 -14
- aws_cdk/aws_transfer/__init__.py +2 -2
- aws_cdk/aws_vpclattice/__init__.py +128 -120
- aws_cdk/aws_workspacesweb/__init__.py +3790 -0
- aws_cdk/region_info/__init__.py +49 -0
- {aws_cdk_lib-2.96.2.dist-info → aws_cdk_lib-2.97.1.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.96.2.dist-info → aws_cdk_lib-2.97.1.dist-info}/RECORD +53 -49
- {aws_cdk_lib-2.96.2.dist-info → aws_cdk_lib-2.97.1.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.96.2.dist-info → aws_cdk_lib-2.97.1.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.96.2.dist-info → aws_cdk_lib-2.97.1.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.96.2.dist-info → aws_cdk_lib-2.97.1.dist-info}/top_level.txt +0 -0
|
@@ -1458,6 +1458,12 @@ class CfnContainer(
|
|
|
1458
1458
|
)
|
|
1459
1459
|
),
|
|
1460
1460
|
is_disabled=False,
|
|
1461
|
+
private_registry_access=lightsail.CfnContainer.PrivateRegistryAccessProperty(
|
|
1462
|
+
ecr_image_puller_role=lightsail.CfnContainer.EcrImagePullerRoleProperty(
|
|
1463
|
+
is_active=False,
|
|
1464
|
+
principal_arn="principalArn"
|
|
1465
|
+
)
|
|
1466
|
+
),
|
|
1461
1467
|
public_domain_names=[lightsail.CfnContainer.PublicDomainNameProperty(
|
|
1462
1468
|
certificate_name="certificateName",
|
|
1463
1469
|
domain_names=["domainNames"]
|
|
@@ -1479,6 +1485,7 @@ class CfnContainer(
|
|
|
1479
1485
|
service_name: builtins.str,
|
|
1480
1486
|
container_service_deployment: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnContainer.ContainerServiceDeploymentProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1481
1487
|
is_disabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
1488
|
+
private_registry_access: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnContainer.PrivateRegistryAccessProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1482
1489
|
public_domain_names: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnContainer.PublicDomainNameProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1483
1490
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1484
1491
|
) -> None:
|
|
@@ -1490,6 +1497,7 @@ class CfnContainer(
|
|
|
1490
1497
|
:param service_name: The name of the container service.
|
|
1491
1498
|
:param container_service_deployment: An object that describes the current container deployment of the container service.
|
|
1492
1499
|
:param is_disabled: A Boolean value indicating whether the container service is disabled.
|
|
1500
|
+
:param private_registry_access: An object to describe the configuration for the container service to access private container image repositories, such as Amazon Elastic Container Registry (Amazon ECR) private repositories.
|
|
1493
1501
|
:param public_domain_names: The public domain name of the container service, such as ``example.com`` and ``www.example.com`` . You can specify up to four public domain names for a container service. The domain names that you specify are used when you create a deployment with a container that is configured as the public endpoint of your container service. If you don't specify public domain names, then you can use the default domain of the container service. .. epigraph:: You must create and validate an SSL/TLS certificate before you can use public domain names with your container service. Use the `AWS::Lightsail::Certificate <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lightsail-certificate.html>`_ resource to create a certificate for the public domain names that you want to use with your container service.
|
|
1494
1502
|
:param tags: An array of key-value pairs to apply to this resource. For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ in the *AWS CloudFormation User Guide* . .. epigraph:: The ``Value`` of ``Tags`` is optional for Lightsail resources.
|
|
1495
1503
|
'''
|
|
@@ -1503,6 +1511,7 @@ class CfnContainer(
|
|
|
1503
1511
|
service_name=service_name,
|
|
1504
1512
|
container_service_deployment=container_service_deployment,
|
|
1505
1513
|
is_disabled=is_disabled,
|
|
1514
|
+
private_registry_access=private_registry_access,
|
|
1506
1515
|
public_domain_names=public_domain_names,
|
|
1507
1516
|
tags=tags,
|
|
1508
1517
|
)
|
|
@@ -1548,6 +1557,26 @@ class CfnContainer(
|
|
|
1548
1557
|
'''
|
|
1549
1558
|
return typing.cast(builtins.str, jsii.get(self, "attrContainerArn"))
|
|
1550
1559
|
|
|
1560
|
+
@builtins.property
|
|
1561
|
+
@jsii.member(jsii_name="attrPrincipalArn")
|
|
1562
|
+
def attr_principal_arn(self) -> builtins.str:
|
|
1563
|
+
'''The principal ARN of the container service.
|
|
1564
|
+
|
|
1565
|
+
:cloudformationAttribute: PrincipalArn
|
|
1566
|
+
'''
|
|
1567
|
+
return typing.cast(builtins.str, jsii.get(self, "attrPrincipalArn"))
|
|
1568
|
+
|
|
1569
|
+
@builtins.property
|
|
1570
|
+
@jsii.member(jsii_name="attrPrivateRegistryAccessEcrImagePullerRolePrincipalArn")
|
|
1571
|
+
def attr_private_registry_access_ecr_image_puller_role_principal_arn(
|
|
1572
|
+
self,
|
|
1573
|
+
) -> builtins.str:
|
|
1574
|
+
'''The Amazon Resource Name (ARN) of the role, if it is activated.
|
|
1575
|
+
|
|
1576
|
+
:cloudformationAttribute: PrivateRegistryAccess.EcrImagePullerRole.PrincipalArn
|
|
1577
|
+
'''
|
|
1578
|
+
return typing.cast(builtins.str, jsii.get(self, "attrPrivateRegistryAccessEcrImagePullerRolePrincipalArn"))
|
|
1579
|
+
|
|
1551
1580
|
@builtins.property
|
|
1552
1581
|
@jsii.member(jsii_name="attrUrl")
|
|
1553
1582
|
def attr_url(self) -> builtins.str:
|
|
@@ -1645,6 +1674,24 @@ class CfnContainer(
|
|
|
1645
1674
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1646
1675
|
jsii.set(self, "isDisabled", value)
|
|
1647
1676
|
|
|
1677
|
+
@builtins.property
|
|
1678
|
+
@jsii.member(jsii_name="privateRegistryAccess")
|
|
1679
|
+
def private_registry_access(
|
|
1680
|
+
self,
|
|
1681
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnContainer.PrivateRegistryAccessProperty"]]:
|
|
1682
|
+
'''An object to describe the configuration for the container service to access private container image repositories, such as Amazon Elastic Container Registry (Amazon ECR) private repositories.'''
|
|
1683
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnContainer.PrivateRegistryAccessProperty"]], jsii.get(self, "privateRegistryAccess"))
|
|
1684
|
+
|
|
1685
|
+
@private_registry_access.setter
|
|
1686
|
+
def private_registry_access(
|
|
1687
|
+
self,
|
|
1688
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnContainer.PrivateRegistryAccessProperty"]],
|
|
1689
|
+
) -> None:
|
|
1690
|
+
if __debug__:
|
|
1691
|
+
type_hints = typing.get_type_hints(_typecheckingstub__0c8f23478268198f6150b0633220a6dd883cc13c21830872cee9bf2a65a6acfa)
|
|
1692
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1693
|
+
jsii.set(self, "privateRegistryAccess", value)
|
|
1694
|
+
|
|
1648
1695
|
@builtins.property
|
|
1649
1696
|
@jsii.member(jsii_name="publicDomainNames")
|
|
1650
1697
|
def public_domain_names(
|
|
@@ -1910,6 +1957,78 @@ class CfnContainer(
|
|
|
1910
1957
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
1911
1958
|
)
|
|
1912
1959
|
|
|
1960
|
+
@jsii.data_type(
|
|
1961
|
+
jsii_type="aws-cdk-lib.aws_lightsail.CfnContainer.EcrImagePullerRoleProperty",
|
|
1962
|
+
jsii_struct_bases=[],
|
|
1963
|
+
name_mapping={"is_active": "isActive", "principal_arn": "principalArn"},
|
|
1964
|
+
)
|
|
1965
|
+
class EcrImagePullerRoleProperty:
|
|
1966
|
+
def __init__(
|
|
1967
|
+
self,
|
|
1968
|
+
*,
|
|
1969
|
+
is_active: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
1970
|
+
principal_arn: typing.Optional[builtins.str] = None,
|
|
1971
|
+
) -> None:
|
|
1972
|
+
'''An object to describe a request to activate or deactivate the role that you can use to grant an Amazon Lightsail container service access to Amazon Elastic Container Registry (Amazon ECR) private repositories.
|
|
1973
|
+
|
|
1974
|
+
:param is_active: A Boolean value that indicates whether to activate the role.
|
|
1975
|
+
:param principal_arn: The Amazon Resource Name (ARN) of the role, if it is activated.
|
|
1976
|
+
|
|
1977
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lightsail-container-ecrimagepullerrole.html
|
|
1978
|
+
:exampleMetadata: fixture=_generated
|
|
1979
|
+
|
|
1980
|
+
Example::
|
|
1981
|
+
|
|
1982
|
+
# The code below shows an example of how to instantiate this type.
|
|
1983
|
+
# The values are placeholders you should change.
|
|
1984
|
+
from aws_cdk import aws_lightsail as lightsail
|
|
1985
|
+
|
|
1986
|
+
ecr_image_puller_role_property = lightsail.CfnContainer.EcrImagePullerRoleProperty(
|
|
1987
|
+
is_active=False,
|
|
1988
|
+
principal_arn="principalArn"
|
|
1989
|
+
)
|
|
1990
|
+
'''
|
|
1991
|
+
if __debug__:
|
|
1992
|
+
type_hints = typing.get_type_hints(_typecheckingstub__051beb3a8e49d9c6565e720ddecef7fbe38e1f34a8cadad339a44cd232e7a8c0)
|
|
1993
|
+
check_type(argname="argument is_active", value=is_active, expected_type=type_hints["is_active"])
|
|
1994
|
+
check_type(argname="argument principal_arn", value=principal_arn, expected_type=type_hints["principal_arn"])
|
|
1995
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
1996
|
+
if is_active is not None:
|
|
1997
|
+
self._values["is_active"] = is_active
|
|
1998
|
+
if principal_arn is not None:
|
|
1999
|
+
self._values["principal_arn"] = principal_arn
|
|
2000
|
+
|
|
2001
|
+
@builtins.property
|
|
2002
|
+
def is_active(
|
|
2003
|
+
self,
|
|
2004
|
+
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
2005
|
+
'''A Boolean value that indicates whether to activate the role.
|
|
2006
|
+
|
|
2007
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lightsail-container-ecrimagepullerrole.html#cfn-lightsail-container-ecrimagepullerrole-isactive
|
|
2008
|
+
'''
|
|
2009
|
+
result = self._values.get("is_active")
|
|
2010
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
2011
|
+
|
|
2012
|
+
@builtins.property
|
|
2013
|
+
def principal_arn(self) -> typing.Optional[builtins.str]:
|
|
2014
|
+
'''The Amazon Resource Name (ARN) of the role, if it is activated.
|
|
2015
|
+
|
|
2016
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lightsail-container-ecrimagepullerrole.html#cfn-lightsail-container-ecrimagepullerrole-principalarn
|
|
2017
|
+
'''
|
|
2018
|
+
result = self._values.get("principal_arn")
|
|
2019
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
2020
|
+
|
|
2021
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
2022
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
2023
|
+
|
|
2024
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
2025
|
+
return not (rhs == self)
|
|
2026
|
+
|
|
2027
|
+
def __repr__(self) -> str:
|
|
2028
|
+
return "EcrImagePullerRoleProperty(%s)" % ", ".join(
|
|
2029
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
2030
|
+
)
|
|
2031
|
+
|
|
1913
2032
|
@jsii.data_type(
|
|
1914
2033
|
jsii_type="aws-cdk-lib.aws_lightsail.CfnContainer.EnvironmentVariableProperty",
|
|
1915
2034
|
jsii_struct_bases=[],
|
|
@@ -2201,6 +2320,66 @@ class CfnContainer(
|
|
|
2201
2320
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
2202
2321
|
)
|
|
2203
2322
|
|
|
2323
|
+
@jsii.data_type(
|
|
2324
|
+
jsii_type="aws-cdk-lib.aws_lightsail.CfnContainer.PrivateRegistryAccessProperty",
|
|
2325
|
+
jsii_struct_bases=[],
|
|
2326
|
+
name_mapping={"ecr_image_puller_role": "ecrImagePullerRole"},
|
|
2327
|
+
)
|
|
2328
|
+
class PrivateRegistryAccessProperty:
|
|
2329
|
+
def __init__(
|
|
2330
|
+
self,
|
|
2331
|
+
*,
|
|
2332
|
+
ecr_image_puller_role: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnContainer.EcrImagePullerRoleProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2333
|
+
) -> None:
|
|
2334
|
+
'''An object to describe the configuration for the container service to access private container image repositories, such as Amazon Elastic Container Registry (Amazon ECR) private repositories.
|
|
2335
|
+
|
|
2336
|
+
:param ecr_image_puller_role: An object to describe a request to activate or deactivate the role that you can use to grant an Amazon Lightsail container service access to Amazon Elastic Container Registry (Amazon ECR) private repositories.
|
|
2337
|
+
|
|
2338
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lightsail-container-privateregistryaccess.html
|
|
2339
|
+
:exampleMetadata: fixture=_generated
|
|
2340
|
+
|
|
2341
|
+
Example::
|
|
2342
|
+
|
|
2343
|
+
# The code below shows an example of how to instantiate this type.
|
|
2344
|
+
# The values are placeholders you should change.
|
|
2345
|
+
from aws_cdk import aws_lightsail as lightsail
|
|
2346
|
+
|
|
2347
|
+
private_registry_access_property = lightsail.CfnContainer.PrivateRegistryAccessProperty(
|
|
2348
|
+
ecr_image_puller_role=lightsail.CfnContainer.EcrImagePullerRoleProperty(
|
|
2349
|
+
is_active=False,
|
|
2350
|
+
principal_arn="principalArn"
|
|
2351
|
+
)
|
|
2352
|
+
)
|
|
2353
|
+
'''
|
|
2354
|
+
if __debug__:
|
|
2355
|
+
type_hints = typing.get_type_hints(_typecheckingstub__28cec406d940d30c9d14ae4628bb6de303125e69071e6a46394695ad70df5036)
|
|
2356
|
+
check_type(argname="argument ecr_image_puller_role", value=ecr_image_puller_role, expected_type=type_hints["ecr_image_puller_role"])
|
|
2357
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
2358
|
+
if ecr_image_puller_role is not None:
|
|
2359
|
+
self._values["ecr_image_puller_role"] = ecr_image_puller_role
|
|
2360
|
+
|
|
2361
|
+
@builtins.property
|
|
2362
|
+
def ecr_image_puller_role(
|
|
2363
|
+
self,
|
|
2364
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnContainer.EcrImagePullerRoleProperty"]]:
|
|
2365
|
+
'''An object to describe a request to activate or deactivate the role that you can use to grant an Amazon Lightsail container service access to Amazon Elastic Container Registry (Amazon ECR) private repositories.
|
|
2366
|
+
|
|
2367
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lightsail-container-privateregistryaccess.html#cfn-lightsail-container-privateregistryaccess-ecrimagepullerrole
|
|
2368
|
+
'''
|
|
2369
|
+
result = self._values.get("ecr_image_puller_role")
|
|
2370
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnContainer.EcrImagePullerRoleProperty"]], result)
|
|
2371
|
+
|
|
2372
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
2373
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
2374
|
+
|
|
2375
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
2376
|
+
return not (rhs == self)
|
|
2377
|
+
|
|
2378
|
+
def __repr__(self) -> str:
|
|
2379
|
+
return "PrivateRegistryAccessProperty(%s)" % ", ".join(
|
|
2380
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
2381
|
+
)
|
|
2382
|
+
|
|
2204
2383
|
@jsii.data_type(
|
|
2205
2384
|
jsii_type="aws-cdk-lib.aws_lightsail.CfnContainer.PublicDomainNameProperty",
|
|
2206
2385
|
jsii_struct_bases=[],
|
|
@@ -2382,6 +2561,7 @@ class CfnContainer(
|
|
|
2382
2561
|
"service_name": "serviceName",
|
|
2383
2562
|
"container_service_deployment": "containerServiceDeployment",
|
|
2384
2563
|
"is_disabled": "isDisabled",
|
|
2564
|
+
"private_registry_access": "privateRegistryAccess",
|
|
2385
2565
|
"public_domain_names": "publicDomainNames",
|
|
2386
2566
|
"tags": "tags",
|
|
2387
2567
|
},
|
|
@@ -2395,6 +2575,7 @@ class CfnContainerProps:
|
|
|
2395
2575
|
service_name: builtins.str,
|
|
2396
2576
|
container_service_deployment: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnContainer.ContainerServiceDeploymentProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2397
2577
|
is_disabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
2578
|
+
private_registry_access: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnContainer.PrivateRegistryAccessProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2398
2579
|
public_domain_names: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnContainer.PublicDomainNameProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
2399
2580
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2400
2581
|
) -> None:
|
|
@@ -2405,6 +2586,7 @@ class CfnContainerProps:
|
|
|
2405
2586
|
:param service_name: The name of the container service.
|
|
2406
2587
|
:param container_service_deployment: An object that describes the current container deployment of the container service.
|
|
2407
2588
|
:param is_disabled: A Boolean value indicating whether the container service is disabled.
|
|
2589
|
+
:param private_registry_access: An object to describe the configuration for the container service to access private container image repositories, such as Amazon Elastic Container Registry (Amazon ECR) private repositories.
|
|
2408
2590
|
:param public_domain_names: The public domain name of the container service, such as ``example.com`` and ``www.example.com`` . You can specify up to four public domain names for a container service. The domain names that you specify are used when you create a deployment with a container that is configured as the public endpoint of your container service. If you don't specify public domain names, then you can use the default domain of the container service. .. epigraph:: You must create and validate an SSL/TLS certificate before you can use public domain names with your container service. Use the `AWS::Lightsail::Certificate <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lightsail-certificate.html>`_ resource to create a certificate for the public domain names that you want to use with your container service.
|
|
2409
2591
|
:param tags: An array of key-value pairs to apply to this resource. For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ in the *AWS CloudFormation User Guide* . .. epigraph:: The ``Value`` of ``Tags`` is optional for Lightsail resources.
|
|
2410
2592
|
|
|
@@ -2451,6 +2633,12 @@ class CfnContainerProps:
|
|
|
2451
2633
|
)
|
|
2452
2634
|
),
|
|
2453
2635
|
is_disabled=False,
|
|
2636
|
+
private_registry_access=lightsail.CfnContainer.PrivateRegistryAccessProperty(
|
|
2637
|
+
ecr_image_puller_role=lightsail.CfnContainer.EcrImagePullerRoleProperty(
|
|
2638
|
+
is_active=False,
|
|
2639
|
+
principal_arn="principalArn"
|
|
2640
|
+
)
|
|
2641
|
+
),
|
|
2454
2642
|
public_domain_names=[lightsail.CfnContainer.PublicDomainNameProperty(
|
|
2455
2643
|
certificate_name="certificateName",
|
|
2456
2644
|
domain_names=["domainNames"]
|
|
@@ -2468,6 +2656,7 @@ class CfnContainerProps:
|
|
|
2468
2656
|
check_type(argname="argument service_name", value=service_name, expected_type=type_hints["service_name"])
|
|
2469
2657
|
check_type(argname="argument container_service_deployment", value=container_service_deployment, expected_type=type_hints["container_service_deployment"])
|
|
2470
2658
|
check_type(argname="argument is_disabled", value=is_disabled, expected_type=type_hints["is_disabled"])
|
|
2659
|
+
check_type(argname="argument private_registry_access", value=private_registry_access, expected_type=type_hints["private_registry_access"])
|
|
2471
2660
|
check_type(argname="argument public_domain_names", value=public_domain_names, expected_type=type_hints["public_domain_names"])
|
|
2472
2661
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
2473
2662
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
@@ -2479,6 +2668,8 @@ class CfnContainerProps:
|
|
|
2479
2668
|
self._values["container_service_deployment"] = container_service_deployment
|
|
2480
2669
|
if is_disabled is not None:
|
|
2481
2670
|
self._values["is_disabled"] = is_disabled
|
|
2671
|
+
if private_registry_access is not None:
|
|
2672
|
+
self._values["private_registry_access"] = private_registry_access
|
|
2482
2673
|
if public_domain_names is not None:
|
|
2483
2674
|
self._values["public_domain_names"] = public_domain_names
|
|
2484
2675
|
if tags is not None:
|
|
@@ -2540,6 +2731,17 @@ class CfnContainerProps:
|
|
|
2540
2731
|
result = self._values.get("is_disabled")
|
|
2541
2732
|
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
2542
2733
|
|
|
2734
|
+
@builtins.property
|
|
2735
|
+
def private_registry_access(
|
|
2736
|
+
self,
|
|
2737
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnContainer.PrivateRegistryAccessProperty]]:
|
|
2738
|
+
'''An object to describe the configuration for the container service to access private container image repositories, such as Amazon Elastic Container Registry (Amazon ECR) private repositories.
|
|
2739
|
+
|
|
2740
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lightsail-container.html#cfn-lightsail-container-privateregistryaccess
|
|
2741
|
+
'''
|
|
2742
|
+
result = self._values.get("private_registry_access")
|
|
2743
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnContainer.PrivateRegistryAccessProperty]], result)
|
|
2744
|
+
|
|
2543
2745
|
@builtins.property
|
|
2544
2746
|
def public_domain_names(
|
|
2545
2747
|
self,
|
|
@@ -8675,6 +8877,7 @@ def _typecheckingstub__94bac8a5de27a74603b05e36d9c72422cb8c35ec6940b2bcc87094fd2
|
|
|
8675
8877
|
service_name: builtins.str,
|
|
8676
8878
|
container_service_deployment: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnContainer.ContainerServiceDeploymentProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
8677
8879
|
is_disabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
8880
|
+
private_registry_access: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnContainer.PrivateRegistryAccessProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
8678
8881
|
public_domain_names: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnContainer.PublicDomainNameProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
8679
8882
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
8680
8883
|
) -> None:
|
|
@@ -8723,6 +8926,12 @@ def _typecheckingstub__a52d8c870a181dac72ac9809ac930672df1d327079dcac65e47b7e2aa
|
|
|
8723
8926
|
"""Type checking stubs"""
|
|
8724
8927
|
pass
|
|
8725
8928
|
|
|
8929
|
+
def _typecheckingstub__0c8f23478268198f6150b0633220a6dd883cc13c21830872cee9bf2a65a6acfa(
|
|
8930
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnContainer.PrivateRegistryAccessProperty]],
|
|
8931
|
+
) -> None:
|
|
8932
|
+
"""Type checking stubs"""
|
|
8933
|
+
pass
|
|
8934
|
+
|
|
8726
8935
|
def _typecheckingstub__fa200bad90bddaf505b39b733612869b17dd2e87cd1aaa81d1cfedde46e1bb8e(
|
|
8727
8936
|
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnContainer.PublicDomainNameProperty]]]],
|
|
8728
8937
|
) -> None:
|
|
@@ -8754,6 +8963,14 @@ def _typecheckingstub__361b481c01847aedbb1dab6f7a2b940c6da922f6af27593f14d67b228
|
|
|
8754
8963
|
"""Type checking stubs"""
|
|
8755
8964
|
pass
|
|
8756
8965
|
|
|
8966
|
+
def _typecheckingstub__051beb3a8e49d9c6565e720ddecef7fbe38e1f34a8cadad339a44cd232e7a8c0(
|
|
8967
|
+
*,
|
|
8968
|
+
is_active: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
8969
|
+
principal_arn: typing.Optional[builtins.str] = None,
|
|
8970
|
+
) -> None:
|
|
8971
|
+
"""Type checking stubs"""
|
|
8972
|
+
pass
|
|
8973
|
+
|
|
8757
8974
|
def _typecheckingstub__c0a31811b7a56ea2f4b026dbd07da448a9b8998283ff6d18707ad7fb4b594494(
|
|
8758
8975
|
*,
|
|
8759
8976
|
value: typing.Optional[builtins.str] = None,
|
|
@@ -8782,6 +8999,13 @@ def _typecheckingstub__2957cb3f17880ab79f0061a8100d03ac1b612e1511f4a371be09517cb
|
|
|
8782
8999
|
"""Type checking stubs"""
|
|
8783
9000
|
pass
|
|
8784
9001
|
|
|
9002
|
+
def _typecheckingstub__28cec406d940d30c9d14ae4628bb6de303125e69071e6a46394695ad70df5036(
|
|
9003
|
+
*,
|
|
9004
|
+
ecr_image_puller_role: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnContainer.EcrImagePullerRoleProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
9005
|
+
) -> None:
|
|
9006
|
+
"""Type checking stubs"""
|
|
9007
|
+
pass
|
|
9008
|
+
|
|
8785
9009
|
def _typecheckingstub__6d9c472b649d2e9119b005aacad2dbe93a008b5ae90f7dafffb84c714e14e831(
|
|
8786
9010
|
*,
|
|
8787
9011
|
certificate_name: typing.Optional[builtins.str] = None,
|
|
@@ -8806,6 +9030,7 @@ def _typecheckingstub__97ba65c009b99fbaa7ef08e0bf85a260e5a557dc34e2894b5cbb3a6a6
|
|
|
8806
9030
|
service_name: builtins.str,
|
|
8807
9031
|
container_service_deployment: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnContainer.ContainerServiceDeploymentProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
8808
9032
|
is_disabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
9033
|
+
private_registry_access: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnContainer.PrivateRegistryAccessProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
8809
9034
|
public_domain_names: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnContainer.PublicDomainNameProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
8810
9035
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
8811
9036
|
) -> None:
|
|
@@ -115,7 +115,7 @@ class CfnInferenceScheduler(
|
|
|
115
115
|
:param data_input_configuration: Specifies configuration information for the input data for the inference scheduler, including delimiter, format, and dataset location.
|
|
116
116
|
:param data_output_configuration: Specifies configuration information for the output results for the inference scheduler, including the Amazon S3 location for the output.
|
|
117
117
|
:param data_upload_frequency: How often data is uploaded to the source S3 bucket for the input data. This value is the length of time between data uploads. For instance, if you select 5 minutes, Amazon Lookout for Equipment will upload the real-time data to the source bucket once every 5 minutes. This frequency also determines how often Amazon Lookout for Equipment starts a scheduled inference on your data. In this example, it starts once every 5 minutes.
|
|
118
|
-
:param model_name: The name of the
|
|
118
|
+
:param model_name: The name of the machine learning model used for the inference scheduler.
|
|
119
119
|
:param role_arn: The Amazon Resource Name (ARN) of a role with permission to access the data source being used for the inference.
|
|
120
120
|
:param data_delay_offset_in_minutes: A period of time (in minutes) by which inference on the data is delayed after the data starts. For instance, if an offset delay time of five minutes was selected, inference will not begin on the data until the first data measurement after the five minute mark. For example, if five minutes is selected, the inference scheduler will wake up at the configured frequency with the additional five minute delay time to check the customer S3 bucket. The customer can upload data at the same frequency and they don't need to stop and restart the scheduler when uploading new data.
|
|
121
121
|
:param inference_scheduler_name: The name of the inference scheduler.
|
|
@@ -232,7 +232,7 @@ class CfnInferenceScheduler(
|
|
|
232
232
|
@builtins.property
|
|
233
233
|
@jsii.member(jsii_name="modelName")
|
|
234
234
|
def model_name(self) -> builtins.str:
|
|
235
|
-
'''The name of the
|
|
235
|
+
'''The name of the machine learning model used for the inference scheduler.'''
|
|
236
236
|
return typing.cast(builtins.str, jsii.get(self, "modelName"))
|
|
237
237
|
|
|
238
238
|
@model_name.setter
|
|
@@ -744,7 +744,7 @@ class CfnInferenceSchedulerProps:
|
|
|
744
744
|
:param data_input_configuration: Specifies configuration information for the input data for the inference scheduler, including delimiter, format, and dataset location.
|
|
745
745
|
:param data_output_configuration: Specifies configuration information for the output results for the inference scheduler, including the Amazon S3 location for the output.
|
|
746
746
|
:param data_upload_frequency: How often data is uploaded to the source S3 bucket for the input data. This value is the length of time between data uploads. For instance, if you select 5 minutes, Amazon Lookout for Equipment will upload the real-time data to the source bucket once every 5 minutes. This frequency also determines how often Amazon Lookout for Equipment starts a scheduled inference on your data. In this example, it starts once every 5 minutes.
|
|
747
|
-
:param model_name: The name of the
|
|
747
|
+
:param model_name: The name of the machine learning model used for the inference scheduler.
|
|
748
748
|
:param role_arn: The Amazon Resource Name (ARN) of a role with permission to access the data source being used for the inference.
|
|
749
749
|
:param data_delay_offset_in_minutes: A period of time (in minutes) by which inference on the data is delayed after the data starts. For instance, if an offset delay time of five minutes was selected, inference will not begin on the data until the first data measurement after the five minute mark. For example, if five minutes is selected, the inference scheduler will wake up at the configured frequency with the additional five minute delay time to check the customer S3 bucket. The customer can upload data at the same frequency and they don't need to stop and restart the scheduler when uploading new data.
|
|
750
750
|
:param inference_scheduler_name: The name of the inference scheduler.
|
|
@@ -841,7 +841,7 @@ class CfnInferenceSchedulerProps:
|
|
|
841
841
|
|
|
842
842
|
@builtins.property
|
|
843
843
|
def model_name(self) -> builtins.str:
|
|
844
|
-
'''The name of the
|
|
844
|
+
'''The name of the machine learning model used for the inference scheduler.
|
|
845
845
|
|
|
846
846
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lookoutequipment-inferencescheduler.html#cfn-lookoutequipment-inferencescheduler-modelname
|
|
847
847
|
'''
|
aws_cdk/aws_macie/__init__.py
CHANGED
|
@@ -998,7 +998,7 @@ class CfnFindingsFilter(
|
|
|
998
998
|
:param action: The action to perform on findings that match the filter criteria ( ``FindingCriteria`` ). Valid values are:. - ``ARCHIVE`` - Suppress (automatically archive) the findings. - ``NOOP`` - Don't perform any action on the findings.
|
|
999
999
|
:param description: A custom description of the findings filter. The description can contain 1-512 characters. Avoid including sensitive data in the description. Users of the account might be able to see the description, depending on the actions that they're allowed to perform in Amazon Macie .
|
|
1000
1000
|
:param position: The position of the findings filter in the list of saved filters on the Amazon Macie console. This value also determines the order in which the filter is applied to findings, relative to other filters that are also applied to findings.
|
|
1001
|
-
:param tags:
|
|
1001
|
+
:param tags: A collection of tags associated with a resource.
|
|
1002
1002
|
'''
|
|
1003
1003
|
if __debug__:
|
|
1004
1004
|
type_hints = typing.get_type_hints(_typecheckingstub__11b08ade332eec06142e65a0667c3f977a9418dbb1685fc4d53acba74840039e)
|
|
@@ -1158,6 +1158,7 @@ class CfnFindingsFilter(
|
|
|
1158
1158
|
@builtins.property
|
|
1159
1159
|
@jsii.member(jsii_name="tags")
|
|
1160
1160
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
1161
|
+
'''A collection of tags associated with a resource.'''
|
|
1161
1162
|
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
|
|
1162
1163
|
|
|
1163
1164
|
@tags.setter
|
|
@@ -1476,7 +1477,7 @@ class CfnFindingsFilterProps:
|
|
|
1476
1477
|
:param action: The action to perform on findings that match the filter criteria ( ``FindingCriteria`` ). Valid values are:. - ``ARCHIVE`` - Suppress (automatically archive) the findings. - ``NOOP`` - Don't perform any action on the findings.
|
|
1477
1478
|
:param description: A custom description of the findings filter. The description can contain 1-512 characters. Avoid including sensitive data in the description. Users of the account might be able to see the description, depending on the actions that they're allowed to perform in Amazon Macie .
|
|
1478
1479
|
:param position: The position of the findings filter in the list of saved filters on the Amazon Macie console. This value also determines the order in which the filter is applied to findings, relative to other filters that are also applied to findings.
|
|
1479
|
-
:param tags:
|
|
1480
|
+
:param tags: A collection of tags associated with a resource.
|
|
1480
1481
|
|
|
1481
1482
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html
|
|
1482
1483
|
:exampleMetadata: fixture=_generated
|
|
@@ -1593,7 +1594,8 @@ class CfnFindingsFilterProps:
|
|
|
1593
1594
|
|
|
1594
1595
|
@builtins.property
|
|
1595
1596
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
1596
|
-
'''
|
|
1597
|
+
'''A collection of tags associated with a resource.
|
|
1598
|
+
|
|
1597
1599
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html#cfn-macie-findingsfilter-tags
|
|
1598
1600
|
'''
|
|
1599
1601
|
result = self._values.get("tags")
|