aws-cdk-lib 2.115.0__py3-none-any.whl → 2.116.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 +801 -356
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.115.0.jsii.tgz → aws-cdk-lib@2.116.1.jsii.tgz} +0 -0
- aws_cdk/aws_apigateway/__init__.py +3 -1
- aws_cdk/aws_apigatewayv2/__init__.py +595 -222
- aws_cdk/aws_apigatewayv2_integrations/__init__.py +4 -5
- aws_cdk/aws_applicationautoscaling/__init__.py +51 -15
- aws_cdk/aws_appsync/__init__.py +14 -3
- aws_cdk/aws_autoscaling/__init__.py +6 -0
- aws_cdk/aws_b2bi/__init__.py +2445 -0
- aws_cdk/aws_cloud9/__init__.py +63 -63
- aws_cdk/aws_cloudfront/__init__.py +394 -0
- aws_cdk/aws_cloudfront/experimental/__init__.py +5 -2
- aws_cdk/aws_cloudtrail/__init__.py +90 -11
- aws_cdk/aws_cloudwatch/__init__.py +6 -6
- aws_cdk/aws_codedeploy/__init__.py +88 -15
- aws_cdk/aws_codepipeline/__init__.py +645 -0
- aws_cdk/aws_cognito/__init__.py +13 -26
- aws_cdk/aws_config/__init__.py +315 -1
- aws_cdk/aws_connect/__init__.py +532 -37
- aws_cdk/aws_controltower/__init__.py +4 -4
- aws_cdk/aws_datasync/__init__.py +6 -4
- aws_cdk/aws_dms/__init__.py +241 -131
- aws_cdk/aws_dynamodb/__init__.py +8 -0
- aws_cdk/aws_ec2/__init__.py +1030 -45
- aws_cdk/aws_ecr/__init__.py +78 -10
- aws_cdk/aws_ecs/__init__.py +210 -2
- aws_cdk/aws_ecs_patterns/__init__.py +77 -62
- aws_cdk/aws_eks/__init__.py +8 -1
- aws_cdk/aws_elasticache/__init__.py +136 -10
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +10 -13
- aws_cdk/aws_emr/__init__.py +234 -17
- aws_cdk/aws_eventschemas/__init__.py +15 -13
- aws_cdk/aws_fis/__init__.py +33 -13
- aws_cdk/aws_gamelift/__init__.py +47 -0
- aws_cdk/aws_imagebuilder/__init__.py +922 -84
- aws_cdk/aws_internetmonitor/__init__.py +12 -10
- aws_cdk/aws_iot/__init__.py +26 -46
- aws_cdk/aws_iottwinmaker/__init__.py +36 -34
- aws_cdk/aws_lambda/__init__.py +19 -15
- aws_cdk/aws_lambda_nodejs/__init__.py +5 -2
- aws_cdk/aws_logs/__init__.py +6 -6
- aws_cdk/aws_opensearchservice/__init__.py +5 -3
- aws_cdk/aws_organizations/__init__.py +3 -3
- aws_cdk/aws_osis/__init__.py +17 -13
- aws_cdk/aws_rds/__init__.py +6 -0
- aws_cdk/aws_s3/__init__.py +4 -2
- aws_cdk/aws_s3outposts/__init__.py +8 -8
- aws_cdk/aws_sagemaker/__init__.py +17 -94
- aws_cdk/aws_secretsmanager/__init__.py +9 -7
- aws_cdk/aws_securityhub/__init__.py +18 -0
- aws_cdk/aws_servicecatalogappregistry/__init__.py +31 -0
- aws_cdk/aws_ses/__init__.py +58 -11
- aws_cdk/aws_sns/__init__.py +309 -10
- aws_cdk/aws_ssm/__init__.py +3 -5
- aws_cdk/aws_stepfunctions/__init__.py +335 -19
- aws_cdk/aws_stepfunctions_tasks/__init__.py +388 -38
- aws_cdk/aws_transfer/__init__.py +37 -10
- aws_cdk/custom_resources/__init__.py +443 -1
- aws_cdk/triggers/__init__.py +5 -2
- {aws_cdk_lib-2.115.0.dist-info → aws_cdk_lib-2.116.1.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.115.0.dist-info → aws_cdk_lib-2.116.1.dist-info}/RECORD +66 -65
- {aws_cdk_lib-2.115.0.dist-info → aws_cdk_lib-2.116.1.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.115.0.dist-info → aws_cdk_lib-2.116.1.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.115.0.dist-info → aws_cdk_lib-2.116.1.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.115.0.dist-info → aws_cdk_lib-2.116.1.dist-info}/top_level.txt +0 -0
|
@@ -113,7 +113,7 @@ class CfnComponent(
|
|
|
113
113
|
:param name: The name of the component.
|
|
114
114
|
:param platform: The operating system platform of the component.
|
|
115
115
|
:param version: The component version. For example, ``1.0.0`` .
|
|
116
|
-
:param change_description: The change description of the component. Describes what change has been made in this version, or what makes this version different from other versions of
|
|
116
|
+
:param change_description: The change description of the component. Describes what change has been made in this version, or what makes this version different from other versions of the component.
|
|
117
117
|
:param data: Component ``data`` contains inline YAML document content for the component. Alternatively, you can specify the ``uri`` of a YAML document file stored in Amazon S3. However, you cannot specify both properties.
|
|
118
118
|
:param description: Describes the contents of the component.
|
|
119
119
|
:param kms_key_id: The ID of the KMS key that is used to encrypt this component.
|
|
@@ -396,7 +396,7 @@ class CfnComponentProps:
|
|
|
396
396
|
:param name: The name of the component.
|
|
397
397
|
:param platform: The operating system platform of the component.
|
|
398
398
|
:param version: The component version. For example, ``1.0.0`` .
|
|
399
|
-
:param change_description: The change description of the component. Describes what change has been made in this version, or what makes this version different from other versions of
|
|
399
|
+
:param change_description: The change description of the component. Describes what change has been made in this version, or what makes this version different from other versions of the component.
|
|
400
400
|
:param data: Component ``data`` contains inline YAML document content for the component. Alternatively, you can specify the ``uri`` of a YAML document file stored in Amazon S3. However, you cannot specify both properties.
|
|
401
401
|
:param description: Describes the contents of the component.
|
|
402
402
|
:param kms_key_id: The ID of the KMS key that is used to encrypt this component.
|
|
@@ -498,7 +498,7 @@ class CfnComponentProps:
|
|
|
498
498
|
def change_description(self) -> typing.Optional[builtins.str]:
|
|
499
499
|
'''The change description of the component.
|
|
500
500
|
|
|
501
|
-
Describes what change has been made in this version, or what makes this version different from other versions of
|
|
501
|
+
Describes what change has been made in this version, or what makes this version different from other versions of the component.
|
|
502
502
|
|
|
503
503
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-changedescription
|
|
504
504
|
'''
|
|
@@ -3816,6 +3816,7 @@ class CfnImagePipeline(
|
|
|
3816
3816
|
description="description",
|
|
3817
3817
|
distribution_configuration_arn="distributionConfigurationArn",
|
|
3818
3818
|
enhanced_image_metadata_enabled=False,
|
|
3819
|
+
execution_role="executionRole",
|
|
3819
3820
|
image_recipe_arn="imageRecipeArn",
|
|
3820
3821
|
image_scanning_configuration=imagebuilder.CfnImagePipeline.ImageScanningConfigurationProperty(
|
|
3821
3822
|
ecr_configuration=imagebuilder.CfnImagePipeline.EcrConfigurationProperty(
|
|
@@ -3835,7 +3836,16 @@ class CfnImagePipeline(
|
|
|
3835
3836
|
status="status",
|
|
3836
3837
|
tags={
|
|
3837
3838
|
"tags_key": "tags"
|
|
3838
|
-
}
|
|
3839
|
+
},
|
|
3840
|
+
workflows=[imagebuilder.CfnImagePipeline.WorkflowConfigurationProperty(
|
|
3841
|
+
on_failure="onFailure",
|
|
3842
|
+
parallel_group="parallelGroup",
|
|
3843
|
+
parameters=[imagebuilder.CfnImagePipeline.WorkflowParameterProperty(
|
|
3844
|
+
name="name",
|
|
3845
|
+
value=["value"]
|
|
3846
|
+
)],
|
|
3847
|
+
workflow_arn="workflowArn"
|
|
3848
|
+
)]
|
|
3839
3849
|
)
|
|
3840
3850
|
'''
|
|
3841
3851
|
|
|
@@ -3850,12 +3860,14 @@ class CfnImagePipeline(
|
|
|
3850
3860
|
description: typing.Optional[builtins.str] = None,
|
|
3851
3861
|
distribution_configuration_arn: typing.Optional[builtins.str] = None,
|
|
3852
3862
|
enhanced_image_metadata_enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
3863
|
+
execution_role: typing.Optional[builtins.str] = None,
|
|
3853
3864
|
image_recipe_arn: typing.Optional[builtins.str] = None,
|
|
3854
3865
|
image_scanning_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnImagePipeline.ImageScanningConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3855
3866
|
image_tests_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnImagePipeline.ImageTestsConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3856
3867
|
schedule: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnImagePipeline.ScheduleProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3857
3868
|
status: typing.Optional[builtins.str] = None,
|
|
3858
3869
|
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3870
|
+
workflows: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnImagePipeline.WorkflowConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
3859
3871
|
) -> None:
|
|
3860
3872
|
'''
|
|
3861
3873
|
:param scope: Scope in which this resource is defined.
|
|
@@ -3866,12 +3878,14 @@ class CfnImagePipeline(
|
|
|
3866
3878
|
:param description: The description of this image pipeline.
|
|
3867
3879
|
:param distribution_configuration_arn: The Amazon Resource Name (ARN) of the distribution configuration associated with this image pipeline.
|
|
3868
3880
|
:param enhanced_image_metadata_enabled: Collects additional information about the image being created, including the operating system (OS) version and package list. This information is used to enhance the overall experience of using EC2 Image Builder. Enabled by default.
|
|
3881
|
+
:param execution_role: The execution role name/ARN for the image build, if provided.
|
|
3869
3882
|
:param image_recipe_arn: The Amazon Resource Name (ARN) of the image recipe associated with this image pipeline.
|
|
3870
3883
|
:param image_scanning_configuration: Contains settings for vulnerability scans.
|
|
3871
3884
|
:param image_tests_configuration: The configuration of the image tests that run after image creation to ensure the quality of the image that was created.
|
|
3872
3885
|
:param schedule: The schedule of the image pipeline. A schedule configures how often and when a pipeline automatically creates a new image.
|
|
3873
3886
|
:param status: The status of the image pipeline.
|
|
3874
3887
|
:param tags: The tags of this image pipeline.
|
|
3888
|
+
:param workflows: Workflows to define the image build process.
|
|
3875
3889
|
'''
|
|
3876
3890
|
if __debug__:
|
|
3877
3891
|
type_hints = typing.get_type_hints(_typecheckingstub__e2d099702ab4ebcb03c34ae00fedabfa81a0c5d3662aa1605c47ff1fcaf0b3a5)
|
|
@@ -3884,12 +3898,14 @@ class CfnImagePipeline(
|
|
|
3884
3898
|
description=description,
|
|
3885
3899
|
distribution_configuration_arn=distribution_configuration_arn,
|
|
3886
3900
|
enhanced_image_metadata_enabled=enhanced_image_metadata_enabled,
|
|
3901
|
+
execution_role=execution_role,
|
|
3887
3902
|
image_recipe_arn=image_recipe_arn,
|
|
3888
3903
|
image_scanning_configuration=image_scanning_configuration,
|
|
3889
3904
|
image_tests_configuration=image_tests_configuration,
|
|
3890
3905
|
schedule=schedule,
|
|
3891
3906
|
status=status,
|
|
3892
3907
|
tags=tags,
|
|
3908
|
+
workflows=workflows,
|
|
3893
3909
|
)
|
|
3894
3910
|
|
|
3895
3911
|
jsii.create(self.__class__, self, [scope, id, props])
|
|
@@ -4041,6 +4057,19 @@ class CfnImagePipeline(
|
|
|
4041
4057
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4042
4058
|
jsii.set(self, "enhancedImageMetadataEnabled", value)
|
|
4043
4059
|
|
|
4060
|
+
@builtins.property
|
|
4061
|
+
@jsii.member(jsii_name="executionRole")
|
|
4062
|
+
def execution_role(self) -> typing.Optional[builtins.str]:
|
|
4063
|
+
'''The execution role name/ARN for the image build, if provided.'''
|
|
4064
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "executionRole"))
|
|
4065
|
+
|
|
4066
|
+
@execution_role.setter
|
|
4067
|
+
def execution_role(self, value: typing.Optional[builtins.str]) -> None:
|
|
4068
|
+
if __debug__:
|
|
4069
|
+
type_hints = typing.get_type_hints(_typecheckingstub__4ebcf34a24070ac97fff298c2904bf78391a1a430eba771320445f80a0ff1f2d)
|
|
4070
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4071
|
+
jsii.set(self, "executionRole", value)
|
|
4072
|
+
|
|
4044
4073
|
@builtins.property
|
|
4045
4074
|
@jsii.member(jsii_name="imageRecipeArn")
|
|
4046
4075
|
def image_recipe_arn(self) -> typing.Optional[builtins.str]:
|
|
@@ -4137,6 +4166,24 @@ class CfnImagePipeline(
|
|
|
4137
4166
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4138
4167
|
jsii.set(self, "tagsRaw", value)
|
|
4139
4168
|
|
|
4169
|
+
@builtins.property
|
|
4170
|
+
@jsii.member(jsii_name="workflows")
|
|
4171
|
+
def workflows(
|
|
4172
|
+
self,
|
|
4173
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnImagePipeline.WorkflowConfigurationProperty"]]]]:
|
|
4174
|
+
'''Workflows to define the image build process.'''
|
|
4175
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnImagePipeline.WorkflowConfigurationProperty"]]]], jsii.get(self, "workflows"))
|
|
4176
|
+
|
|
4177
|
+
@workflows.setter
|
|
4178
|
+
def workflows(
|
|
4179
|
+
self,
|
|
4180
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnImagePipeline.WorkflowConfigurationProperty"]]]],
|
|
4181
|
+
) -> None:
|
|
4182
|
+
if __debug__:
|
|
4183
|
+
type_hints = typing.get_type_hints(_typecheckingstub__d31373519ea07e5936785c1446524bda21756ca2eb6c12f87303f5a12dc18c4f)
|
|
4184
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4185
|
+
jsii.set(self, "workflows", value)
|
|
4186
|
+
|
|
4140
4187
|
@jsii.data_type(
|
|
4141
4188
|
jsii_type="aws-cdk-lib.aws_imagebuilder.CfnImagePipeline.EcrConfigurationProperty",
|
|
4142
4189
|
jsii_struct_bases=[],
|
|
@@ -4392,7 +4439,7 @@ class CfnImagePipeline(
|
|
|
4392
4439
|
pipeline_execution_start_condition: typing.Optional[builtins.str] = None,
|
|
4393
4440
|
schedule_expression: typing.Optional[builtins.str] = None,
|
|
4394
4441
|
) -> None:
|
|
4395
|
-
'''A schedule configures how often
|
|
4442
|
+
'''A schedule configures when and how often a pipeline will automatically create a new image.
|
|
4396
4443
|
|
|
4397
4444
|
:param pipeline_execution_start_condition: The condition configures when the pipeline should trigger a new image build. When the ``pipelineExecutionStartCondition`` is set to ``EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE`` , and you use semantic version filters on the base image or components in your image recipe, Image Builder will build a new image only when there are new versions of the image or components in your recipe that match the semantic version filter. When it is set to ``EXPRESSION_MATCH_ONLY`` , it will build a new image every time the CRON expression matches the current time. For semantic version syntax, see `CreateComponent <https://docs.aws.amazon.com/imagebuilder/latest/APIReference/API_CreateComponent.html>`_ in the *Image Builder API Reference* .
|
|
4398
4445
|
:param schedule_expression: The cron expression determines how often EC2 Image Builder evaluates your ``pipelineExecutionStartCondition`` . For information on how to format a cron expression in Image Builder, see `Use cron expressions in EC2 Image Builder <https://docs.aws.amazon.com/imagebuilder/latest/userguide/image-builder-cron.html>`_ .
|
|
@@ -4454,6 +4501,184 @@ class CfnImagePipeline(
|
|
|
4454
4501
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
4455
4502
|
)
|
|
4456
4503
|
|
|
4504
|
+
@jsii.data_type(
|
|
4505
|
+
jsii_type="aws-cdk-lib.aws_imagebuilder.CfnImagePipeline.WorkflowConfigurationProperty",
|
|
4506
|
+
jsii_struct_bases=[],
|
|
4507
|
+
name_mapping={
|
|
4508
|
+
"on_failure": "onFailure",
|
|
4509
|
+
"parallel_group": "parallelGroup",
|
|
4510
|
+
"parameters": "parameters",
|
|
4511
|
+
"workflow_arn": "workflowArn",
|
|
4512
|
+
},
|
|
4513
|
+
)
|
|
4514
|
+
class WorkflowConfigurationProperty:
|
|
4515
|
+
def __init__(
|
|
4516
|
+
self,
|
|
4517
|
+
*,
|
|
4518
|
+
on_failure: typing.Optional[builtins.str] = None,
|
|
4519
|
+
parallel_group: typing.Optional[builtins.str] = None,
|
|
4520
|
+
parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnImagePipeline.WorkflowParameterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
4521
|
+
workflow_arn: typing.Optional[builtins.str] = None,
|
|
4522
|
+
) -> None:
|
|
4523
|
+
'''The workflow configuration of the image.
|
|
4524
|
+
|
|
4525
|
+
:param on_failure: Define execution decision in case of workflow failure.
|
|
4526
|
+
:param parallel_group: The parallel group name.
|
|
4527
|
+
:param parameters: The parameters associated with the workflow.
|
|
4528
|
+
:param workflow_arn: The Amazon Resource Name (ARN) of the workflow.
|
|
4529
|
+
|
|
4530
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-workflowconfiguration.html
|
|
4531
|
+
:exampleMetadata: fixture=_generated
|
|
4532
|
+
|
|
4533
|
+
Example::
|
|
4534
|
+
|
|
4535
|
+
# The code below shows an example of how to instantiate this type.
|
|
4536
|
+
# The values are placeholders you should change.
|
|
4537
|
+
from aws_cdk import aws_imagebuilder as imagebuilder
|
|
4538
|
+
|
|
4539
|
+
workflow_configuration_property = imagebuilder.CfnImagePipeline.WorkflowConfigurationProperty(
|
|
4540
|
+
on_failure="onFailure",
|
|
4541
|
+
parallel_group="parallelGroup",
|
|
4542
|
+
parameters=[imagebuilder.CfnImagePipeline.WorkflowParameterProperty(
|
|
4543
|
+
name="name",
|
|
4544
|
+
value=["value"]
|
|
4545
|
+
)],
|
|
4546
|
+
workflow_arn="workflowArn"
|
|
4547
|
+
)
|
|
4548
|
+
'''
|
|
4549
|
+
if __debug__:
|
|
4550
|
+
type_hints = typing.get_type_hints(_typecheckingstub__665a1259d83ae867bae960e30b1d2c041292af4f49417c7f7eca3bd35857c4a3)
|
|
4551
|
+
check_type(argname="argument on_failure", value=on_failure, expected_type=type_hints["on_failure"])
|
|
4552
|
+
check_type(argname="argument parallel_group", value=parallel_group, expected_type=type_hints["parallel_group"])
|
|
4553
|
+
check_type(argname="argument parameters", value=parameters, expected_type=type_hints["parameters"])
|
|
4554
|
+
check_type(argname="argument workflow_arn", value=workflow_arn, expected_type=type_hints["workflow_arn"])
|
|
4555
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
4556
|
+
if on_failure is not None:
|
|
4557
|
+
self._values["on_failure"] = on_failure
|
|
4558
|
+
if parallel_group is not None:
|
|
4559
|
+
self._values["parallel_group"] = parallel_group
|
|
4560
|
+
if parameters is not None:
|
|
4561
|
+
self._values["parameters"] = parameters
|
|
4562
|
+
if workflow_arn is not None:
|
|
4563
|
+
self._values["workflow_arn"] = workflow_arn
|
|
4564
|
+
|
|
4565
|
+
@builtins.property
|
|
4566
|
+
def on_failure(self) -> typing.Optional[builtins.str]:
|
|
4567
|
+
'''Define execution decision in case of workflow failure.
|
|
4568
|
+
|
|
4569
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-workflowconfiguration.html#cfn-imagebuilder-imagepipeline-workflowconfiguration-onfailure
|
|
4570
|
+
'''
|
|
4571
|
+
result = self._values.get("on_failure")
|
|
4572
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
4573
|
+
|
|
4574
|
+
@builtins.property
|
|
4575
|
+
def parallel_group(self) -> typing.Optional[builtins.str]:
|
|
4576
|
+
'''The parallel group name.
|
|
4577
|
+
|
|
4578
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-workflowconfiguration.html#cfn-imagebuilder-imagepipeline-workflowconfiguration-parallelgroup
|
|
4579
|
+
'''
|
|
4580
|
+
result = self._values.get("parallel_group")
|
|
4581
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
4582
|
+
|
|
4583
|
+
@builtins.property
|
|
4584
|
+
def parameters(
|
|
4585
|
+
self,
|
|
4586
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnImagePipeline.WorkflowParameterProperty"]]]]:
|
|
4587
|
+
'''The parameters associated with the workflow.
|
|
4588
|
+
|
|
4589
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-workflowconfiguration.html#cfn-imagebuilder-imagepipeline-workflowconfiguration-parameters
|
|
4590
|
+
'''
|
|
4591
|
+
result = self._values.get("parameters")
|
|
4592
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnImagePipeline.WorkflowParameterProperty"]]]], result)
|
|
4593
|
+
|
|
4594
|
+
@builtins.property
|
|
4595
|
+
def workflow_arn(self) -> typing.Optional[builtins.str]:
|
|
4596
|
+
'''The Amazon Resource Name (ARN) of the workflow.
|
|
4597
|
+
|
|
4598
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-workflowconfiguration.html#cfn-imagebuilder-imagepipeline-workflowconfiguration-workflowarn
|
|
4599
|
+
'''
|
|
4600
|
+
result = self._values.get("workflow_arn")
|
|
4601
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
4602
|
+
|
|
4603
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
4604
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
4605
|
+
|
|
4606
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
4607
|
+
return not (rhs == self)
|
|
4608
|
+
|
|
4609
|
+
def __repr__(self) -> str:
|
|
4610
|
+
return "WorkflowConfigurationProperty(%s)" % ", ".join(
|
|
4611
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
4612
|
+
)
|
|
4613
|
+
|
|
4614
|
+
@jsii.data_type(
|
|
4615
|
+
jsii_type="aws-cdk-lib.aws_imagebuilder.CfnImagePipeline.WorkflowParameterProperty",
|
|
4616
|
+
jsii_struct_bases=[],
|
|
4617
|
+
name_mapping={"name": "name", "value": "value"},
|
|
4618
|
+
)
|
|
4619
|
+
class WorkflowParameterProperty:
|
|
4620
|
+
def __init__(
|
|
4621
|
+
self,
|
|
4622
|
+
*,
|
|
4623
|
+
name: typing.Optional[builtins.str] = None,
|
|
4624
|
+
value: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
4625
|
+
) -> None:
|
|
4626
|
+
'''A parameter associated with the workflow.
|
|
4627
|
+
|
|
4628
|
+
:param name:
|
|
4629
|
+
:param value:
|
|
4630
|
+
|
|
4631
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-workflowparameter.html
|
|
4632
|
+
:exampleMetadata: fixture=_generated
|
|
4633
|
+
|
|
4634
|
+
Example::
|
|
4635
|
+
|
|
4636
|
+
# The code below shows an example of how to instantiate this type.
|
|
4637
|
+
# The values are placeholders you should change.
|
|
4638
|
+
from aws_cdk import aws_imagebuilder as imagebuilder
|
|
4639
|
+
|
|
4640
|
+
workflow_parameter_property = imagebuilder.CfnImagePipeline.WorkflowParameterProperty(
|
|
4641
|
+
name="name",
|
|
4642
|
+
value=["value"]
|
|
4643
|
+
)
|
|
4644
|
+
'''
|
|
4645
|
+
if __debug__:
|
|
4646
|
+
type_hints = typing.get_type_hints(_typecheckingstub__2e3c12bbd170116ab79a812e4141a317f3b456ad0a64acefae39ebbdf20aa068)
|
|
4647
|
+
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
4648
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4649
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
4650
|
+
if name is not None:
|
|
4651
|
+
self._values["name"] = name
|
|
4652
|
+
if value is not None:
|
|
4653
|
+
self._values["value"] = value
|
|
4654
|
+
|
|
4655
|
+
@builtins.property
|
|
4656
|
+
def name(self) -> typing.Optional[builtins.str]:
|
|
4657
|
+
'''
|
|
4658
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-workflowparameter.html#cfn-imagebuilder-imagepipeline-workflowparameter-name
|
|
4659
|
+
'''
|
|
4660
|
+
result = self._values.get("name")
|
|
4661
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
4662
|
+
|
|
4663
|
+
@builtins.property
|
|
4664
|
+
def value(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
4665
|
+
'''
|
|
4666
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-workflowparameter.html#cfn-imagebuilder-imagepipeline-workflowparameter-value
|
|
4667
|
+
'''
|
|
4668
|
+
result = self._values.get("value")
|
|
4669
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
4670
|
+
|
|
4671
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
4672
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
4673
|
+
|
|
4674
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
4675
|
+
return not (rhs == self)
|
|
4676
|
+
|
|
4677
|
+
def __repr__(self) -> str:
|
|
4678
|
+
return "WorkflowParameterProperty(%s)" % ", ".join(
|
|
4679
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
4680
|
+
)
|
|
4681
|
+
|
|
4457
4682
|
|
|
4458
4683
|
@jsii.data_type(
|
|
4459
4684
|
jsii_type="aws-cdk-lib.aws_imagebuilder.CfnImagePipelineProps",
|
|
@@ -4465,12 +4690,14 @@ class CfnImagePipeline(
|
|
|
4465
4690
|
"description": "description",
|
|
4466
4691
|
"distribution_configuration_arn": "distributionConfigurationArn",
|
|
4467
4692
|
"enhanced_image_metadata_enabled": "enhancedImageMetadataEnabled",
|
|
4693
|
+
"execution_role": "executionRole",
|
|
4468
4694
|
"image_recipe_arn": "imageRecipeArn",
|
|
4469
4695
|
"image_scanning_configuration": "imageScanningConfiguration",
|
|
4470
4696
|
"image_tests_configuration": "imageTestsConfiguration",
|
|
4471
4697
|
"schedule": "schedule",
|
|
4472
4698
|
"status": "status",
|
|
4473
4699
|
"tags": "tags",
|
|
4700
|
+
"workflows": "workflows",
|
|
4474
4701
|
},
|
|
4475
4702
|
)
|
|
4476
4703
|
class CfnImagePipelineProps:
|
|
@@ -4483,12 +4710,14 @@ class CfnImagePipelineProps:
|
|
|
4483
4710
|
description: typing.Optional[builtins.str] = None,
|
|
4484
4711
|
distribution_configuration_arn: typing.Optional[builtins.str] = None,
|
|
4485
4712
|
enhanced_image_metadata_enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
4713
|
+
execution_role: typing.Optional[builtins.str] = None,
|
|
4486
4714
|
image_recipe_arn: typing.Optional[builtins.str] = None,
|
|
4487
4715
|
image_scanning_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImagePipeline.ImageScanningConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4488
4716
|
image_tests_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImagePipeline.ImageTestsConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4489
4717
|
schedule: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImagePipeline.ScheduleProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4490
4718
|
status: typing.Optional[builtins.str] = None,
|
|
4491
4719
|
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4720
|
+
workflows: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImagePipeline.WorkflowConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
4492
4721
|
) -> None:
|
|
4493
4722
|
'''Properties for defining a ``CfnImagePipeline``.
|
|
4494
4723
|
|
|
@@ -4498,12 +4727,14 @@ class CfnImagePipelineProps:
|
|
|
4498
4727
|
:param description: The description of this image pipeline.
|
|
4499
4728
|
:param distribution_configuration_arn: The Amazon Resource Name (ARN) of the distribution configuration associated with this image pipeline.
|
|
4500
4729
|
:param enhanced_image_metadata_enabled: Collects additional information about the image being created, including the operating system (OS) version and package list. This information is used to enhance the overall experience of using EC2 Image Builder. Enabled by default.
|
|
4730
|
+
:param execution_role: The execution role name/ARN for the image build, if provided.
|
|
4501
4731
|
:param image_recipe_arn: The Amazon Resource Name (ARN) of the image recipe associated with this image pipeline.
|
|
4502
4732
|
:param image_scanning_configuration: Contains settings for vulnerability scans.
|
|
4503
4733
|
:param image_tests_configuration: The configuration of the image tests that run after image creation to ensure the quality of the image that was created.
|
|
4504
4734
|
:param schedule: The schedule of the image pipeline. A schedule configures how often and when a pipeline automatically creates a new image.
|
|
4505
4735
|
:param status: The status of the image pipeline.
|
|
4506
4736
|
:param tags: The tags of this image pipeline.
|
|
4737
|
+
:param workflows: Workflows to define the image build process.
|
|
4507
4738
|
|
|
4508
4739
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html
|
|
4509
4740
|
:exampleMetadata: fixture=_generated
|
|
@@ -4523,6 +4754,7 @@ class CfnImagePipelineProps:
|
|
|
4523
4754
|
description="description",
|
|
4524
4755
|
distribution_configuration_arn="distributionConfigurationArn",
|
|
4525
4756
|
enhanced_image_metadata_enabled=False,
|
|
4757
|
+
execution_role="executionRole",
|
|
4526
4758
|
image_recipe_arn="imageRecipeArn",
|
|
4527
4759
|
image_scanning_configuration=imagebuilder.CfnImagePipeline.ImageScanningConfigurationProperty(
|
|
4528
4760
|
ecr_configuration=imagebuilder.CfnImagePipeline.EcrConfigurationProperty(
|
|
@@ -4542,7 +4774,16 @@ class CfnImagePipelineProps:
|
|
|
4542
4774
|
status="status",
|
|
4543
4775
|
tags={
|
|
4544
4776
|
"tags_key": "tags"
|
|
4545
|
-
}
|
|
4777
|
+
},
|
|
4778
|
+
workflows=[imagebuilder.CfnImagePipeline.WorkflowConfigurationProperty(
|
|
4779
|
+
on_failure="onFailure",
|
|
4780
|
+
parallel_group="parallelGroup",
|
|
4781
|
+
parameters=[imagebuilder.CfnImagePipeline.WorkflowParameterProperty(
|
|
4782
|
+
name="name",
|
|
4783
|
+
value=["value"]
|
|
4784
|
+
)],
|
|
4785
|
+
workflow_arn="workflowArn"
|
|
4786
|
+
)]
|
|
4546
4787
|
)
|
|
4547
4788
|
'''
|
|
4548
4789
|
if __debug__:
|
|
@@ -4553,12 +4794,14 @@ class CfnImagePipelineProps:
|
|
|
4553
4794
|
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
4554
4795
|
check_type(argname="argument distribution_configuration_arn", value=distribution_configuration_arn, expected_type=type_hints["distribution_configuration_arn"])
|
|
4555
4796
|
check_type(argname="argument enhanced_image_metadata_enabled", value=enhanced_image_metadata_enabled, expected_type=type_hints["enhanced_image_metadata_enabled"])
|
|
4797
|
+
check_type(argname="argument execution_role", value=execution_role, expected_type=type_hints["execution_role"])
|
|
4556
4798
|
check_type(argname="argument image_recipe_arn", value=image_recipe_arn, expected_type=type_hints["image_recipe_arn"])
|
|
4557
4799
|
check_type(argname="argument image_scanning_configuration", value=image_scanning_configuration, expected_type=type_hints["image_scanning_configuration"])
|
|
4558
4800
|
check_type(argname="argument image_tests_configuration", value=image_tests_configuration, expected_type=type_hints["image_tests_configuration"])
|
|
4559
4801
|
check_type(argname="argument schedule", value=schedule, expected_type=type_hints["schedule"])
|
|
4560
4802
|
check_type(argname="argument status", value=status, expected_type=type_hints["status"])
|
|
4561
4803
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
4804
|
+
check_type(argname="argument workflows", value=workflows, expected_type=type_hints["workflows"])
|
|
4562
4805
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
4563
4806
|
"infrastructure_configuration_arn": infrastructure_configuration_arn,
|
|
4564
4807
|
"name": name,
|
|
@@ -4571,6 +4814,8 @@ class CfnImagePipelineProps:
|
|
|
4571
4814
|
self._values["distribution_configuration_arn"] = distribution_configuration_arn
|
|
4572
4815
|
if enhanced_image_metadata_enabled is not None:
|
|
4573
4816
|
self._values["enhanced_image_metadata_enabled"] = enhanced_image_metadata_enabled
|
|
4817
|
+
if execution_role is not None:
|
|
4818
|
+
self._values["execution_role"] = execution_role
|
|
4574
4819
|
if image_recipe_arn is not None:
|
|
4575
4820
|
self._values["image_recipe_arn"] = image_recipe_arn
|
|
4576
4821
|
if image_scanning_configuration is not None:
|
|
@@ -4583,6 +4828,8 @@ class CfnImagePipelineProps:
|
|
|
4583
4828
|
self._values["status"] = status
|
|
4584
4829
|
if tags is not None:
|
|
4585
4830
|
self._values["tags"] = tags
|
|
4831
|
+
if workflows is not None:
|
|
4832
|
+
self._values["workflows"] = workflows
|
|
4586
4833
|
|
|
4587
4834
|
@builtins.property
|
|
4588
4835
|
def infrastructure_configuration_arn(self) -> builtins.str:
|
|
@@ -4644,6 +4891,15 @@ class CfnImagePipelineProps:
|
|
|
4644
4891
|
result = self._values.get("enhanced_image_metadata_enabled")
|
|
4645
4892
|
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
4646
4893
|
|
|
4894
|
+
@builtins.property
|
|
4895
|
+
def execution_role(self) -> typing.Optional[builtins.str]:
|
|
4896
|
+
'''The execution role name/ARN for the image build, if provided.
|
|
4897
|
+
|
|
4898
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-executionrole
|
|
4899
|
+
'''
|
|
4900
|
+
result = self._values.get("execution_role")
|
|
4901
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
4902
|
+
|
|
4647
4903
|
@builtins.property
|
|
4648
4904
|
def image_recipe_arn(self) -> typing.Optional[builtins.str]:
|
|
4649
4905
|
'''The Amazon Resource Name (ARN) of the image recipe associated with this image pipeline.
|
|
@@ -4706,6 +4962,17 @@ class CfnImagePipelineProps:
|
|
|
4706
4962
|
result = self._values.get("tags")
|
|
4707
4963
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, builtins.str]], result)
|
|
4708
4964
|
|
|
4965
|
+
@builtins.property
|
|
4966
|
+
def workflows(
|
|
4967
|
+
self,
|
|
4968
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnImagePipeline.WorkflowConfigurationProperty]]]]:
|
|
4969
|
+
'''Workflows to define the image build process.
|
|
4970
|
+
|
|
4971
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-workflows
|
|
4972
|
+
'''
|
|
4973
|
+
result = self._values.get("workflows")
|
|
4974
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnImagePipeline.WorkflowConfigurationProperty]]]], result)
|
|
4975
|
+
|
|
4709
4976
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
4710
4977
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
4711
4978
|
|
|
@@ -6986,7 +7253,7 @@ class CfnLifecyclePolicy(
|
|
|
6986
7253
|
'''
|
|
6987
7254
|
:param scope: Scope in which this resource is defined.
|
|
6988
7255
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
6989
|
-
:param execution_role: The name of the IAM role that Image Builder uses to run the lifecycle policy. This is a custom role that you create.
|
|
7256
|
+
:param execution_role: The name or Amazon Resource Name (ARN) of the IAM role that Image Builder uses to run the lifecycle policy. This is a custom role that you create.
|
|
6990
7257
|
:param name: The name of the lifecycle policy.
|
|
6991
7258
|
:param policy_details: The configuration details for a lifecycle policy resource.
|
|
6992
7259
|
:param resource_selection: Resource selection criteria used to run the lifecycle policy.
|
|
@@ -7059,7 +7326,7 @@ class CfnLifecyclePolicy(
|
|
|
7059
7326
|
@builtins.property
|
|
7060
7327
|
@jsii.member(jsii_name="executionRole")
|
|
7061
7328
|
def execution_role(self) -> builtins.str:
|
|
7062
|
-
'''The name of the IAM role that Image Builder uses to run the lifecycle policy.'''
|
|
7329
|
+
'''The name or Amazon Resource Name (ARN) of the IAM role that Image Builder uses to run the lifecycle policy.'''
|
|
7063
7330
|
return typing.cast(builtins.str, jsii.get(self, "executionRole"))
|
|
7064
7331
|
|
|
7065
7332
|
@execution_role.setter
|
|
@@ -8056,7 +8323,7 @@ class CfnLifecyclePolicyProps:
|
|
|
8056
8323
|
) -> None:
|
|
8057
8324
|
'''Properties for defining a ``CfnLifecyclePolicy``.
|
|
8058
8325
|
|
|
8059
|
-
:param execution_role: The name of the IAM role that Image Builder uses to run the lifecycle policy. This is a custom role that you create.
|
|
8326
|
+
:param execution_role: The name or Amazon Resource Name (ARN) of the IAM role that Image Builder uses to run the lifecycle policy. This is a custom role that you create.
|
|
8060
8327
|
:param name: The name of the lifecycle policy.
|
|
8061
8328
|
:param policy_details: The configuration details for a lifecycle policy resource.
|
|
8062
8329
|
:param resource_selection: Resource selection criteria used to run the lifecycle policy.
|
|
@@ -8163,7 +8430,7 @@ class CfnLifecyclePolicyProps:
|
|
|
8163
8430
|
|
|
8164
8431
|
@builtins.property
|
|
8165
8432
|
def execution_role(self) -> builtins.str:
|
|
8166
|
-
'''The name of the IAM role that Image Builder uses to run the lifecycle policy.
|
|
8433
|
+
'''The name or Amazon Resource Name (ARN) of the IAM role that Image Builder uses to run the lifecycle policy.
|
|
8167
8434
|
|
|
8168
8435
|
This is a custom role that you create.
|
|
8169
8436
|
|
|
@@ -8258,84 +8525,523 @@ class CfnLifecyclePolicyProps:
|
|
|
8258
8525
|
)
|
|
8259
8526
|
|
|
8260
8527
|
|
|
8261
|
-
|
|
8262
|
-
|
|
8263
|
-
|
|
8264
|
-
|
|
8265
|
-
"
|
|
8266
|
-
|
|
8267
|
-
|
|
8268
|
-
"CfnImage",
|
|
8269
|
-
"CfnImagePipeline",
|
|
8270
|
-
"CfnImagePipelineProps",
|
|
8271
|
-
"CfnImageProps",
|
|
8272
|
-
"CfnImageRecipe",
|
|
8273
|
-
"CfnImageRecipeProps",
|
|
8274
|
-
"CfnInfrastructureConfiguration",
|
|
8275
|
-
"CfnInfrastructureConfigurationProps",
|
|
8276
|
-
"CfnLifecyclePolicy",
|
|
8277
|
-
"CfnLifecyclePolicyProps",
|
|
8278
|
-
]
|
|
8279
|
-
|
|
8280
|
-
publication.publish()
|
|
8281
|
-
|
|
8282
|
-
def _typecheckingstub__cee6f52d40719e283a6d76c8b6a6d4fb48180c9c7f4901a21ff32e8627d45b9e(
|
|
8283
|
-
scope: _constructs_77d1e7e8.Construct,
|
|
8284
|
-
id: builtins.str,
|
|
8285
|
-
*,
|
|
8286
|
-
name: builtins.str,
|
|
8287
|
-
platform: builtins.str,
|
|
8288
|
-
version: builtins.str,
|
|
8289
|
-
change_description: typing.Optional[builtins.str] = None,
|
|
8290
|
-
data: typing.Optional[builtins.str] = None,
|
|
8291
|
-
description: typing.Optional[builtins.str] = None,
|
|
8292
|
-
kms_key_id: typing.Optional[builtins.str] = None,
|
|
8293
|
-
supported_os_versions: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
8294
|
-
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
8295
|
-
uri: typing.Optional[builtins.str] = None,
|
|
8296
|
-
) -> None:
|
|
8297
|
-
"""Type checking stubs"""
|
|
8298
|
-
pass
|
|
8299
|
-
|
|
8300
|
-
def _typecheckingstub__40b669a1c43c3b3079f4db289296a5190bc19737cdacec67b41121ffeb77db84(
|
|
8301
|
-
inspector: _TreeInspector_488e0dd5,
|
|
8302
|
-
) -> None:
|
|
8303
|
-
"""Type checking stubs"""
|
|
8304
|
-
pass
|
|
8305
|
-
|
|
8306
|
-
def _typecheckingstub__aa56b38fd57c0ef3c75a0f7854e12f5650c218ee9da1e6a0fc3566f2d0bb250e(
|
|
8307
|
-
props: typing.Mapping[builtins.str, typing.Any],
|
|
8308
|
-
) -> None:
|
|
8309
|
-
"""Type checking stubs"""
|
|
8310
|
-
pass
|
|
8311
|
-
|
|
8312
|
-
def _typecheckingstub__ad2e949f47b8d1f3fa28e8aecc85097ba0e494b4114a67857ca7449b71baa7eb(
|
|
8313
|
-
value: builtins.str,
|
|
8314
|
-
) -> None:
|
|
8315
|
-
"""Type checking stubs"""
|
|
8316
|
-
pass
|
|
8528
|
+
@jsii.implements(_IInspectable_c2943556)
|
|
8529
|
+
class CfnWorkflow(
|
|
8530
|
+
_CfnResource_9df397a6,
|
|
8531
|
+
metaclass=jsii.JSIIMeta,
|
|
8532
|
+
jsii_type="aws-cdk-lib.aws_imagebuilder.CfnWorkflow",
|
|
8533
|
+
):
|
|
8534
|
+
'''Resource schema for AWS::ImageBuilder::Workflow.
|
|
8317
8535
|
|
|
8318
|
-
|
|
8319
|
-
|
|
8320
|
-
|
|
8321
|
-
"""Type checking stubs"""
|
|
8322
|
-
pass
|
|
8536
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-workflow.html
|
|
8537
|
+
:cloudformationResource: AWS::ImageBuilder::Workflow
|
|
8538
|
+
:exampleMetadata: fixture=_generated
|
|
8323
8539
|
|
|
8324
|
-
|
|
8325
|
-
value: builtins.str,
|
|
8326
|
-
) -> None:
|
|
8327
|
-
"""Type checking stubs"""
|
|
8328
|
-
pass
|
|
8540
|
+
Example::
|
|
8329
8541
|
|
|
8330
|
-
|
|
8331
|
-
|
|
8332
|
-
|
|
8333
|
-
|
|
8334
|
-
|
|
8542
|
+
# The code below shows an example of how to instantiate this type.
|
|
8543
|
+
# The values are placeholders you should change.
|
|
8544
|
+
from aws_cdk import aws_imagebuilder as imagebuilder
|
|
8545
|
+
|
|
8546
|
+
cfn_workflow = imagebuilder.CfnWorkflow(self, "MyCfnWorkflow",
|
|
8547
|
+
name="name",
|
|
8548
|
+
type="type",
|
|
8549
|
+
version="version",
|
|
8550
|
+
|
|
8551
|
+
# the properties below are optional
|
|
8552
|
+
change_description="changeDescription",
|
|
8553
|
+
data="data",
|
|
8554
|
+
description="description",
|
|
8555
|
+
kms_key_id="kmsKeyId",
|
|
8556
|
+
tags={
|
|
8557
|
+
"tags_key": "tags"
|
|
8558
|
+
},
|
|
8559
|
+
uri="uri"
|
|
8560
|
+
)
|
|
8561
|
+
'''
|
|
8335
8562
|
|
|
8336
|
-
def
|
|
8337
|
-
|
|
8338
|
-
|
|
8563
|
+
def __init__(
|
|
8564
|
+
self,
|
|
8565
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
8566
|
+
id: builtins.str,
|
|
8567
|
+
*,
|
|
8568
|
+
name: builtins.str,
|
|
8569
|
+
type: builtins.str,
|
|
8570
|
+
version: builtins.str,
|
|
8571
|
+
change_description: typing.Optional[builtins.str] = None,
|
|
8572
|
+
data: typing.Optional[builtins.str] = None,
|
|
8573
|
+
description: typing.Optional[builtins.str] = None,
|
|
8574
|
+
kms_key_id: typing.Optional[builtins.str] = None,
|
|
8575
|
+
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
8576
|
+
uri: typing.Optional[builtins.str] = None,
|
|
8577
|
+
) -> None:
|
|
8578
|
+
'''
|
|
8579
|
+
:param scope: Scope in which this resource is defined.
|
|
8580
|
+
:param id: Construct identifier for this resource (unique in its scope).
|
|
8581
|
+
:param name: The name of the workflow.
|
|
8582
|
+
:param type: The type of the workflow denotes whether the workflow is used to build, test, or distribute.
|
|
8583
|
+
:param version: The version of the workflow.
|
|
8584
|
+
:param change_description: The change description of the workflow.
|
|
8585
|
+
:param data: The data of the workflow.
|
|
8586
|
+
:param description: The description of the workflow.
|
|
8587
|
+
:param kms_key_id: The KMS key identifier used to encrypt the workflow.
|
|
8588
|
+
:param tags: The tags associated with the workflow.
|
|
8589
|
+
:param uri: The uri of the workflow.
|
|
8590
|
+
'''
|
|
8591
|
+
if __debug__:
|
|
8592
|
+
type_hints = typing.get_type_hints(_typecheckingstub__bd82b8722476efd9ae3c84a0cf5b8f1d6b48550745017b0d128afabf5f24b5b2)
|
|
8593
|
+
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
8594
|
+
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
8595
|
+
props = CfnWorkflowProps(
|
|
8596
|
+
name=name,
|
|
8597
|
+
type=type,
|
|
8598
|
+
version=version,
|
|
8599
|
+
change_description=change_description,
|
|
8600
|
+
data=data,
|
|
8601
|
+
description=description,
|
|
8602
|
+
kms_key_id=kms_key_id,
|
|
8603
|
+
tags=tags,
|
|
8604
|
+
uri=uri,
|
|
8605
|
+
)
|
|
8606
|
+
|
|
8607
|
+
jsii.create(self.__class__, self, [scope, id, props])
|
|
8608
|
+
|
|
8609
|
+
@jsii.member(jsii_name="inspect")
|
|
8610
|
+
def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
|
|
8611
|
+
'''Examines the CloudFormation resource and discloses attributes.
|
|
8612
|
+
|
|
8613
|
+
:param inspector: tree inspector to collect and process attributes.
|
|
8614
|
+
'''
|
|
8615
|
+
if __debug__:
|
|
8616
|
+
type_hints = typing.get_type_hints(_typecheckingstub__eb3d8659b8d763c14b7737c9410afacee05a27e95b64c0ed4b73165d968ab03c)
|
|
8617
|
+
check_type(argname="argument inspector", value=inspector, expected_type=type_hints["inspector"])
|
|
8618
|
+
return typing.cast(None, jsii.invoke(self, "inspect", [inspector]))
|
|
8619
|
+
|
|
8620
|
+
@jsii.member(jsii_name="renderProperties")
|
|
8621
|
+
def _render_properties(
|
|
8622
|
+
self,
|
|
8623
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
8624
|
+
) -> typing.Mapping[builtins.str, typing.Any]:
|
|
8625
|
+
'''
|
|
8626
|
+
:param props: -
|
|
8627
|
+
'''
|
|
8628
|
+
if __debug__:
|
|
8629
|
+
type_hints = typing.get_type_hints(_typecheckingstub__56f66168df4b459392919a074261a67669f13f593780de274f36bbeb7bc11b3c)
|
|
8630
|
+
check_type(argname="argument props", value=props, expected_type=type_hints["props"])
|
|
8631
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "renderProperties", [props]))
|
|
8632
|
+
|
|
8633
|
+
@jsii.python.classproperty
|
|
8634
|
+
@jsii.member(jsii_name="CFN_RESOURCE_TYPE_NAME")
|
|
8635
|
+
def CFN_RESOURCE_TYPE_NAME(cls) -> builtins.str:
|
|
8636
|
+
'''The CloudFormation resource type name for this resource class.'''
|
|
8637
|
+
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
8638
|
+
|
|
8639
|
+
@builtins.property
|
|
8640
|
+
@jsii.member(jsii_name="attrArn")
|
|
8641
|
+
def attr_arn(self) -> builtins.str:
|
|
8642
|
+
'''The Amazon Resource Name (ARN) of the workflow.
|
|
8643
|
+
|
|
8644
|
+
:cloudformationAttribute: Arn
|
|
8645
|
+
'''
|
|
8646
|
+
return typing.cast(builtins.str, jsii.get(self, "attrArn"))
|
|
8647
|
+
|
|
8648
|
+
@builtins.property
|
|
8649
|
+
@jsii.member(jsii_name="cfnProperties")
|
|
8650
|
+
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
8651
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
|
|
8652
|
+
|
|
8653
|
+
@builtins.property
|
|
8654
|
+
@jsii.member(jsii_name="name")
|
|
8655
|
+
def name(self) -> builtins.str:
|
|
8656
|
+
'''The name of the workflow.'''
|
|
8657
|
+
return typing.cast(builtins.str, jsii.get(self, "name"))
|
|
8658
|
+
|
|
8659
|
+
@name.setter
|
|
8660
|
+
def name(self, value: builtins.str) -> None:
|
|
8661
|
+
if __debug__:
|
|
8662
|
+
type_hints = typing.get_type_hints(_typecheckingstub__b9ca2ede358f8e6d6f27ece2e03d7d871d14d1daaeba3cb4c788afc33c2bc227)
|
|
8663
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
8664
|
+
jsii.set(self, "name", value)
|
|
8665
|
+
|
|
8666
|
+
@builtins.property
|
|
8667
|
+
@jsii.member(jsii_name="type")
|
|
8668
|
+
def type(self) -> builtins.str:
|
|
8669
|
+
'''The type of the workflow denotes whether the workflow is used to build, test, or distribute.'''
|
|
8670
|
+
return typing.cast(builtins.str, jsii.get(self, "type"))
|
|
8671
|
+
|
|
8672
|
+
@type.setter
|
|
8673
|
+
def type(self, value: builtins.str) -> None:
|
|
8674
|
+
if __debug__:
|
|
8675
|
+
type_hints = typing.get_type_hints(_typecheckingstub__41b009fd9ca27b9f352338a895a62a4f074e2c7eb510b43e13f8792747f571c5)
|
|
8676
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
8677
|
+
jsii.set(self, "type", value)
|
|
8678
|
+
|
|
8679
|
+
@builtins.property
|
|
8680
|
+
@jsii.member(jsii_name="version")
|
|
8681
|
+
def version(self) -> builtins.str:
|
|
8682
|
+
'''The version of the workflow.'''
|
|
8683
|
+
return typing.cast(builtins.str, jsii.get(self, "version"))
|
|
8684
|
+
|
|
8685
|
+
@version.setter
|
|
8686
|
+
def version(self, value: builtins.str) -> None:
|
|
8687
|
+
if __debug__:
|
|
8688
|
+
type_hints = typing.get_type_hints(_typecheckingstub__2ce08768a8ac00cab8a7fb60330cb7f716c6376d6d056e8ade1e44a26436417d)
|
|
8689
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
8690
|
+
jsii.set(self, "version", value)
|
|
8691
|
+
|
|
8692
|
+
@builtins.property
|
|
8693
|
+
@jsii.member(jsii_name="changeDescription")
|
|
8694
|
+
def change_description(self) -> typing.Optional[builtins.str]:
|
|
8695
|
+
'''The change description of the workflow.'''
|
|
8696
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "changeDescription"))
|
|
8697
|
+
|
|
8698
|
+
@change_description.setter
|
|
8699
|
+
def change_description(self, value: typing.Optional[builtins.str]) -> None:
|
|
8700
|
+
if __debug__:
|
|
8701
|
+
type_hints = typing.get_type_hints(_typecheckingstub__b245fa74b6c4cb04ff6723da66ff8f8cd6af6cd5bcb55ede52fbb7a4519992d9)
|
|
8702
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
8703
|
+
jsii.set(self, "changeDescription", value)
|
|
8704
|
+
|
|
8705
|
+
@builtins.property
|
|
8706
|
+
@jsii.member(jsii_name="data")
|
|
8707
|
+
def data(self) -> typing.Optional[builtins.str]:
|
|
8708
|
+
'''The data of the workflow.'''
|
|
8709
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "data"))
|
|
8710
|
+
|
|
8711
|
+
@data.setter
|
|
8712
|
+
def data(self, value: typing.Optional[builtins.str]) -> None:
|
|
8713
|
+
if __debug__:
|
|
8714
|
+
type_hints = typing.get_type_hints(_typecheckingstub__57d165db317968c3d0b9096bb379e7548f28dec9638ea2beebdc78b7bdf0e904)
|
|
8715
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
8716
|
+
jsii.set(self, "data", value)
|
|
8717
|
+
|
|
8718
|
+
@builtins.property
|
|
8719
|
+
@jsii.member(jsii_name="description")
|
|
8720
|
+
def description(self) -> typing.Optional[builtins.str]:
|
|
8721
|
+
'''The description of the workflow.'''
|
|
8722
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "description"))
|
|
8723
|
+
|
|
8724
|
+
@description.setter
|
|
8725
|
+
def description(self, value: typing.Optional[builtins.str]) -> None:
|
|
8726
|
+
if __debug__:
|
|
8727
|
+
type_hints = typing.get_type_hints(_typecheckingstub__b296abb92cd399ea05e8c119ac7fdf0c7ac681e045dc5b83cfc6d9b0d97b7233)
|
|
8728
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
8729
|
+
jsii.set(self, "description", value)
|
|
8730
|
+
|
|
8731
|
+
@builtins.property
|
|
8732
|
+
@jsii.member(jsii_name="kmsKeyId")
|
|
8733
|
+
def kms_key_id(self) -> typing.Optional[builtins.str]:
|
|
8734
|
+
'''The KMS key identifier used to encrypt the workflow.'''
|
|
8735
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "kmsKeyId"))
|
|
8736
|
+
|
|
8737
|
+
@kms_key_id.setter
|
|
8738
|
+
def kms_key_id(self, value: typing.Optional[builtins.str]) -> None:
|
|
8739
|
+
if __debug__:
|
|
8740
|
+
type_hints = typing.get_type_hints(_typecheckingstub__9b8bb7c0820c2fd1205773d0df64a2953848236b9ead853f32d65a2239aaafa0)
|
|
8741
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
8742
|
+
jsii.set(self, "kmsKeyId", value)
|
|
8743
|
+
|
|
8744
|
+
@builtins.property
|
|
8745
|
+
@jsii.member(jsii_name="tags")
|
|
8746
|
+
def tags(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
|
|
8747
|
+
'''The tags associated with the workflow.'''
|
|
8748
|
+
return typing.cast(typing.Optional[typing.Mapping[builtins.str, builtins.str]], jsii.get(self, "tags"))
|
|
8749
|
+
|
|
8750
|
+
@tags.setter
|
|
8751
|
+
def tags(
|
|
8752
|
+
self,
|
|
8753
|
+
value: typing.Optional[typing.Mapping[builtins.str, builtins.str]],
|
|
8754
|
+
) -> None:
|
|
8755
|
+
if __debug__:
|
|
8756
|
+
type_hints = typing.get_type_hints(_typecheckingstub__1212a2dd4ab9ee1b3006c19c3027125ab0148561c4bc08b5d80fc0e29bfdf854)
|
|
8757
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
8758
|
+
jsii.set(self, "tags", value)
|
|
8759
|
+
|
|
8760
|
+
@builtins.property
|
|
8761
|
+
@jsii.member(jsii_name="uri")
|
|
8762
|
+
def uri(self) -> typing.Optional[builtins.str]:
|
|
8763
|
+
'''The uri of the workflow.'''
|
|
8764
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "uri"))
|
|
8765
|
+
|
|
8766
|
+
@uri.setter
|
|
8767
|
+
def uri(self, value: typing.Optional[builtins.str]) -> None:
|
|
8768
|
+
if __debug__:
|
|
8769
|
+
type_hints = typing.get_type_hints(_typecheckingstub__2e36c0e0583778b96be119919e9f8e273d4b8ff0bfa5e58c3049f2cc89a520dd)
|
|
8770
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
8771
|
+
jsii.set(self, "uri", value)
|
|
8772
|
+
|
|
8773
|
+
|
|
8774
|
+
@jsii.data_type(
|
|
8775
|
+
jsii_type="aws-cdk-lib.aws_imagebuilder.CfnWorkflowProps",
|
|
8776
|
+
jsii_struct_bases=[],
|
|
8777
|
+
name_mapping={
|
|
8778
|
+
"name": "name",
|
|
8779
|
+
"type": "type",
|
|
8780
|
+
"version": "version",
|
|
8781
|
+
"change_description": "changeDescription",
|
|
8782
|
+
"data": "data",
|
|
8783
|
+
"description": "description",
|
|
8784
|
+
"kms_key_id": "kmsKeyId",
|
|
8785
|
+
"tags": "tags",
|
|
8786
|
+
"uri": "uri",
|
|
8787
|
+
},
|
|
8788
|
+
)
|
|
8789
|
+
class CfnWorkflowProps:
|
|
8790
|
+
def __init__(
|
|
8791
|
+
self,
|
|
8792
|
+
*,
|
|
8793
|
+
name: builtins.str,
|
|
8794
|
+
type: builtins.str,
|
|
8795
|
+
version: builtins.str,
|
|
8796
|
+
change_description: typing.Optional[builtins.str] = None,
|
|
8797
|
+
data: typing.Optional[builtins.str] = None,
|
|
8798
|
+
description: typing.Optional[builtins.str] = None,
|
|
8799
|
+
kms_key_id: typing.Optional[builtins.str] = None,
|
|
8800
|
+
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
8801
|
+
uri: typing.Optional[builtins.str] = None,
|
|
8802
|
+
) -> None:
|
|
8803
|
+
'''Properties for defining a ``CfnWorkflow``.
|
|
8804
|
+
|
|
8805
|
+
:param name: The name of the workflow.
|
|
8806
|
+
:param type: The type of the workflow denotes whether the workflow is used to build, test, or distribute.
|
|
8807
|
+
:param version: The version of the workflow.
|
|
8808
|
+
:param change_description: The change description of the workflow.
|
|
8809
|
+
:param data: The data of the workflow.
|
|
8810
|
+
:param description: The description of the workflow.
|
|
8811
|
+
:param kms_key_id: The KMS key identifier used to encrypt the workflow.
|
|
8812
|
+
:param tags: The tags associated with the workflow.
|
|
8813
|
+
:param uri: The uri of the workflow.
|
|
8814
|
+
|
|
8815
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-workflow.html
|
|
8816
|
+
:exampleMetadata: fixture=_generated
|
|
8817
|
+
|
|
8818
|
+
Example::
|
|
8819
|
+
|
|
8820
|
+
# The code below shows an example of how to instantiate this type.
|
|
8821
|
+
# The values are placeholders you should change.
|
|
8822
|
+
from aws_cdk import aws_imagebuilder as imagebuilder
|
|
8823
|
+
|
|
8824
|
+
cfn_workflow_props = imagebuilder.CfnWorkflowProps(
|
|
8825
|
+
name="name",
|
|
8826
|
+
type="type",
|
|
8827
|
+
version="version",
|
|
8828
|
+
|
|
8829
|
+
# the properties below are optional
|
|
8830
|
+
change_description="changeDescription",
|
|
8831
|
+
data="data",
|
|
8832
|
+
description="description",
|
|
8833
|
+
kms_key_id="kmsKeyId",
|
|
8834
|
+
tags={
|
|
8835
|
+
"tags_key": "tags"
|
|
8836
|
+
},
|
|
8837
|
+
uri="uri"
|
|
8838
|
+
)
|
|
8839
|
+
'''
|
|
8840
|
+
if __debug__:
|
|
8841
|
+
type_hints = typing.get_type_hints(_typecheckingstub__35d88d62d7ed1f4b6deb48b19f5f6a93db101eada9232a0e7f6cc8c59ce9e078)
|
|
8842
|
+
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
8843
|
+
check_type(argname="argument type", value=type, expected_type=type_hints["type"])
|
|
8844
|
+
check_type(argname="argument version", value=version, expected_type=type_hints["version"])
|
|
8845
|
+
check_type(argname="argument change_description", value=change_description, expected_type=type_hints["change_description"])
|
|
8846
|
+
check_type(argname="argument data", value=data, expected_type=type_hints["data"])
|
|
8847
|
+
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
8848
|
+
check_type(argname="argument kms_key_id", value=kms_key_id, expected_type=type_hints["kms_key_id"])
|
|
8849
|
+
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
8850
|
+
check_type(argname="argument uri", value=uri, expected_type=type_hints["uri"])
|
|
8851
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
8852
|
+
"name": name,
|
|
8853
|
+
"type": type,
|
|
8854
|
+
"version": version,
|
|
8855
|
+
}
|
|
8856
|
+
if change_description is not None:
|
|
8857
|
+
self._values["change_description"] = change_description
|
|
8858
|
+
if data is not None:
|
|
8859
|
+
self._values["data"] = data
|
|
8860
|
+
if description is not None:
|
|
8861
|
+
self._values["description"] = description
|
|
8862
|
+
if kms_key_id is not None:
|
|
8863
|
+
self._values["kms_key_id"] = kms_key_id
|
|
8864
|
+
if tags is not None:
|
|
8865
|
+
self._values["tags"] = tags
|
|
8866
|
+
if uri is not None:
|
|
8867
|
+
self._values["uri"] = uri
|
|
8868
|
+
|
|
8869
|
+
@builtins.property
|
|
8870
|
+
def name(self) -> builtins.str:
|
|
8871
|
+
'''The name of the workflow.
|
|
8872
|
+
|
|
8873
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-workflow.html#cfn-imagebuilder-workflow-name
|
|
8874
|
+
'''
|
|
8875
|
+
result = self._values.get("name")
|
|
8876
|
+
assert result is not None, "Required property 'name' is missing"
|
|
8877
|
+
return typing.cast(builtins.str, result)
|
|
8878
|
+
|
|
8879
|
+
@builtins.property
|
|
8880
|
+
def type(self) -> builtins.str:
|
|
8881
|
+
'''The type of the workflow denotes whether the workflow is used to build, test, or distribute.
|
|
8882
|
+
|
|
8883
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-workflow.html#cfn-imagebuilder-workflow-type
|
|
8884
|
+
'''
|
|
8885
|
+
result = self._values.get("type")
|
|
8886
|
+
assert result is not None, "Required property 'type' is missing"
|
|
8887
|
+
return typing.cast(builtins.str, result)
|
|
8888
|
+
|
|
8889
|
+
@builtins.property
|
|
8890
|
+
def version(self) -> builtins.str:
|
|
8891
|
+
'''The version of the workflow.
|
|
8892
|
+
|
|
8893
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-workflow.html#cfn-imagebuilder-workflow-version
|
|
8894
|
+
'''
|
|
8895
|
+
result = self._values.get("version")
|
|
8896
|
+
assert result is not None, "Required property 'version' is missing"
|
|
8897
|
+
return typing.cast(builtins.str, result)
|
|
8898
|
+
|
|
8899
|
+
@builtins.property
|
|
8900
|
+
def change_description(self) -> typing.Optional[builtins.str]:
|
|
8901
|
+
'''The change description of the workflow.
|
|
8902
|
+
|
|
8903
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-workflow.html#cfn-imagebuilder-workflow-changedescription
|
|
8904
|
+
'''
|
|
8905
|
+
result = self._values.get("change_description")
|
|
8906
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
8907
|
+
|
|
8908
|
+
@builtins.property
|
|
8909
|
+
def data(self) -> typing.Optional[builtins.str]:
|
|
8910
|
+
'''The data of the workflow.
|
|
8911
|
+
|
|
8912
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-workflow.html#cfn-imagebuilder-workflow-data
|
|
8913
|
+
'''
|
|
8914
|
+
result = self._values.get("data")
|
|
8915
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
8916
|
+
|
|
8917
|
+
@builtins.property
|
|
8918
|
+
def description(self) -> typing.Optional[builtins.str]:
|
|
8919
|
+
'''The description of the workflow.
|
|
8920
|
+
|
|
8921
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-workflow.html#cfn-imagebuilder-workflow-description
|
|
8922
|
+
'''
|
|
8923
|
+
result = self._values.get("description")
|
|
8924
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
8925
|
+
|
|
8926
|
+
@builtins.property
|
|
8927
|
+
def kms_key_id(self) -> typing.Optional[builtins.str]:
|
|
8928
|
+
'''The KMS key identifier used to encrypt the workflow.
|
|
8929
|
+
|
|
8930
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-workflow.html#cfn-imagebuilder-workflow-kmskeyid
|
|
8931
|
+
'''
|
|
8932
|
+
result = self._values.get("kms_key_id")
|
|
8933
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
8934
|
+
|
|
8935
|
+
@builtins.property
|
|
8936
|
+
def tags(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
|
|
8937
|
+
'''The tags associated with the workflow.
|
|
8938
|
+
|
|
8939
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-workflow.html#cfn-imagebuilder-workflow-tags
|
|
8940
|
+
'''
|
|
8941
|
+
result = self._values.get("tags")
|
|
8942
|
+
return typing.cast(typing.Optional[typing.Mapping[builtins.str, builtins.str]], result)
|
|
8943
|
+
|
|
8944
|
+
@builtins.property
|
|
8945
|
+
def uri(self) -> typing.Optional[builtins.str]:
|
|
8946
|
+
'''The uri of the workflow.
|
|
8947
|
+
|
|
8948
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-workflow.html#cfn-imagebuilder-workflow-uri
|
|
8949
|
+
'''
|
|
8950
|
+
result = self._values.get("uri")
|
|
8951
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
8952
|
+
|
|
8953
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
8954
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
8955
|
+
|
|
8956
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
8957
|
+
return not (rhs == self)
|
|
8958
|
+
|
|
8959
|
+
def __repr__(self) -> str:
|
|
8960
|
+
return "CfnWorkflowProps(%s)" % ", ".join(
|
|
8961
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
8962
|
+
)
|
|
8963
|
+
|
|
8964
|
+
|
|
8965
|
+
__all__ = [
|
|
8966
|
+
"CfnComponent",
|
|
8967
|
+
"CfnComponentProps",
|
|
8968
|
+
"CfnContainerRecipe",
|
|
8969
|
+
"CfnContainerRecipeProps",
|
|
8970
|
+
"CfnDistributionConfiguration",
|
|
8971
|
+
"CfnDistributionConfigurationProps",
|
|
8972
|
+
"CfnImage",
|
|
8973
|
+
"CfnImagePipeline",
|
|
8974
|
+
"CfnImagePipelineProps",
|
|
8975
|
+
"CfnImageProps",
|
|
8976
|
+
"CfnImageRecipe",
|
|
8977
|
+
"CfnImageRecipeProps",
|
|
8978
|
+
"CfnInfrastructureConfiguration",
|
|
8979
|
+
"CfnInfrastructureConfigurationProps",
|
|
8980
|
+
"CfnLifecyclePolicy",
|
|
8981
|
+
"CfnLifecyclePolicyProps",
|
|
8982
|
+
"CfnWorkflow",
|
|
8983
|
+
"CfnWorkflowProps",
|
|
8984
|
+
]
|
|
8985
|
+
|
|
8986
|
+
publication.publish()
|
|
8987
|
+
|
|
8988
|
+
def _typecheckingstub__cee6f52d40719e283a6d76c8b6a6d4fb48180c9c7f4901a21ff32e8627d45b9e(
|
|
8989
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
8990
|
+
id: builtins.str,
|
|
8991
|
+
*,
|
|
8992
|
+
name: builtins.str,
|
|
8993
|
+
platform: builtins.str,
|
|
8994
|
+
version: builtins.str,
|
|
8995
|
+
change_description: typing.Optional[builtins.str] = None,
|
|
8996
|
+
data: typing.Optional[builtins.str] = None,
|
|
8997
|
+
description: typing.Optional[builtins.str] = None,
|
|
8998
|
+
kms_key_id: typing.Optional[builtins.str] = None,
|
|
8999
|
+
supported_os_versions: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
9000
|
+
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
9001
|
+
uri: typing.Optional[builtins.str] = None,
|
|
9002
|
+
) -> None:
|
|
9003
|
+
"""Type checking stubs"""
|
|
9004
|
+
pass
|
|
9005
|
+
|
|
9006
|
+
def _typecheckingstub__40b669a1c43c3b3079f4db289296a5190bc19737cdacec67b41121ffeb77db84(
|
|
9007
|
+
inspector: _TreeInspector_488e0dd5,
|
|
9008
|
+
) -> None:
|
|
9009
|
+
"""Type checking stubs"""
|
|
9010
|
+
pass
|
|
9011
|
+
|
|
9012
|
+
def _typecheckingstub__aa56b38fd57c0ef3c75a0f7854e12f5650c218ee9da1e6a0fc3566f2d0bb250e(
|
|
9013
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
9014
|
+
) -> None:
|
|
9015
|
+
"""Type checking stubs"""
|
|
9016
|
+
pass
|
|
9017
|
+
|
|
9018
|
+
def _typecheckingstub__ad2e949f47b8d1f3fa28e8aecc85097ba0e494b4114a67857ca7449b71baa7eb(
|
|
9019
|
+
value: builtins.str,
|
|
9020
|
+
) -> None:
|
|
9021
|
+
"""Type checking stubs"""
|
|
9022
|
+
pass
|
|
9023
|
+
|
|
9024
|
+
def _typecheckingstub__0512be6fd4c9842ff94428cb157263d19145ec3979a5af8b91ef02839bf0a59a(
|
|
9025
|
+
value: builtins.str,
|
|
9026
|
+
) -> None:
|
|
9027
|
+
"""Type checking stubs"""
|
|
9028
|
+
pass
|
|
9029
|
+
|
|
9030
|
+
def _typecheckingstub__ff0f73dccd3a4b2cd5091fd524dac54a149f454f8e4b95ebdbc8bf2d847d695a(
|
|
9031
|
+
value: builtins.str,
|
|
9032
|
+
) -> None:
|
|
9033
|
+
"""Type checking stubs"""
|
|
9034
|
+
pass
|
|
9035
|
+
|
|
9036
|
+
def _typecheckingstub__789ae8523d5582d7b263d5e4e40edc52e6cd54e33a4a8a9da22ce8a46158e664(
|
|
9037
|
+
value: typing.Optional[builtins.str],
|
|
9038
|
+
) -> None:
|
|
9039
|
+
"""Type checking stubs"""
|
|
9040
|
+
pass
|
|
9041
|
+
|
|
9042
|
+
def _typecheckingstub__87721af8240816306f3213003a08de03e0d6e02c52557a8099b6c11f6103e348(
|
|
9043
|
+
value: typing.Optional[builtins.str],
|
|
9044
|
+
) -> None:
|
|
8339
9045
|
"""Type checking stubs"""
|
|
8340
9046
|
pass
|
|
8341
9047
|
|
|
@@ -8842,12 +9548,14 @@ def _typecheckingstub__e2d099702ab4ebcb03c34ae00fedabfa81a0c5d3662aa1605c47ff1fc
|
|
|
8842
9548
|
description: typing.Optional[builtins.str] = None,
|
|
8843
9549
|
distribution_configuration_arn: typing.Optional[builtins.str] = None,
|
|
8844
9550
|
enhanced_image_metadata_enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
9551
|
+
execution_role: typing.Optional[builtins.str] = None,
|
|
8845
9552
|
image_recipe_arn: typing.Optional[builtins.str] = None,
|
|
8846
9553
|
image_scanning_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImagePipeline.ImageScanningConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
8847
9554
|
image_tests_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImagePipeline.ImageTestsConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
8848
9555
|
schedule: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImagePipeline.ScheduleProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
8849
9556
|
status: typing.Optional[builtins.str] = None,
|
|
8850
9557
|
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
9558
|
+
workflows: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImagePipeline.WorkflowConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
8851
9559
|
) -> None:
|
|
8852
9560
|
"""Type checking stubs"""
|
|
8853
9561
|
pass
|
|
@@ -8900,6 +9608,12 @@ def _typecheckingstub__ca199afdbf91ba45c1ad064f501dfd9423062e198e14171ce04f43dd1
|
|
|
8900
9608
|
"""Type checking stubs"""
|
|
8901
9609
|
pass
|
|
8902
9610
|
|
|
9611
|
+
def _typecheckingstub__4ebcf34a24070ac97fff298c2904bf78391a1a430eba771320445f80a0ff1f2d(
|
|
9612
|
+
value: typing.Optional[builtins.str],
|
|
9613
|
+
) -> None:
|
|
9614
|
+
"""Type checking stubs"""
|
|
9615
|
+
pass
|
|
9616
|
+
|
|
8903
9617
|
def _typecheckingstub__87996b3149c3f25f36e8d94641a0031c8b619b9cf13e699704fbe22cc370d491(
|
|
8904
9618
|
value: typing.Optional[builtins.str],
|
|
8905
9619
|
) -> None:
|
|
@@ -8936,6 +9650,12 @@ def _typecheckingstub__10f1255c06095afaded88e7544051acdac47218f9be5e78474eeaaeda
|
|
|
8936
9650
|
"""Type checking stubs"""
|
|
8937
9651
|
pass
|
|
8938
9652
|
|
|
9653
|
+
def _typecheckingstub__d31373519ea07e5936785c1446524bda21756ca2eb6c12f87303f5a12dc18c4f(
|
|
9654
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnImagePipeline.WorkflowConfigurationProperty]]]],
|
|
9655
|
+
) -> None:
|
|
9656
|
+
"""Type checking stubs"""
|
|
9657
|
+
pass
|
|
9658
|
+
|
|
8939
9659
|
def _typecheckingstub__1ad9ee4365967b325aac7636f417b9a691b4b50560fe8f594198933e7ed13aca(
|
|
8940
9660
|
*,
|
|
8941
9661
|
container_tags: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
@@ -8968,6 +9688,24 @@ def _typecheckingstub__02783d051498bb630cd6a27d361c0750914a59f05623585e0808549e9
|
|
|
8968
9688
|
"""Type checking stubs"""
|
|
8969
9689
|
pass
|
|
8970
9690
|
|
|
9691
|
+
def _typecheckingstub__665a1259d83ae867bae960e30b1d2c041292af4f49417c7f7eca3bd35857c4a3(
|
|
9692
|
+
*,
|
|
9693
|
+
on_failure: typing.Optional[builtins.str] = None,
|
|
9694
|
+
parallel_group: typing.Optional[builtins.str] = None,
|
|
9695
|
+
parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImagePipeline.WorkflowParameterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
9696
|
+
workflow_arn: typing.Optional[builtins.str] = None,
|
|
9697
|
+
) -> None:
|
|
9698
|
+
"""Type checking stubs"""
|
|
9699
|
+
pass
|
|
9700
|
+
|
|
9701
|
+
def _typecheckingstub__2e3c12bbd170116ab79a812e4141a317f3b456ad0a64acefae39ebbdf20aa068(
|
|
9702
|
+
*,
|
|
9703
|
+
name: typing.Optional[builtins.str] = None,
|
|
9704
|
+
value: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
9705
|
+
) -> None:
|
|
9706
|
+
"""Type checking stubs"""
|
|
9707
|
+
pass
|
|
9708
|
+
|
|
8971
9709
|
def _typecheckingstub__95f10c4451c6bf3f2cf15951831cd372e35975262c0be294c1ae7c774045ad9b(
|
|
8972
9710
|
*,
|
|
8973
9711
|
infrastructure_configuration_arn: builtins.str,
|
|
@@ -8976,12 +9714,14 @@ def _typecheckingstub__95f10c4451c6bf3f2cf15951831cd372e35975262c0be294c1ae7c774
|
|
|
8976
9714
|
description: typing.Optional[builtins.str] = None,
|
|
8977
9715
|
distribution_configuration_arn: typing.Optional[builtins.str] = None,
|
|
8978
9716
|
enhanced_image_metadata_enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
9717
|
+
execution_role: typing.Optional[builtins.str] = None,
|
|
8979
9718
|
image_recipe_arn: typing.Optional[builtins.str] = None,
|
|
8980
9719
|
image_scanning_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImagePipeline.ImageScanningConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
8981
9720
|
image_tests_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImagePipeline.ImageTestsConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
8982
9721
|
schedule: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImagePipeline.ScheduleProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
8983
9722
|
status: typing.Optional[builtins.str] = None,
|
|
8984
9723
|
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
9724
|
+
workflows: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImagePipeline.WorkflowConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
8985
9725
|
) -> None:
|
|
8986
9726
|
"""Type checking stubs"""
|
|
8987
9727
|
pass
|
|
@@ -9474,3 +10214,101 @@ def _typecheckingstub__6d645dc30df568adc41cd2d0c464f623b51b54d8bb6b1351018d90d6c
|
|
|
9474
10214
|
) -> None:
|
|
9475
10215
|
"""Type checking stubs"""
|
|
9476
10216
|
pass
|
|
10217
|
+
|
|
10218
|
+
def _typecheckingstub__bd82b8722476efd9ae3c84a0cf5b8f1d6b48550745017b0d128afabf5f24b5b2(
|
|
10219
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
10220
|
+
id: builtins.str,
|
|
10221
|
+
*,
|
|
10222
|
+
name: builtins.str,
|
|
10223
|
+
type: builtins.str,
|
|
10224
|
+
version: builtins.str,
|
|
10225
|
+
change_description: typing.Optional[builtins.str] = None,
|
|
10226
|
+
data: typing.Optional[builtins.str] = None,
|
|
10227
|
+
description: typing.Optional[builtins.str] = None,
|
|
10228
|
+
kms_key_id: typing.Optional[builtins.str] = None,
|
|
10229
|
+
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
10230
|
+
uri: typing.Optional[builtins.str] = None,
|
|
10231
|
+
) -> None:
|
|
10232
|
+
"""Type checking stubs"""
|
|
10233
|
+
pass
|
|
10234
|
+
|
|
10235
|
+
def _typecheckingstub__eb3d8659b8d763c14b7737c9410afacee05a27e95b64c0ed4b73165d968ab03c(
|
|
10236
|
+
inspector: _TreeInspector_488e0dd5,
|
|
10237
|
+
) -> None:
|
|
10238
|
+
"""Type checking stubs"""
|
|
10239
|
+
pass
|
|
10240
|
+
|
|
10241
|
+
def _typecheckingstub__56f66168df4b459392919a074261a67669f13f593780de274f36bbeb7bc11b3c(
|
|
10242
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
10243
|
+
) -> None:
|
|
10244
|
+
"""Type checking stubs"""
|
|
10245
|
+
pass
|
|
10246
|
+
|
|
10247
|
+
def _typecheckingstub__b9ca2ede358f8e6d6f27ece2e03d7d871d14d1daaeba3cb4c788afc33c2bc227(
|
|
10248
|
+
value: builtins.str,
|
|
10249
|
+
) -> None:
|
|
10250
|
+
"""Type checking stubs"""
|
|
10251
|
+
pass
|
|
10252
|
+
|
|
10253
|
+
def _typecheckingstub__41b009fd9ca27b9f352338a895a62a4f074e2c7eb510b43e13f8792747f571c5(
|
|
10254
|
+
value: builtins.str,
|
|
10255
|
+
) -> None:
|
|
10256
|
+
"""Type checking stubs"""
|
|
10257
|
+
pass
|
|
10258
|
+
|
|
10259
|
+
def _typecheckingstub__2ce08768a8ac00cab8a7fb60330cb7f716c6376d6d056e8ade1e44a26436417d(
|
|
10260
|
+
value: builtins.str,
|
|
10261
|
+
) -> None:
|
|
10262
|
+
"""Type checking stubs"""
|
|
10263
|
+
pass
|
|
10264
|
+
|
|
10265
|
+
def _typecheckingstub__b245fa74b6c4cb04ff6723da66ff8f8cd6af6cd5bcb55ede52fbb7a4519992d9(
|
|
10266
|
+
value: typing.Optional[builtins.str],
|
|
10267
|
+
) -> None:
|
|
10268
|
+
"""Type checking stubs"""
|
|
10269
|
+
pass
|
|
10270
|
+
|
|
10271
|
+
def _typecheckingstub__57d165db317968c3d0b9096bb379e7548f28dec9638ea2beebdc78b7bdf0e904(
|
|
10272
|
+
value: typing.Optional[builtins.str],
|
|
10273
|
+
) -> None:
|
|
10274
|
+
"""Type checking stubs"""
|
|
10275
|
+
pass
|
|
10276
|
+
|
|
10277
|
+
def _typecheckingstub__b296abb92cd399ea05e8c119ac7fdf0c7ac681e045dc5b83cfc6d9b0d97b7233(
|
|
10278
|
+
value: typing.Optional[builtins.str],
|
|
10279
|
+
) -> None:
|
|
10280
|
+
"""Type checking stubs"""
|
|
10281
|
+
pass
|
|
10282
|
+
|
|
10283
|
+
def _typecheckingstub__9b8bb7c0820c2fd1205773d0df64a2953848236b9ead853f32d65a2239aaafa0(
|
|
10284
|
+
value: typing.Optional[builtins.str],
|
|
10285
|
+
) -> None:
|
|
10286
|
+
"""Type checking stubs"""
|
|
10287
|
+
pass
|
|
10288
|
+
|
|
10289
|
+
def _typecheckingstub__1212a2dd4ab9ee1b3006c19c3027125ab0148561c4bc08b5d80fc0e29bfdf854(
|
|
10290
|
+
value: typing.Optional[typing.Mapping[builtins.str, builtins.str]],
|
|
10291
|
+
) -> None:
|
|
10292
|
+
"""Type checking stubs"""
|
|
10293
|
+
pass
|
|
10294
|
+
|
|
10295
|
+
def _typecheckingstub__2e36c0e0583778b96be119919e9f8e273d4b8ff0bfa5e58c3049f2cc89a520dd(
|
|
10296
|
+
value: typing.Optional[builtins.str],
|
|
10297
|
+
) -> None:
|
|
10298
|
+
"""Type checking stubs"""
|
|
10299
|
+
pass
|
|
10300
|
+
|
|
10301
|
+
def _typecheckingstub__35d88d62d7ed1f4b6deb48b19f5f6a93db101eada9232a0e7f6cc8c59ce9e078(
|
|
10302
|
+
*,
|
|
10303
|
+
name: builtins.str,
|
|
10304
|
+
type: builtins.str,
|
|
10305
|
+
version: builtins.str,
|
|
10306
|
+
change_description: typing.Optional[builtins.str] = None,
|
|
10307
|
+
data: typing.Optional[builtins.str] = None,
|
|
10308
|
+
description: typing.Optional[builtins.str] = None,
|
|
10309
|
+
kms_key_id: typing.Optional[builtins.str] = None,
|
|
10310
|
+
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
10311
|
+
uri: typing.Optional[builtins.str] = None,
|
|
10312
|
+
) -> None:
|
|
10313
|
+
"""Type checking stubs"""
|
|
10314
|
+
pass
|