aws-cdk-lib 2.195.0__py3-none-any.whl → 2.196.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 +433 -20
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.195.0.jsii.tgz → aws-cdk-lib@2.196.1.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +1 -1
- aws_cdk/aws_amazonmq/__init__.py +2 -2
- aws_cdk/aws_apigateway/__init__.py +148 -69
- aws_cdk/aws_apigatewayv2/__init__.py +155 -24
- aws_cdk/aws_appconfig/__init__.py +24 -0
- aws_cdk/aws_applicationautoscaling/__init__.py +6 -0
- aws_cdk/aws_appmesh/__init__.py +42 -0
- aws_cdk/aws_appsync/__init__.py +92 -20
- aws_cdk/aws_autoscaling/__init__.py +24 -0
- aws_cdk/aws_backup/__init__.py +53 -14
- aws_cdk/aws_batch/__init__.py +72 -0
- aws_cdk/aws_bedrock/__init__.py +620 -14
- aws_cdk/aws_budgets/__init__.py +569 -0
- aws_cdk/aws_certificatemanager/__init__.py +21 -0
- aws_cdk/aws_chatbot/__init__.py +6 -0
- aws_cdk/aws_cloudfront/__init__.py +87 -0
- aws_cdk/aws_cloudfront/experimental/__init__.py +6 -0
- aws_cdk/aws_cloudtrail/__init__.py +6 -0
- aws_cdk/aws_cloudwatch/__init__.py +18 -0
- aws_cdk/aws_cloudwatch_actions/__init__.py +75 -1
- aws_cdk/aws_codebuild/__init__.py +48 -0
- aws_cdk/aws_codecommit/__init__.py +6 -0
- aws_cdk/aws_codedeploy/__init__.py +63 -0
- aws_cdk/aws_codeguruprofiler/__init__.py +6 -0
- aws_cdk/aws_codepipeline/__init__.py +6 -0
- aws_cdk/aws_codepipeline_actions/__init__.py +4 -4
- aws_cdk/aws_codestarnotifications/__init__.py +6 -0
- aws_cdk/aws_cognito/__init__.py +91 -12
- aws_cdk/aws_cognito_identitypool/__init__.py +6 -0
- aws_cdk/aws_config/__init__.py +36 -0
- aws_cdk/aws_datazone/__init__.py +557 -14
- aws_cdk/aws_docdb/__init__.py +27 -3
- aws_cdk/aws_dsql/__init__.py +21 -13
- aws_cdk/aws_dynamodb/__init__.py +20 -8
- aws_cdk/aws_ec2/__init__.py +282 -21
- aws_cdk/aws_ecr/__init__.py +6 -0
- aws_cdk/aws_ecr_assets/__init__.py +6 -0
- aws_cdk/aws_ecs/__init__.py +112 -19
- aws_cdk/aws_ecs_patterns/__init__.py +58 -0
- aws_cdk/aws_efs/__init__.py +12 -0
- aws_cdk/aws_eks/__init__.py +42 -0
- aws_cdk/aws_elasticloadbalancing/__init__.py +6 -0
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +112 -9
- aws_cdk/aws_elasticsearch/__init__.py +9 -0
- aws_cdk/aws_events/__init__.py +36 -0
- aws_cdk/aws_events_targets/__init__.py +10 -10
- aws_cdk/aws_fsx/__init__.py +6 -0
- aws_cdk/aws_globalaccelerator/__init__.py +18 -0
- aws_cdk/aws_iam/__init__.py +66 -0
- aws_cdk/aws_imagebuilder/__init__.py +21 -16
- aws_cdk/aws_inspector/__init__.py +6 -0
- aws_cdk/aws_kinesis/__init__.py +19 -1
- aws_cdk/aws_kinesisanalytics/__init__.py +9 -11
- aws_cdk/aws_kinesisanalyticsv2/__init__.py +9 -11
- aws_cdk/aws_kinesisfirehose/__init__.py +6 -0
- aws_cdk/aws_kms/__init__.py +16 -4
- aws_cdk/aws_lambda/__init__.py +76 -6
- aws_cdk/aws_logs/__init__.py +155 -12
- aws_cdk/aws_opensearchservice/__init__.py +6 -0
- aws_cdk/aws_quicksight/__init__.py +22 -22
- aws_cdk/aws_rds/__init__.py +306 -30
- aws_cdk/aws_redshiftserverless/__init__.py +7 -7
- aws_cdk/aws_route53/__init__.py +723 -25
- aws_cdk/aws_s3/__init__.py +37 -10
- aws_cdk/aws_s3_deployment/__init__.py +6 -0
- aws_cdk/aws_sagemaker/__init__.py +199 -4
- aws_cdk/aws_scheduler/__init__.py +12 -0
- aws_cdk/aws_secretsmanager/__init__.py +24 -0
- aws_cdk/aws_servicecatalog/__init__.py +24 -0
- aws_cdk/aws_servicediscovery/__init__.py +48 -0
- aws_cdk/aws_ses/__init__.py +133 -33
- aws_cdk/aws_signer/__init__.py +6 -0
- aws_cdk/aws_sns/__init__.py +18 -0
- aws_cdk/aws_sns_subscriptions/__init__.py +6 -0
- aws_cdk/aws_sqs/__init__.py +12 -0
- aws_cdk/aws_ssm/__init__.py +12 -0
- aws_cdk/aws_ssmcontacts/__init__.py +53 -2
- aws_cdk/aws_ssmguiconnect/__init__.py +7 -7
- aws_cdk/aws_stepfunctions/__init__.py +153 -7
- aws_cdk/aws_stepfunctions_tasks/__init__.py +46 -10
- aws_cdk/aws_synthetics/__init__.py +32 -0
- aws_cdk/aws_verifiedpermissions/__init__.py +168 -3
- aws_cdk/aws_vpclattice/__init__.py +3 -1
- aws_cdk/aws_wisdom/__init__.py +6 -4
- aws_cdk/custom_resources/__init__.py +18 -0
- aws_cdk/cx_api/__init__.py +33 -0
- aws_cdk/lambda_layer_awscli/__init__.py +6 -0
- aws_cdk/lambda_layer_node_proxy_agent/__init__.py +6 -0
- aws_cdk/pipelines/__init__.py +10 -10
- aws_cdk/triggers/__init__.py +6 -0
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.1.dist-info}/METADATA +83 -5
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.1.dist-info}/RECORD +99 -99
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.1.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.1.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.1.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.1.dist-info}/top_level.txt +0 -0
aws_cdk/aws_iam/__init__.py
CHANGED
|
@@ -8793,6 +8793,12 @@ class InstanceProfile(
|
|
|
8793
8793
|
check_type(argname="argument instance_profile_name", value=instance_profile_name, expected_type=type_hints["instance_profile_name"])
|
|
8794
8794
|
return typing.cast(IInstanceProfile, jsii.sinvoke(cls, "fromInstanceProfileName", [scope, id, instance_profile_name]))
|
|
8795
8795
|
|
|
8796
|
+
@jsii.python.classproperty
|
|
8797
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
8798
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
8799
|
+
'''Uniquely identifies this class.'''
|
|
8800
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
8801
|
+
|
|
8796
8802
|
@builtins.property
|
|
8797
8803
|
@jsii.member(jsii_name="instanceProfileArn")
|
|
8798
8804
|
def instance_profile_arn(self) -> builtins.str:
|
|
@@ -9179,6 +9185,12 @@ class ManagedPolicy(
|
|
|
9179
9185
|
check_type(argname="argument user", value=user, expected_type=type_hints["user"])
|
|
9180
9186
|
return typing.cast(None, jsii.invoke(self, "attachToUser", [user]))
|
|
9181
9187
|
|
|
9188
|
+
@jsii.python.classproperty
|
|
9189
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
9190
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
9191
|
+
'''Uniquely identifies this class.'''
|
|
9192
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
9193
|
+
|
|
9182
9194
|
@builtins.property
|
|
9183
9195
|
@jsii.member(jsii_name="description")
|
|
9184
9196
|
def description(self) -> builtins.str:
|
|
@@ -9518,6 +9530,12 @@ class OpenIdConnectProvider(
|
|
|
9518
9530
|
check_type(argname="argument open_id_connect_provider_arn", value=open_id_connect_provider_arn, expected_type=type_hints["open_id_connect_provider_arn"])
|
|
9519
9531
|
return typing.cast(IOpenIdConnectProvider, jsii.sinvoke(cls, "fromOpenIdConnectProviderArn", [scope, id, open_id_connect_provider_arn]))
|
|
9520
9532
|
|
|
9533
|
+
@jsii.python.classproperty
|
|
9534
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
9535
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
9536
|
+
'''Uniquely identifies this class.'''
|
|
9537
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
9538
|
+
|
|
9521
9539
|
@builtins.property
|
|
9522
9540
|
@jsii.member(jsii_name="openIdConnectProviderArn")
|
|
9523
9541
|
def open_id_connect_provider_arn(self) -> builtins.str:
|
|
@@ -9848,6 +9866,12 @@ class Policy(
|
|
|
9848
9866
|
check_type(argname="argument user", value=user, expected_type=type_hints["user"])
|
|
9849
9867
|
return typing.cast(None, jsii.invoke(self, "attachToUser", [user]))
|
|
9850
9868
|
|
|
9869
|
+
@jsii.python.classproperty
|
|
9870
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
9871
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
9872
|
+
'''Uniquely identifies this class.'''
|
|
9873
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
9874
|
+
|
|
9851
9875
|
@builtins.property
|
|
9852
9876
|
@jsii.member(jsii_name="document")
|
|
9853
9877
|
def document(self) -> "PolicyDocument":
|
|
@@ -10762,6 +10786,12 @@ class PolicyStatement(
|
|
|
10762
10786
|
'''
|
|
10763
10787
|
return typing.cast(typing.List[builtins.str], jsii.invoke(self, "validateForResourcePolicy", []))
|
|
10764
10788
|
|
|
10789
|
+
@jsii.python.classproperty
|
|
10790
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
10791
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
10792
|
+
'''Uniquely identifies this class.'''
|
|
10793
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
10794
|
+
|
|
10765
10795
|
@builtins.property
|
|
10766
10796
|
@jsii.member(jsii_name="actions")
|
|
10767
10797
|
def actions(self) -> typing.List[builtins.str]:
|
|
@@ -11593,6 +11623,12 @@ class SamlProvider(
|
|
|
11593
11623
|
check_type(argname="argument saml_provider_arn", value=saml_provider_arn, expected_type=type_hints["saml_provider_arn"])
|
|
11594
11624
|
return typing.cast(ISamlProvider, jsii.sinvoke(cls, "fromSamlProviderArn", [scope, id, saml_provider_arn]))
|
|
11595
11625
|
|
|
11626
|
+
@jsii.python.classproperty
|
|
11627
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
11628
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
11629
|
+
'''Uniquely identifies this class.'''
|
|
11630
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
11631
|
+
|
|
11596
11632
|
@builtins.property
|
|
11597
11633
|
@jsii.member(jsii_name="samlProviderArn")
|
|
11598
11634
|
def saml_provider_arn(self) -> builtins.str:
|
|
@@ -12232,6 +12268,12 @@ class AccessKey(
|
|
|
12232
12268
|
|
|
12233
12269
|
jsii.create(self.__class__, self, [scope, id, props])
|
|
12234
12270
|
|
|
12271
|
+
@jsii.python.classproperty
|
|
12272
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
12273
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
12274
|
+
'''Uniquely identifies this class.'''
|
|
12275
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
12276
|
+
|
|
12235
12277
|
@builtins.property
|
|
12236
12278
|
@jsii.member(jsii_name="accessKeyId")
|
|
12237
12279
|
def access_key_id(self) -> builtins.str:
|
|
@@ -12926,6 +12968,12 @@ class LazyRole(
|
|
|
12926
12968
|
check_type(argname="argument identity", value=identity, expected_type=type_hints["identity"])
|
|
12927
12969
|
return typing.cast(Grant, jsii.invoke(self, "grantPassRole", [identity]))
|
|
12928
12970
|
|
|
12971
|
+
@jsii.python.classproperty
|
|
12972
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
12973
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
12974
|
+
'''Uniquely identifies this class.'''
|
|
12975
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
12976
|
+
|
|
12929
12977
|
@builtins.property
|
|
12930
12978
|
@jsii.member(jsii_name="assumeRoleAction")
|
|
12931
12979
|
def assume_role_action(self) -> builtins.str:
|
|
@@ -13936,6 +13984,12 @@ class Role(
|
|
|
13936
13984
|
|
|
13937
13985
|
return typing.cast(IRole, jsii.invoke(self, "withoutPolicyUpdates", [options]))
|
|
13938
13986
|
|
|
13987
|
+
@jsii.python.classproperty
|
|
13988
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
13989
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
13990
|
+
'''Uniquely identifies this class.'''
|
|
13991
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
13992
|
+
|
|
13939
13993
|
@builtins.property
|
|
13940
13994
|
@jsii.member(jsii_name="assumeRoleAction")
|
|
13941
13995
|
def assume_role_action(self) -> builtins.str:
|
|
@@ -14470,6 +14524,12 @@ class User(
|
|
|
14470
14524
|
check_type(argname="argument policy", value=policy, expected_type=type_hints["policy"])
|
|
14471
14525
|
return typing.cast(None, jsii.invoke(self, "attachInlinePolicy", [policy]))
|
|
14472
14526
|
|
|
14527
|
+
@jsii.python.classproperty
|
|
14528
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
14529
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
14530
|
+
'''Uniquely identifies this class.'''
|
|
14531
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
14532
|
+
|
|
14473
14533
|
@builtins.property
|
|
14474
14534
|
@jsii.member(jsii_name="assumeRoleAction")
|
|
14475
14535
|
def assume_role_action(self) -> builtins.str:
|
|
@@ -15330,6 +15390,12 @@ class Group(
|
|
|
15330
15390
|
check_type(argname="argument policy", value=policy, expected_type=type_hints["policy"])
|
|
15331
15391
|
return typing.cast(None, jsii.invoke(self, "attachInlinePolicy", [policy]))
|
|
15332
15392
|
|
|
15393
|
+
@jsii.python.classproperty
|
|
15394
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
15395
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
15396
|
+
'''Uniquely identifies this class.'''
|
|
15397
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
15398
|
+
|
|
15333
15399
|
@builtins.property
|
|
15334
15400
|
@jsii.member(jsii_name="assumeRoleAction")
|
|
15335
15401
|
def assume_role_action(self) -> builtins.str:
|
|
@@ -5615,9 +5615,9 @@ class CfnImageRecipe(
|
|
|
5615
5615
|
metaclass=jsii.JSIIMeta,
|
|
5616
5616
|
jsii_type="aws-cdk-lib.aws_imagebuilder.CfnImageRecipe",
|
|
5617
5617
|
):
|
|
5618
|
-
'''
|
|
5618
|
+
'''Creates a new image recipe.
|
|
5619
5619
|
|
|
5620
|
-
|
|
5620
|
+
Image recipes define how images are configured, tested, and assessed.
|
|
5621
5621
|
|
|
5622
5622
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html
|
|
5623
5623
|
:cloudformationResource: AWS::ImageBuilder::ImageRecipe
|
|
@@ -5689,10 +5689,10 @@ class CfnImageRecipe(
|
|
|
5689
5689
|
'''
|
|
5690
5690
|
:param scope: Scope in which this resource is defined.
|
|
5691
5691
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
5692
|
-
:param components: The components
|
|
5692
|
+
:param components: The components that are included in the image recipe. Recipes require a minimum of one build component, and can have a maximum of 20 build and test components in any combination.
|
|
5693
5693
|
:param name: The name of the image recipe.
|
|
5694
|
-
:param parent_image: The
|
|
5695
|
-
:param version: The
|
|
5694
|
+
:param parent_image: The base image for customizations specified in the image recipe. You can specify the parent image using one of the following options: - AMI ID - Image Builder image Amazon Resource Name (ARN) - AWS Systems Manager (SSM) Parameter Store Parameter, prefixed by ``ssm:`` , followed by the parameter name or ARN. - AWS Marketplace product ID
|
|
5695
|
+
:param version: The version of the image recipe.
|
|
5696
5696
|
:param additional_instance_configuration: Before you create a new AMI, Image Builder launches temporary Amazon EC2 instances to build and test your image configuration. Instance configuration adds a layer of control over those instances. You can define settings and add scripts to run when an instance is launched from your AMI.
|
|
5697
5697
|
:param block_device_mappings: The block device mappings to apply when creating images from this recipe.
|
|
5698
5698
|
:param description: The description of the image recipe.
|
|
@@ -5783,7 +5783,7 @@ class CfnImageRecipe(
|
|
|
5783
5783
|
def components(
|
|
5784
5784
|
self,
|
|
5785
5785
|
) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnImageRecipe.ComponentConfigurationProperty"]]]:
|
|
5786
|
-
'''The components
|
|
5786
|
+
'''The components that are included in the image recipe.'''
|
|
5787
5787
|
return typing.cast(typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnImageRecipe.ComponentConfigurationProperty"]]], jsii.get(self, "components"))
|
|
5788
5788
|
|
|
5789
5789
|
@components.setter
|
|
@@ -5812,7 +5812,7 @@ class CfnImageRecipe(
|
|
|
5812
5812
|
@builtins.property
|
|
5813
5813
|
@jsii.member(jsii_name="parentImage")
|
|
5814
5814
|
def parent_image(self) -> builtins.str:
|
|
5815
|
-
'''The
|
|
5815
|
+
'''The base image for customizations specified in the image recipe.'''
|
|
5816
5816
|
return typing.cast(builtins.str, jsii.get(self, "parentImage"))
|
|
5817
5817
|
|
|
5818
5818
|
@parent_image.setter
|
|
@@ -5825,7 +5825,7 @@ class CfnImageRecipe(
|
|
|
5825
5825
|
@builtins.property
|
|
5826
5826
|
@jsii.member(jsii_name="version")
|
|
5827
5827
|
def version(self) -> builtins.str:
|
|
5828
|
-
'''The
|
|
5828
|
+
'''The version of the image recipe.'''
|
|
5829
5829
|
return typing.cast(builtins.str, jsii.get(self, "version"))
|
|
5830
5830
|
|
|
5831
5831
|
@version.setter
|
|
@@ -6535,10 +6535,10 @@ class CfnImageRecipeProps:
|
|
|
6535
6535
|
) -> None:
|
|
6536
6536
|
'''Properties for defining a ``CfnImageRecipe``.
|
|
6537
6537
|
|
|
6538
|
-
:param components: The components
|
|
6538
|
+
:param components: The components that are included in the image recipe. Recipes require a minimum of one build component, and can have a maximum of 20 build and test components in any combination.
|
|
6539
6539
|
:param name: The name of the image recipe.
|
|
6540
|
-
:param parent_image: The
|
|
6541
|
-
:param version: The
|
|
6540
|
+
:param parent_image: The base image for customizations specified in the image recipe. You can specify the parent image using one of the following options: - AMI ID - Image Builder image Amazon Resource Name (ARN) - AWS Systems Manager (SSM) Parameter Store Parameter, prefixed by ``ssm:`` , followed by the parameter name or ARN. - AWS Marketplace product ID
|
|
6541
|
+
:param version: The version of the image recipe.
|
|
6542
6542
|
:param additional_instance_configuration: Before you create a new AMI, Image Builder launches temporary Amazon EC2 instances to build and test your image configuration. Instance configuration adds a layer of control over those instances. You can define settings and add scripts to run when an instance is launched from your AMI.
|
|
6543
6543
|
:param block_device_mappings: The block device mappings to apply when creating images from this recipe.
|
|
6544
6544
|
:param description: The description of the image recipe.
|
|
@@ -6627,9 +6627,9 @@ class CfnImageRecipeProps:
|
|
|
6627
6627
|
def components(
|
|
6628
6628
|
self,
|
|
6629
6629
|
) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnImageRecipe.ComponentConfigurationProperty]]]:
|
|
6630
|
-
'''The components
|
|
6630
|
+
'''The components that are included in the image recipe.
|
|
6631
6631
|
|
|
6632
|
-
|
|
6632
|
+
Recipes require a minimum of one build component, and can have a maximum of 20 build and test components in any combination.
|
|
6633
6633
|
|
|
6634
6634
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-components
|
|
6635
6635
|
'''
|
|
@@ -6649,9 +6649,14 @@ class CfnImageRecipeProps:
|
|
|
6649
6649
|
|
|
6650
6650
|
@builtins.property
|
|
6651
6651
|
def parent_image(self) -> builtins.str:
|
|
6652
|
-
'''The
|
|
6652
|
+
'''The base image for customizations specified in the image recipe.
|
|
6653
|
+
|
|
6654
|
+
You can specify the parent image using one of the following options:
|
|
6653
6655
|
|
|
6654
|
-
|
|
6656
|
+
- AMI ID
|
|
6657
|
+
- Image Builder image Amazon Resource Name (ARN)
|
|
6658
|
+
- AWS Systems Manager (SSM) Parameter Store Parameter, prefixed by ``ssm:`` , followed by the parameter name or ARN.
|
|
6659
|
+
- AWS Marketplace product ID
|
|
6655
6660
|
|
|
6656
6661
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-parentimage
|
|
6657
6662
|
'''
|
|
@@ -6661,7 +6666,7 @@ class CfnImageRecipeProps:
|
|
|
6661
6666
|
|
|
6662
6667
|
@builtins.property
|
|
6663
6668
|
def version(self) -> builtins.str:
|
|
6664
|
-
'''The
|
|
6669
|
+
'''The version of the image recipe.
|
|
6665
6670
|
|
|
6666
6671
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-version
|
|
6667
6672
|
'''
|
|
@@ -153,6 +153,12 @@ class AssessmentTemplate(
|
|
|
153
153
|
check_type(argname="argument template", value=template, expected_type=type_hints["template"])
|
|
154
154
|
return typing.cast("IAssessmentTemplate", jsii.sinvoke(cls, "fromCfnAssessmentTemplate", [scope, id, template]))
|
|
155
155
|
|
|
156
|
+
@jsii.python.classproperty
|
|
157
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
158
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
159
|
+
'''Uniquely identifies this class.'''
|
|
160
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
161
|
+
|
|
156
162
|
|
|
157
163
|
@jsii.data_type(
|
|
158
164
|
jsii_type="aws-cdk-lib.aws_inspector.AssessmentTemplateProps",
|
aws_cdk/aws_kinesis/__init__.py
CHANGED
|
@@ -948,7 +948,7 @@ class CfnStreamConsumer(
|
|
|
948
948
|
|
|
949
949
|
The consumer you register can then call `SubscribeToShard <https://docs.aws.amazon.com/kinesis/latest/APIReference/API_SubscribeToShard.html>`_ to receive data from the stream using enhanced fan-out, at a rate of up to 2 MiB per second for every shard you subscribe to. This rate is unaffected by the total number of consumers that read from the same stream.
|
|
950
950
|
|
|
951
|
-
You can register up to
|
|
951
|
+
You can register up to 20 consumers per stream. However, you can request a limit increase using the `Kinesis Data Streams limits form <https://docs.aws.amazon.com/support/v1?#/>`_ . A given consumer can only be registered with one stream at a time.
|
|
952
952
|
|
|
953
953
|
For more information, see `Using Consumers with Enhanced Fan-Out <https://docs.aws.amazon.com/streams/latest/dev/introduction-to-enhanced-consumers.html>`_ .
|
|
954
954
|
|
|
@@ -3427,6 +3427,12 @@ class ResourcePolicy(
|
|
|
3427
3427
|
|
|
3428
3428
|
jsii.create(self.__class__, self, [scope, id, props])
|
|
3429
3429
|
|
|
3430
|
+
@jsii.python.classproperty
|
|
3431
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
3432
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
3433
|
+
'''Uniquely identifies this class.'''
|
|
3434
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
3435
|
+
|
|
3430
3436
|
@builtins.property
|
|
3431
3437
|
@jsii.member(jsii_name="document")
|
|
3432
3438
|
def document(self) -> _PolicyDocument_3ac34393:
|
|
@@ -4684,6 +4690,12 @@ class Stream(
|
|
|
4684
4690
|
|
|
4685
4691
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricWriteProvisionedThroughputExceeded", [props]))
|
|
4686
4692
|
|
|
4693
|
+
@jsii.python.classproperty
|
|
4694
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
4695
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
4696
|
+
'''Uniquely identifies this class.'''
|
|
4697
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
4698
|
+
|
|
4687
4699
|
@builtins.property
|
|
4688
4700
|
@jsii.member(jsii_name="autoCreatePolicy")
|
|
4689
4701
|
def _auto_create_policy(self) -> builtins.bool:
|
|
@@ -4923,6 +4935,12 @@ class StreamConsumer(
|
|
|
4923
4935
|
check_type(argname="argument grantee", value=grantee, expected_type=type_hints["grantee"])
|
|
4924
4936
|
return typing.cast(_Grant_a7ae64f8, jsii.invoke(self, "grantRead", [grantee]))
|
|
4925
4937
|
|
|
4938
|
+
@jsii.python.classproperty
|
|
4939
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
4940
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
4941
|
+
'''Uniquely identifies this class.'''
|
|
4942
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
4943
|
+
|
|
4926
4944
|
@builtins.property
|
|
4927
4945
|
@jsii.member(jsii_name="autoCreatePolicy")
|
|
4928
4946
|
def _auto_create_policy(self) -> builtins.bool:
|
|
@@ -5252,11 +5252,11 @@ class CfnApplicationV2(
|
|
|
5252
5252
|
'''
|
|
5253
5253
|
:param scope: Scope in which this resource is defined.
|
|
5254
5254
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
5255
|
-
:param runtime_environment: The runtime environment for the application.
|
|
5255
|
+
:param runtime_environment: The runtime environment for the application.
|
|
5256
5256
|
:param service_execution_role: Specifies the IAM role that the application uses to access external resources.
|
|
5257
5257
|
:param application_configuration: Use this parameter to configure the application.
|
|
5258
5258
|
:param application_description: The description of the application. Default: - ""
|
|
5259
|
-
:param application_maintenance_configuration:
|
|
5259
|
+
:param application_maintenance_configuration: Specifies the maintenance window parameters for a Kinesis Data Analytics application.
|
|
5260
5260
|
:param application_mode: To create a Kinesis Data Analytics Studio notebook, you must set the mode to ``INTERACTIVE`` . However, for a Kinesis Data Analytics for Apache Flink application, the mode is optional.
|
|
5261
5261
|
:param application_name: The name of the application.
|
|
5262
5262
|
:param run_configuration: Describes the starting parameters for an Managed Service for Apache Flink application.
|
|
@@ -5383,7 +5383,7 @@ class CfnApplicationV2(
|
|
|
5383
5383
|
def application_maintenance_configuration(
|
|
5384
5384
|
self,
|
|
5385
5385
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnApplicationV2.ApplicationMaintenanceConfigurationProperty"]]:
|
|
5386
|
-
'''
|
|
5386
|
+
'''Specifies the maintenance window parameters for a Kinesis Data Analytics application.'''
|
|
5387
5387
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnApplicationV2.ApplicationMaintenanceConfigurationProperty"]], jsii.get(self, "applicationMaintenanceConfiguration"))
|
|
5388
5388
|
|
|
5389
5389
|
@application_maintenance_configuration.setter
|
|
@@ -5868,9 +5868,9 @@ class CfnApplicationV2(
|
|
|
5868
5868
|
*,
|
|
5869
5869
|
application_maintenance_window_start_time: builtins.str,
|
|
5870
5870
|
) -> None:
|
|
5871
|
-
'''
|
|
5871
|
+
'''Describes the maintenance configuration for the application.
|
|
5872
5872
|
|
|
5873
|
-
:param application_maintenance_window_start_time:
|
|
5873
|
+
:param application_maintenance_window_start_time: The start time for the maintenance window.
|
|
5874
5874
|
|
|
5875
5875
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationmaintenanceconfiguration.html
|
|
5876
5876
|
:exampleMetadata: fixture=_generated
|
|
@@ -5894,7 +5894,7 @@ class CfnApplicationV2(
|
|
|
5894
5894
|
|
|
5895
5895
|
@builtins.property
|
|
5896
5896
|
def application_maintenance_window_start_time(self) -> builtins.str:
|
|
5897
|
-
'''
|
|
5897
|
+
'''The start time for the maintenance window.
|
|
5898
5898
|
|
|
5899
5899
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationmaintenanceconfiguration.html#cfn-kinesisanalyticsv2-application-applicationmaintenanceconfiguration-applicationmaintenancewindowstarttime
|
|
5900
5900
|
'''
|
|
@@ -8884,11 +8884,11 @@ class CfnApplicationV2Props:
|
|
|
8884
8884
|
) -> None:
|
|
8885
8885
|
'''Properties for defining a ``CfnApplication``.
|
|
8886
8886
|
|
|
8887
|
-
:param runtime_environment: The runtime environment for the application.
|
|
8887
|
+
:param runtime_environment: The runtime environment for the application.
|
|
8888
8888
|
:param service_execution_role: Specifies the IAM role that the application uses to access external resources.
|
|
8889
8889
|
:param application_configuration: Use this parameter to configure the application.
|
|
8890
8890
|
:param application_description: The description of the application. Default: - ""
|
|
8891
|
-
:param application_maintenance_configuration:
|
|
8891
|
+
:param application_maintenance_configuration: Specifies the maintenance window parameters for a Kinesis Data Analytics application.
|
|
8892
8892
|
:param application_mode: To create a Kinesis Data Analytics Studio notebook, you must set the mode to ``INTERACTIVE`` . However, for a Kinesis Data Analytics for Apache Flink application, the mode is optional.
|
|
8893
8893
|
:param application_name: The name of the application.
|
|
8894
8894
|
:param run_configuration: Describes the starting parameters for an Managed Service for Apache Flink application.
|
|
@@ -9106,8 +9106,6 @@ class CfnApplicationV2Props:
|
|
|
9106
9106
|
def runtime_environment(self) -> builtins.str:
|
|
9107
9107
|
'''The runtime environment for the application.
|
|
9108
9108
|
|
|
9109
|
-
*Allowed values for ``RuntimeEnvironment`` :* ``SQL-1_0 | FLINK-1_6 | FLINK-1_8 | ZEPPELIN-FLINK-1_0 | FLINK-1_11 | FLINK-1_13 | ZEPPELIN-FLINK-2_0 | FLINK-1_15 | ZEPPELIN-FLINK-3_0 | FLINK-1_18 | FLINK-1_19 | FLINK-1_20``
|
|
9110
|
-
|
|
9111
9109
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-runtimeenvironment
|
|
9112
9110
|
'''
|
|
9113
9111
|
result = self._values.get("runtime_environment")
|
|
@@ -9150,7 +9148,7 @@ class CfnApplicationV2Props:
|
|
|
9150
9148
|
def application_maintenance_configuration(
|
|
9151
9149
|
self,
|
|
9152
9150
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnApplicationV2.ApplicationMaintenanceConfigurationProperty]]:
|
|
9153
|
-
'''
|
|
9151
|
+
'''Specifies the maintenance window parameters for a Kinesis Data Analytics application.
|
|
9154
9152
|
|
|
9155
9153
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-applicationmaintenanceconfiguration
|
|
9156
9154
|
'''
|
|
@@ -277,11 +277,11 @@ class CfnApplication(
|
|
|
277
277
|
'''
|
|
278
278
|
:param scope: Scope in which this resource is defined.
|
|
279
279
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
280
|
-
:param runtime_environment: The runtime environment for the application.
|
|
280
|
+
:param runtime_environment: The runtime environment for the application.
|
|
281
281
|
:param service_execution_role: Specifies the IAM role that the application uses to access external resources.
|
|
282
282
|
:param application_configuration: Use this parameter to configure the application.
|
|
283
283
|
:param application_description: The description of the application. Default: - ""
|
|
284
|
-
:param application_maintenance_configuration:
|
|
284
|
+
:param application_maintenance_configuration: Specifies the maintenance window parameters for a Kinesis Data Analytics application.
|
|
285
285
|
:param application_mode: To create a Kinesis Data Analytics Studio notebook, you must set the mode to ``INTERACTIVE`` . However, for a Kinesis Data Analytics for Apache Flink application, the mode is optional.
|
|
286
286
|
:param application_name: The name of the application.
|
|
287
287
|
:param run_configuration: Describes the starting parameters for an Managed Service for Apache Flink application.
|
|
@@ -408,7 +408,7 @@ class CfnApplication(
|
|
|
408
408
|
def application_maintenance_configuration(
|
|
409
409
|
self,
|
|
410
410
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnApplication.ApplicationMaintenanceConfigurationProperty"]]:
|
|
411
|
-
'''
|
|
411
|
+
'''Specifies the maintenance window parameters for a Kinesis Data Analytics application.'''
|
|
412
412
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnApplication.ApplicationMaintenanceConfigurationProperty"]], jsii.get(self, "applicationMaintenanceConfiguration"))
|
|
413
413
|
|
|
414
414
|
@application_maintenance_configuration.setter
|
|
@@ -893,9 +893,9 @@ class CfnApplication(
|
|
|
893
893
|
*,
|
|
894
894
|
application_maintenance_window_start_time: builtins.str,
|
|
895
895
|
) -> None:
|
|
896
|
-
'''
|
|
896
|
+
'''Describes the maintenance configuration for the application.
|
|
897
897
|
|
|
898
|
-
:param application_maintenance_window_start_time:
|
|
898
|
+
:param application_maintenance_window_start_time: The start time for the maintenance window.
|
|
899
899
|
|
|
900
900
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationmaintenanceconfiguration.html
|
|
901
901
|
:exampleMetadata: fixture=_generated
|
|
@@ -919,7 +919,7 @@ class CfnApplication(
|
|
|
919
919
|
|
|
920
920
|
@builtins.property
|
|
921
921
|
def application_maintenance_window_start_time(self) -> builtins.str:
|
|
922
|
-
'''
|
|
922
|
+
'''The start time for the maintenance window.
|
|
923
923
|
|
|
924
924
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationmaintenanceconfiguration.html#cfn-kinesisanalyticsv2-application-applicationmaintenanceconfiguration-applicationmaintenancewindowstarttime
|
|
925
925
|
'''
|
|
@@ -4773,11 +4773,11 @@ class CfnApplicationProps:
|
|
|
4773
4773
|
) -> None:
|
|
4774
4774
|
'''Properties for defining a ``CfnApplication``.
|
|
4775
4775
|
|
|
4776
|
-
:param runtime_environment: The runtime environment for the application.
|
|
4776
|
+
:param runtime_environment: The runtime environment for the application.
|
|
4777
4777
|
:param service_execution_role: Specifies the IAM role that the application uses to access external resources.
|
|
4778
4778
|
:param application_configuration: Use this parameter to configure the application.
|
|
4779
4779
|
:param application_description: The description of the application. Default: - ""
|
|
4780
|
-
:param application_maintenance_configuration:
|
|
4780
|
+
:param application_maintenance_configuration: Specifies the maintenance window parameters for a Kinesis Data Analytics application.
|
|
4781
4781
|
:param application_mode: To create a Kinesis Data Analytics Studio notebook, you must set the mode to ``INTERACTIVE`` . However, for a Kinesis Data Analytics for Apache Flink application, the mode is optional.
|
|
4782
4782
|
:param application_name: The name of the application.
|
|
4783
4783
|
:param run_configuration: Describes the starting parameters for an Managed Service for Apache Flink application.
|
|
@@ -4995,8 +4995,6 @@ class CfnApplicationProps:
|
|
|
4995
4995
|
def runtime_environment(self) -> builtins.str:
|
|
4996
4996
|
'''The runtime environment for the application.
|
|
4997
4997
|
|
|
4998
|
-
*Allowed values for ``RuntimeEnvironment`` :* ``SQL-1_0 | FLINK-1_6 | FLINK-1_8 | ZEPPELIN-FLINK-1_0 | FLINK-1_11 | FLINK-1_13 | ZEPPELIN-FLINK-2_0 | FLINK-1_15 | ZEPPELIN-FLINK-3_0 | FLINK-1_18 | FLINK-1_19 | FLINK-1_20``
|
|
4999
|
-
|
|
5000
4998
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-runtimeenvironment
|
|
5001
4999
|
'''
|
|
5002
5000
|
result = self._values.get("runtime_environment")
|
|
@@ -5039,7 +5037,7 @@ class CfnApplicationProps:
|
|
|
5039
5037
|
def application_maintenance_configuration(
|
|
5040
5038
|
self,
|
|
5041
5039
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnApplication.ApplicationMaintenanceConfigurationProperty]]:
|
|
5042
|
-
'''
|
|
5040
|
+
'''Specifies the maintenance window parameters for a Kinesis Data Analytics application.
|
|
5043
5041
|
|
|
5044
5042
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-applicationmaintenanceconfiguration
|
|
5045
5043
|
'''
|
|
@@ -12528,6 +12528,12 @@ class DeliveryStream(
|
|
|
12528
12528
|
|
|
12529
12529
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricIncomingRecords", [props]))
|
|
12530
12530
|
|
|
12531
|
+
@jsii.python.classproperty
|
|
12532
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
12533
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
12534
|
+
'''Uniquely identifies this class.'''
|
|
12535
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
12536
|
+
|
|
12531
12537
|
@builtins.property
|
|
12532
12538
|
@jsii.member(jsii_name="connections")
|
|
12533
12539
|
def connections(self) -> _Connections_0f31fce8:
|
aws_cdk/aws_kms/__init__.py
CHANGED
|
@@ -58,16 +58,16 @@ pass the construct to the other stack:
|
|
|
58
58
|
#
|
|
59
59
|
class KeyStack(cdk.Stack):
|
|
60
60
|
|
|
61
|
-
def __init__(self, scope, id, *, description=None, env=None, stackName=None, tags=None, notificationArns=None, synthesizer=None, terminationProtection=None, analyticsReporting=None, crossRegionReferences=None, permissionsBoundary=None, suppressTemplateIndentation=None):
|
|
62
|
-
super().__init__(scope, id, description=description, env=env, stackName=stackName, tags=tags, notificationArns=notificationArns, synthesizer=synthesizer, terminationProtection=terminationProtection, analyticsReporting=analyticsReporting, crossRegionReferences=crossRegionReferences, permissionsBoundary=permissionsBoundary, suppressTemplateIndentation=suppressTemplateIndentation)
|
|
61
|
+
def __init__(self, scope, id, *, description=None, env=None, stackName=None, tags=None, notificationArns=None, synthesizer=None, terminationProtection=None, analyticsReporting=None, crossRegionReferences=None, permissionsBoundary=None, suppressTemplateIndentation=None, propertyInjectors=None):
|
|
62
|
+
super().__init__(scope, id, description=description, env=env, stackName=stackName, tags=tags, notificationArns=notificationArns, synthesizer=synthesizer, terminationProtection=terminationProtection, analyticsReporting=analyticsReporting, crossRegionReferences=crossRegionReferences, permissionsBoundary=permissionsBoundary, suppressTemplateIndentation=suppressTemplateIndentation, propertyInjectors=propertyInjectors)
|
|
63
63
|
self.key = kms.Key(self, "MyKey", removal_policy=cdk.RemovalPolicy.DESTROY)
|
|
64
64
|
|
|
65
65
|
#
|
|
66
66
|
# Stack that uses the key
|
|
67
67
|
#
|
|
68
68
|
class UseStack(cdk.Stack):
|
|
69
|
-
def __init__(self, scope, id, *, key, description=None, env=None, stackName=None, tags=None, notificationArns=None, synthesizer=None, terminationProtection=None, analyticsReporting=None, crossRegionReferences=None, permissionsBoundary=None, suppressTemplateIndentation=None):
|
|
70
|
-
super().__init__(scope, id, key=key, description=description, env=env, stackName=stackName, tags=tags, notificationArns=notificationArns, synthesizer=synthesizer, terminationProtection=terminationProtection, analyticsReporting=analyticsReporting, crossRegionReferences=crossRegionReferences, permissionsBoundary=permissionsBoundary, suppressTemplateIndentation=suppressTemplateIndentation)
|
|
69
|
+
def __init__(self, scope, id, *, key, description=None, env=None, stackName=None, tags=None, notificationArns=None, synthesizer=None, terminationProtection=None, analyticsReporting=None, crossRegionReferences=None, permissionsBoundary=None, suppressTemplateIndentation=None, propertyInjectors=None):
|
|
70
|
+
super().__init__(scope, id, key=key, description=description, env=env, stackName=stackName, tags=tags, notificationArns=notificationArns, synthesizer=synthesizer, terminationProtection=terminationProtection, analyticsReporting=analyticsReporting, crossRegionReferences=crossRegionReferences, permissionsBoundary=permissionsBoundary, suppressTemplateIndentation=suppressTemplateIndentation, propertyInjectors=propertyInjectors)
|
|
71
71
|
|
|
72
72
|
# Use the IKey object here.
|
|
73
73
|
kms.Alias(self, "Alias",
|
|
@@ -2573,6 +2573,12 @@ class Key(
|
|
|
2573
2573
|
'''
|
|
2574
2574
|
return typing.cast(builtins.str, jsii.sget(cls, "DEFAULT_DUMMY_KEY_ID"))
|
|
2575
2575
|
|
|
2576
|
+
@jsii.python.classproperty
|
|
2577
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
2578
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
2579
|
+
'''Uniquely identifies this class.'''
|
|
2580
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
2581
|
+
|
|
2576
2582
|
@builtins.property
|
|
2577
2583
|
@jsii.member(jsii_name="keyArn")
|
|
2578
2584
|
def key_arn(self) -> builtins.str:
|
|
@@ -3431,6 +3437,12 @@ class Alias(
|
|
|
3431
3437
|
check_type(argname="argument grantee", value=grantee, expected_type=type_hints["grantee"])
|
|
3432
3438
|
return typing.cast(_Grant_a7ae64f8, jsii.invoke(self, "grantVerifyMac", [grantee]))
|
|
3433
3439
|
|
|
3440
|
+
@jsii.python.classproperty
|
|
3441
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
3442
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
3443
|
+
'''Uniquely identifies this class.'''
|
|
3444
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
3445
|
+
|
|
3434
3446
|
@builtins.property
|
|
3435
3447
|
@jsii.member(jsii_name="aliasArn")
|
|
3436
3448
|
def alias_arn(self) -> builtins.str:
|