aws-cdk-lib 2.193.0__py3-none-any.whl → 2.195.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of aws-cdk-lib might be problematic. Click here for more details.
- aws_cdk/__init__.py +2 -0
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.193.0.jsii.tgz → aws-cdk-lib@2.195.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigateway/__init__.py +63 -2
- aws_cdk/aws_aps/__init__.py +34 -22
- aws_cdk/aws_autoscaling/__init__.py +8 -0
- aws_cdk/aws_batch/__init__.py +2 -2
- aws_cdk/aws_bedrock/__init__.py +587 -8
- aws_cdk/aws_ce/__init__.py +34 -22
- aws_cdk/aws_cloudfront/__init__.py +6090 -3972
- aws_cdk/aws_codebuild/__init__.py +19 -10
- aws_cdk/aws_codepipeline/__init__.py +108 -0
- aws_cdk/aws_cognito/__init__.py +132 -6
- aws_cdk/aws_datazone/__init__.py +370 -0
- aws_cdk/aws_dlm/__init__.py +2 -2
- aws_cdk/aws_dsql/__init__.py +9 -0
- aws_cdk/aws_dynamodb/__init__.py +5 -3
- aws_cdk/aws_ec2/__init__.py +138 -11
- aws_cdk/aws_ecr/__init__.py +419 -0
- aws_cdk/aws_ecs/__init__.py +22 -25
- aws_cdk/aws_entityresolution/__init__.py +7 -2
- aws_cdk/aws_events/__init__.py +41 -8
- aws_cdk/aws_fsx/__init__.py +2 -3
- aws_cdk/aws_imagebuilder/__init__.py +160 -10
- aws_cdk/aws_kinesisanalytics/__init__.py +4 -2
- aws_cdk/aws_kinesisanalyticsv2/__init__.py +4 -2
- aws_cdk/aws_lambda/__init__.py +1 -1
- aws_cdk/aws_medialive/__init__.py +4 -6
- aws_cdk/aws_mediapackagev2/__init__.py +50 -6
- aws_cdk/aws_mediatailor/__init__.py +115 -0
- aws_cdk/aws_memorydb/__init__.py +21 -11
- aws_cdk/aws_oam/__init__.py +43 -10
- aws_cdk/aws_omics/__init__.py +5 -5
- aws_cdk/aws_opensearchservice/__init__.py +6 -0
- aws_cdk/aws_quicksight/__init__.py +1 -1
- aws_cdk/aws_rds/__init__.py +87 -8
- aws_cdk/aws_redshiftserverless/__init__.py +20 -0
- aws_cdk/aws_route53/__init__.py +18 -14
- aws_cdk/aws_route53_targets/__init__.py +62 -1
- aws_cdk/aws_route53profiles/__init__.py +1 -1
- aws_cdk/aws_route53resolver/__init__.py +41 -0
- aws_cdk/aws_s3/__init__.py +2 -4
- aws_cdk/aws_s3_notifications/__init__.py +5 -5
- aws_cdk/aws_sagemaker/__init__.py +255 -8
- aws_cdk/aws_ssmguiconnect/__init__.py +544 -0
- aws_cdk/aws_vpclattice/__init__.py +6 -2
- aws_cdk/aws_wisdom/__init__.py +25 -6
- aws_cdk/cloud_assembly_schema/__init__.py +7 -1
- {aws_cdk_lib-2.193.0.dist-info → aws_cdk_lib-2.195.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.193.0.dist-info → aws_cdk_lib-2.195.0.dist-info}/RECORD +54 -53
- {aws_cdk_lib-2.193.0.dist-info → aws_cdk_lib-2.195.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.193.0.dist-info → aws_cdk_lib-2.195.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.193.0.dist-info → aws_cdk_lib-2.195.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.193.0.dist-info → aws_cdk_lib-2.195.0.dist-info}/top_level.txt +0 -0
|
@@ -694,7 +694,7 @@ class CfnContainerRecipe(
|
|
|
694
694
|
:param components: Build and test components that are included in the container recipe. Recipes require a minimum of one build component, and can have a maximum of 20 build and test components in any combination.
|
|
695
695
|
:param container_type: Specifies the type of container, such as Docker.
|
|
696
696
|
:param name: The name of the container recipe.
|
|
697
|
-
:param parent_image: The base image for the container recipe.
|
|
697
|
+
:param parent_image: The base image for customizations specified in the container recipe. This can contain an Image Builder image resource ARN or a container image URI, for example ``amazonlinux:latest`` .
|
|
698
698
|
:param target_repository: The destination repository for the container image.
|
|
699
699
|
:param version: The semantic version of the container recipe. .. epigraph:: The semantic version has four nodes: ../. You can assign values for the first three, and can filter on all of them. *Assignment:* For the first three nodes you can assign any positive integer value, including zero, with an upper limit of 2^30-1, or 1073741823 for each node. Image Builder automatically assigns the build number to the fourth node. *Patterns:* You can use any numeric pattern that adheres to the assignment requirements for the nodes that you can assign. For example, you might choose a software version pattern, such as 1.0.0, or a date, such as 2021.01.01. *Filtering:* With semantic versioning, you have the flexibility to use wildcards (x) to specify the most recent versions or nodes when selecting the base image or components for your recipe. When you use a wildcard in any node, all nodes to the right of the first wildcard must also be wildcards.
|
|
700
700
|
:param description: The description of the container recipe.
|
|
@@ -839,7 +839,7 @@ class CfnContainerRecipe(
|
|
|
839
839
|
@builtins.property
|
|
840
840
|
@jsii.member(jsii_name="parentImage")
|
|
841
841
|
def parent_image(self) -> builtins.str:
|
|
842
|
-
'''The base image for the container recipe.'''
|
|
842
|
+
'''The base image for customizations specified in the container recipe.'''
|
|
843
843
|
return typing.cast(builtins.str, jsii.get(self, "parentImage"))
|
|
844
844
|
|
|
845
845
|
@parent_image.setter
|
|
@@ -1458,7 +1458,7 @@ class CfnContainerRecipe(
|
|
|
1458
1458
|
'''Defines a custom base AMI and block device mapping configurations of an instance used for building and testing container images.
|
|
1459
1459
|
|
|
1460
1460
|
:param block_device_mappings: Defines the block devices to attach for building an instance from this Image Builder AMI.
|
|
1461
|
-
:param image: The
|
|
1461
|
+
:param image: The base image for a container build and test instance. This can contain an AMI ID or it can specify an AWS Systems Manager (SSM) Parameter Store Parameter, prefixed by ``ssm:`` , followed by the parameter name or ARN. If not specified, Image Builder uses the appropriate ECS-optimized AMI as a base image.
|
|
1462
1462
|
|
|
1463
1463
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-containerrecipe-instanceconfiguration.html
|
|
1464
1464
|
:exampleMetadata: fixture=_generated
|
|
@@ -1511,9 +1511,11 @@ class CfnContainerRecipe(
|
|
|
1511
1511
|
|
|
1512
1512
|
@builtins.property
|
|
1513
1513
|
def image(self) -> typing.Optional[builtins.str]:
|
|
1514
|
-
'''The
|
|
1514
|
+
'''The base image for a container build and test instance.
|
|
1515
1515
|
|
|
1516
|
-
|
|
1516
|
+
This can contain an AMI ID or it can specify an AWS Systems Manager (SSM) Parameter Store Parameter, prefixed by ``ssm:`` , followed by the parameter name or ARN.
|
|
1517
|
+
|
|
1518
|
+
If not specified, Image Builder uses the appropriate ECS-optimized AMI as a base image.
|
|
1517
1519
|
|
|
1518
1520
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-containerrecipe-instanceconfiguration.html#cfn-imagebuilder-containerrecipe-instanceconfiguration-image
|
|
1519
1521
|
'''
|
|
@@ -1650,7 +1652,7 @@ class CfnContainerRecipeProps:
|
|
|
1650
1652
|
:param components: Build and test components that are included in the container recipe. Recipes require a minimum of one build component, and can have a maximum of 20 build and test components in any combination.
|
|
1651
1653
|
:param container_type: Specifies the type of container, such as Docker.
|
|
1652
1654
|
:param name: The name of the container recipe.
|
|
1653
|
-
:param parent_image: The base image for the container recipe.
|
|
1655
|
+
:param parent_image: The base image for customizations specified in the container recipe. This can contain an Image Builder image resource ARN or a container image URI, for example ``amazonlinux:latest`` .
|
|
1654
1656
|
:param target_repository: The destination repository for the container image.
|
|
1655
1657
|
:param version: The semantic version of the container recipe. .. epigraph:: The semantic version has four nodes: ../. You can assign values for the first three, and can filter on all of them. *Assignment:* For the first three nodes you can assign any positive integer value, including zero, with an upper limit of 2^30-1, or 1073741823 for each node. Image Builder automatically assigns the build number to the fourth node. *Patterns:* You can use any numeric pattern that adheres to the assignment requirements for the nodes that you can assign. For example, you might choose a software version pattern, such as 1.0.0, or a date, such as 2021.01.01. *Filtering:* With semantic versioning, you have the flexibility to use wildcards (x) to specify the most recent versions or nodes when selecting the base image or components for your recipe. When you use a wildcard in any node, all nodes to the right of the first wildcard must also be wildcards.
|
|
1656
1658
|
:param description: The description of the container recipe.
|
|
@@ -1800,7 +1802,9 @@ class CfnContainerRecipeProps:
|
|
|
1800
1802
|
|
|
1801
1803
|
@builtins.property
|
|
1802
1804
|
def parent_image(self) -> builtins.str:
|
|
1803
|
-
'''The base image for the container recipe.
|
|
1805
|
+
'''The base image for customizations specified in the container recipe.
|
|
1806
|
+
|
|
1807
|
+
This can contain an Image Builder image resource ARN or a container image URI, for example ``amazonlinux:latest`` .
|
|
1804
1808
|
|
|
1805
1809
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-containerrecipe.html#cfn-imagebuilder-containerrecipe-parentimage
|
|
1806
1810
|
'''
|
|
@@ -1985,7 +1989,14 @@ class CfnDistributionConfiguration(
|
|
|
1985
1989
|
launch_template_id="launchTemplateId",
|
|
1986
1990
|
set_default_version=False
|
|
1987
1991
|
)],
|
|
1988
|
-
license_configuration_arns=["licenseConfigurationArns"]
|
|
1992
|
+
license_configuration_arns=["licenseConfigurationArns"],
|
|
1993
|
+
ssm_parameter_configurations=[imagebuilder.CfnDistributionConfiguration.SsmParameterConfigurationProperty(
|
|
1994
|
+
parameter_name="parameterName",
|
|
1995
|
+
|
|
1996
|
+
# the properties below are optional
|
|
1997
|
+
ami_account_id="amiAccountId",
|
|
1998
|
+
data_type="dataType"
|
|
1999
|
+
)]
|
|
1989
2000
|
)],
|
|
1990
2001
|
name="name",
|
|
1991
2002
|
|
|
@@ -2400,6 +2411,7 @@ class CfnDistributionConfiguration(
|
|
|
2400
2411
|
"fast_launch_configurations": "fastLaunchConfigurations",
|
|
2401
2412
|
"launch_template_configurations": "launchTemplateConfigurations",
|
|
2402
2413
|
"license_configuration_arns": "licenseConfigurationArns",
|
|
2414
|
+
"ssm_parameter_configurations": "ssmParameterConfigurations",
|
|
2403
2415
|
},
|
|
2404
2416
|
)
|
|
2405
2417
|
class DistributionProperty:
|
|
@@ -2412,6 +2424,7 @@ class CfnDistributionConfiguration(
|
|
|
2412
2424
|
fast_launch_configurations: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDistributionConfiguration.FastLaunchConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
2413
2425
|
launch_template_configurations: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDistributionConfiguration.LaunchTemplateConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
2414
2426
|
license_configuration_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
2427
|
+
ssm_parameter_configurations: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDistributionConfiguration.SsmParameterConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
2415
2428
|
) -> None:
|
|
2416
2429
|
'''The distribution configuration distribution defines the settings for a specific Region in the Distribution Configuration.
|
|
2417
2430
|
|
|
@@ -2426,6 +2439,7 @@ class CfnDistributionConfiguration(
|
|
|
2426
2439
|
:param fast_launch_configurations: The Windows faster-launching configurations to use for AMI distribution.
|
|
2427
2440
|
:param launch_template_configurations: A group of launchTemplateConfiguration settings that apply to image distribution for specified accounts.
|
|
2428
2441
|
:param license_configuration_arns: The License Manager Configuration to associate with the AMI in the specified Region. For more information, see the `LicenseConfiguration API <https://docs.aws.amazon.com/license-manager/latest/APIReference/API_LicenseConfiguration.html>`_ .
|
|
2442
|
+
:param ssm_parameter_configurations: Contains settings to update AWS Systems Manager (SSM) Parameter Store Parameters with output AMI IDs from the build by target Region.
|
|
2429
2443
|
|
|
2430
2444
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-distributionconfiguration-distribution.html
|
|
2431
2445
|
:exampleMetadata: fixture=_generated
|
|
@@ -2463,7 +2477,14 @@ class CfnDistributionConfiguration(
|
|
|
2463
2477
|
launch_template_id="launchTemplateId",
|
|
2464
2478
|
set_default_version=False
|
|
2465
2479
|
)],
|
|
2466
|
-
license_configuration_arns=["licenseConfigurationArns"]
|
|
2480
|
+
license_configuration_arns=["licenseConfigurationArns"],
|
|
2481
|
+
ssm_parameter_configurations=[imagebuilder.CfnDistributionConfiguration.SsmParameterConfigurationProperty(
|
|
2482
|
+
parameter_name="parameterName",
|
|
2483
|
+
|
|
2484
|
+
# the properties below are optional
|
|
2485
|
+
ami_account_id="amiAccountId",
|
|
2486
|
+
data_type="dataType"
|
|
2487
|
+
)]
|
|
2467
2488
|
)
|
|
2468
2489
|
'''
|
|
2469
2490
|
if __debug__:
|
|
@@ -2474,6 +2495,7 @@ class CfnDistributionConfiguration(
|
|
|
2474
2495
|
check_type(argname="argument fast_launch_configurations", value=fast_launch_configurations, expected_type=type_hints["fast_launch_configurations"])
|
|
2475
2496
|
check_type(argname="argument launch_template_configurations", value=launch_template_configurations, expected_type=type_hints["launch_template_configurations"])
|
|
2476
2497
|
check_type(argname="argument license_configuration_arns", value=license_configuration_arns, expected_type=type_hints["license_configuration_arns"])
|
|
2498
|
+
check_type(argname="argument ssm_parameter_configurations", value=ssm_parameter_configurations, expected_type=type_hints["ssm_parameter_configurations"])
|
|
2477
2499
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
2478
2500
|
"region": region,
|
|
2479
2501
|
}
|
|
@@ -2487,6 +2509,8 @@ class CfnDistributionConfiguration(
|
|
|
2487
2509
|
self._values["launch_template_configurations"] = launch_template_configurations
|
|
2488
2510
|
if license_configuration_arns is not None:
|
|
2489
2511
|
self._values["license_configuration_arns"] = license_configuration_arns
|
|
2512
|
+
if ssm_parameter_configurations is not None:
|
|
2513
|
+
self._values["ssm_parameter_configurations"] = ssm_parameter_configurations
|
|
2490
2514
|
|
|
2491
2515
|
@builtins.property
|
|
2492
2516
|
def region(self) -> builtins.str:
|
|
@@ -2557,6 +2581,17 @@ class CfnDistributionConfiguration(
|
|
|
2557
2581
|
result = self._values.get("license_configuration_arns")
|
|
2558
2582
|
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
2559
2583
|
|
|
2584
|
+
@builtins.property
|
|
2585
|
+
def ssm_parameter_configurations(
|
|
2586
|
+
self,
|
|
2587
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDistributionConfiguration.SsmParameterConfigurationProperty"]]]]:
|
|
2588
|
+
'''Contains settings to update AWS Systems Manager (SSM) Parameter Store Parameters with output AMI IDs from the build by target Region.
|
|
2589
|
+
|
|
2590
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-distributionconfiguration-distribution.html#cfn-imagebuilder-distributionconfiguration-distribution-ssmparameterconfigurations
|
|
2591
|
+
'''
|
|
2592
|
+
result = self._values.get("ssm_parameter_configurations")
|
|
2593
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDistributionConfiguration.SsmParameterConfigurationProperty"]]]], result)
|
|
2594
|
+
|
|
2560
2595
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
2561
2596
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
2562
2597
|
|
|
@@ -3055,6 +3090,104 @@ class CfnDistributionConfiguration(
|
|
|
3055
3090
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
3056
3091
|
)
|
|
3057
3092
|
|
|
3093
|
+
@jsii.data_type(
|
|
3094
|
+
jsii_type="aws-cdk-lib.aws_imagebuilder.CfnDistributionConfiguration.SsmParameterConfigurationProperty",
|
|
3095
|
+
jsii_struct_bases=[],
|
|
3096
|
+
name_mapping={
|
|
3097
|
+
"parameter_name": "parameterName",
|
|
3098
|
+
"ami_account_id": "amiAccountId",
|
|
3099
|
+
"data_type": "dataType",
|
|
3100
|
+
},
|
|
3101
|
+
)
|
|
3102
|
+
class SsmParameterConfigurationProperty:
|
|
3103
|
+
def __init__(
|
|
3104
|
+
self,
|
|
3105
|
+
*,
|
|
3106
|
+
parameter_name: builtins.str,
|
|
3107
|
+
ami_account_id: typing.Optional[builtins.str] = None,
|
|
3108
|
+
data_type: typing.Optional[builtins.str] = None,
|
|
3109
|
+
) -> None:
|
|
3110
|
+
'''Configuration for a single Parameter in the AWS Systems Manager (SSM) Parameter Store in a given Region.
|
|
3111
|
+
|
|
3112
|
+
:param parameter_name: This is the name of the Parameter in the target Region or account. The image distribution creates the Parameter if it doesn't already exist. Otherwise, it updates the parameter.
|
|
3113
|
+
:param ami_account_id: Specify the account that will own the Parameter in a given Region. During distribution, this account must be specified in distribution settings as a target account for the Region.
|
|
3114
|
+
:param data_type: The data type specifies what type of value the Parameter contains. We recommend that you use data type ``aws:ec2:image`` .
|
|
3115
|
+
|
|
3116
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-distributionconfiguration-ssmparameterconfiguration.html
|
|
3117
|
+
:exampleMetadata: fixture=_generated
|
|
3118
|
+
|
|
3119
|
+
Example::
|
|
3120
|
+
|
|
3121
|
+
# The code below shows an example of how to instantiate this type.
|
|
3122
|
+
# The values are placeholders you should change.
|
|
3123
|
+
from aws_cdk import aws_imagebuilder as imagebuilder
|
|
3124
|
+
|
|
3125
|
+
ssm_parameter_configuration_property = imagebuilder.CfnDistributionConfiguration.SsmParameterConfigurationProperty(
|
|
3126
|
+
parameter_name="parameterName",
|
|
3127
|
+
|
|
3128
|
+
# the properties below are optional
|
|
3129
|
+
ami_account_id="amiAccountId",
|
|
3130
|
+
data_type="dataType"
|
|
3131
|
+
)
|
|
3132
|
+
'''
|
|
3133
|
+
if __debug__:
|
|
3134
|
+
type_hints = typing.get_type_hints(_typecheckingstub__7078c821101535ab38d1fc3a5eaf267586f8ba156c0c7208c49773a19d7406c9)
|
|
3135
|
+
check_type(argname="argument parameter_name", value=parameter_name, expected_type=type_hints["parameter_name"])
|
|
3136
|
+
check_type(argname="argument ami_account_id", value=ami_account_id, expected_type=type_hints["ami_account_id"])
|
|
3137
|
+
check_type(argname="argument data_type", value=data_type, expected_type=type_hints["data_type"])
|
|
3138
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
3139
|
+
"parameter_name": parameter_name,
|
|
3140
|
+
}
|
|
3141
|
+
if ami_account_id is not None:
|
|
3142
|
+
self._values["ami_account_id"] = ami_account_id
|
|
3143
|
+
if data_type is not None:
|
|
3144
|
+
self._values["data_type"] = data_type
|
|
3145
|
+
|
|
3146
|
+
@builtins.property
|
|
3147
|
+
def parameter_name(self) -> builtins.str:
|
|
3148
|
+
'''This is the name of the Parameter in the target Region or account.
|
|
3149
|
+
|
|
3150
|
+
The image distribution creates the Parameter if it doesn't already exist. Otherwise, it updates the parameter.
|
|
3151
|
+
|
|
3152
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-distributionconfiguration-ssmparameterconfiguration.html#cfn-imagebuilder-distributionconfiguration-ssmparameterconfiguration-parametername
|
|
3153
|
+
'''
|
|
3154
|
+
result = self._values.get("parameter_name")
|
|
3155
|
+
assert result is not None, "Required property 'parameter_name' is missing"
|
|
3156
|
+
return typing.cast(builtins.str, result)
|
|
3157
|
+
|
|
3158
|
+
@builtins.property
|
|
3159
|
+
def ami_account_id(self) -> typing.Optional[builtins.str]:
|
|
3160
|
+
'''Specify the account that will own the Parameter in a given Region.
|
|
3161
|
+
|
|
3162
|
+
During distribution, this account must be specified in distribution settings as a target account for the Region.
|
|
3163
|
+
|
|
3164
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-distributionconfiguration-ssmparameterconfiguration.html#cfn-imagebuilder-distributionconfiguration-ssmparameterconfiguration-amiaccountid
|
|
3165
|
+
'''
|
|
3166
|
+
result = self._values.get("ami_account_id")
|
|
3167
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
3168
|
+
|
|
3169
|
+
@builtins.property
|
|
3170
|
+
def data_type(self) -> typing.Optional[builtins.str]:
|
|
3171
|
+
'''The data type specifies what type of value the Parameter contains.
|
|
3172
|
+
|
|
3173
|
+
We recommend that you use data type ``aws:ec2:image`` .
|
|
3174
|
+
|
|
3175
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-distributionconfiguration-ssmparameterconfiguration.html#cfn-imagebuilder-distributionconfiguration-ssmparameterconfiguration-datatype
|
|
3176
|
+
'''
|
|
3177
|
+
result = self._values.get("data_type")
|
|
3178
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
3179
|
+
|
|
3180
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
3181
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
3182
|
+
|
|
3183
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
3184
|
+
return not (rhs == self)
|
|
3185
|
+
|
|
3186
|
+
def __repr__(self) -> str:
|
|
3187
|
+
return "SsmParameterConfigurationProperty(%s)" % ", ".join(
|
|
3188
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
3189
|
+
)
|
|
3190
|
+
|
|
3058
3191
|
@jsii.data_type(
|
|
3059
3192
|
jsii_type="aws-cdk-lib.aws_imagebuilder.CfnDistributionConfiguration.TargetContainerRepositoryProperty",
|
|
3060
3193
|
jsii_struct_bases=[],
|
|
@@ -3191,7 +3324,14 @@ class CfnDistributionConfigurationProps:
|
|
|
3191
3324
|
launch_template_id="launchTemplateId",
|
|
3192
3325
|
set_default_version=False
|
|
3193
3326
|
)],
|
|
3194
|
-
license_configuration_arns=["licenseConfigurationArns"]
|
|
3327
|
+
license_configuration_arns=["licenseConfigurationArns"],
|
|
3328
|
+
ssm_parameter_configurations=[imagebuilder.CfnDistributionConfiguration.SsmParameterConfigurationProperty(
|
|
3329
|
+
parameter_name="parameterName",
|
|
3330
|
+
|
|
3331
|
+
# the properties below are optional
|
|
3332
|
+
ami_account_id="amiAccountId",
|
|
3333
|
+
data_type="dataType"
|
|
3334
|
+
)]
|
|
3195
3335
|
)],
|
|
3196
3336
|
name="name",
|
|
3197
3337
|
|
|
@@ -9871,6 +10011,7 @@ def _typecheckingstub__29d1f34d5faec16ba828ad2333ee9218a18df31808a5a350be9b29d04
|
|
|
9871
10011
|
fast_launch_configurations: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDistributionConfiguration.FastLaunchConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
9872
10012
|
launch_template_configurations: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDistributionConfiguration.LaunchTemplateConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
9873
10013
|
license_configuration_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
10014
|
+
ssm_parameter_configurations: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDistributionConfiguration.SsmParameterConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
9874
10015
|
) -> None:
|
|
9875
10016
|
"""Type checking stubs"""
|
|
9876
10017
|
pass
|
|
@@ -9921,6 +10062,15 @@ def _typecheckingstub__0b4c1c669ce6e1367a73060d15f089faa5ce58e96063ee38204bf9af1
|
|
|
9921
10062
|
"""Type checking stubs"""
|
|
9922
10063
|
pass
|
|
9923
10064
|
|
|
10065
|
+
def _typecheckingstub__7078c821101535ab38d1fc3a5eaf267586f8ba156c0c7208c49773a19d7406c9(
|
|
10066
|
+
*,
|
|
10067
|
+
parameter_name: builtins.str,
|
|
10068
|
+
ami_account_id: typing.Optional[builtins.str] = None,
|
|
10069
|
+
data_type: typing.Optional[builtins.str] = None,
|
|
10070
|
+
) -> None:
|
|
10071
|
+
"""Type checking stubs"""
|
|
10072
|
+
pass
|
|
10073
|
+
|
|
9924
10074
|
def _typecheckingstub__fd67a7cda75ae308d03a62ceb5b017b8de54cd08fd47374326a441ec680438a5(
|
|
9925
10075
|
*,
|
|
9926
10076
|
repository_name: typing.Optional[builtins.str] = None,
|
|
@@ -5252,7 +5252,7 @@ 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. *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``
|
|
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: - ""
|
|
@@ -8884,7 +8884,7 @@ 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. *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``
|
|
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: - ""
|
|
@@ -9106,6 +9106,8 @@ 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
|
+
|
|
9109
9111
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-runtimeenvironment
|
|
9110
9112
|
'''
|
|
9111
9113
|
result = self._values.get("runtime_environment")
|
|
@@ -277,7 +277,7 @@ 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. *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``
|
|
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: - ""
|
|
@@ -4773,7 +4773,7 @@ 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. *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``
|
|
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: - ""
|
|
@@ -4995,6 +4995,8 @@ 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
|
+
|
|
4998
5000
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-runtimeenvironment
|
|
4999
5001
|
'''
|
|
5000
5002
|
result = self._values.get("runtime_environment")
|
aws_cdk/aws_lambda/__init__.py
CHANGED
|
@@ -7634,7 +7634,7 @@ class CfnFunction(
|
|
|
7634
7634
|
)
|
|
7635
7635
|
class DeadLetterConfigProperty:
|
|
7636
7636
|
def __init__(self, *, target_arn: typing.Optional[builtins.str] = None) -> None:
|
|
7637
|
-
'''The `dead-letter queue <https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html#dlq>`_ for failed asynchronous invocations.
|
|
7637
|
+
'''The `dead-letter queue <https://docs.aws.amazon.com/lambda/latest/dg/invocation-async-retain-records.html#invocation-dlq>`_ for failed asynchronous invocations.
|
|
7638
7638
|
|
|
7639
7639
|
:param target_arn: The Amazon Resource Name (ARN) of an Amazon SQS queue or Amazon SNS topic.
|
|
7640
7640
|
|
|
@@ -124,7 +124,7 @@ class CfnChannel(
|
|
|
124
124
|
:param input_specification: The input specification for this channel. It specifies the key characteristics of the inputs for this channel: the maximum bitrate, the resolution, and the codec.
|
|
125
125
|
:param log_level: The verbosity for logging activity for this channel. Charges for logging (which are generated through Amazon CloudWatch Logging) are higher for higher verbosities.
|
|
126
126
|
:param maintenance: Maintenance settings for this channel.
|
|
127
|
-
:param name:
|
|
127
|
+
:param name: Name of channel.
|
|
128
128
|
:param role_arn: The IAM role for MediaLive to assume when running this channel. The role is identified by its ARN.
|
|
129
129
|
:param tags: A collection of tags for this channel. Each tag is a key-value pair.
|
|
130
130
|
:param vpc: Settings to enable VPC mode in the channel, so that the endpoints for all outputs are in your VPC.
|
|
@@ -415,7 +415,7 @@ class CfnChannel(
|
|
|
415
415
|
@builtins.property
|
|
416
416
|
@jsii.member(jsii_name="name")
|
|
417
417
|
def name(self) -> typing.Optional[builtins.str]:
|
|
418
|
-
'''
|
|
418
|
+
'''Name of channel.'''
|
|
419
419
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "name"))
|
|
420
420
|
|
|
421
421
|
@name.setter
|
|
@@ -24566,7 +24566,7 @@ class CfnChannelProps:
|
|
|
24566
24566
|
:param input_specification: The input specification for this channel. It specifies the key characteristics of the inputs for this channel: the maximum bitrate, the resolution, and the codec.
|
|
24567
24567
|
:param log_level: The verbosity for logging activity for this channel. Charges for logging (which are generated through Amazon CloudWatch Logging) are higher for higher verbosities.
|
|
24568
24568
|
:param maintenance: Maintenance settings for this channel.
|
|
24569
|
-
:param name:
|
|
24569
|
+
:param name: Name of channel.
|
|
24570
24570
|
:param role_arn: The IAM role for MediaLive to assume when running this channel. The role is identified by its ARN.
|
|
24571
24571
|
:param tags: A collection of tags for this channel. Each tag is a key-value pair.
|
|
24572
24572
|
:param vpc: Settings to enable VPC mode in the channel, so that the endpoints for all outputs are in your VPC.
|
|
@@ -24749,9 +24749,7 @@ class CfnChannelProps:
|
|
|
24749
24749
|
|
|
24750
24750
|
@builtins.property
|
|
24751
24751
|
def name(self) -> typing.Optional[builtins.str]:
|
|
24752
|
-
'''
|
|
24753
|
-
|
|
24754
|
-
The AudioDescription (in an output) references this name in order to identify a specific input audio to include in that output.
|
|
24752
|
+
'''Name of channel.
|
|
24755
24753
|
|
|
24756
24754
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-name
|
|
24757
24755
|
'''
|
|
@@ -1279,7 +1279,8 @@ class CfnOriginEndpoint(
|
|
|
1279
1279
|
# the properties below are optional
|
|
1280
1280
|
precise=False
|
|
1281
1281
|
),
|
|
1282
|
-
url="url"
|
|
1282
|
+
url="url",
|
|
1283
|
+
url_encode_child_manifest=False
|
|
1283
1284
|
)],
|
|
1284
1285
|
low_latency_hls_manifests=[mediapackagev2.CfnOriginEndpoint.LowLatencyHlsManifestConfigurationProperty(
|
|
1285
1286
|
manifest_name="manifestName",
|
|
@@ -1304,7 +1305,8 @@ class CfnOriginEndpoint(
|
|
|
1304
1305
|
# the properties below are optional
|
|
1305
1306
|
precise=False
|
|
1306
1307
|
),
|
|
1307
|
-
url="url"
|
|
1308
|
+
url="url",
|
|
1309
|
+
url_encode_child_manifest=False
|
|
1308
1310
|
)],
|
|
1309
1311
|
segment=mediapackagev2.CfnOriginEndpoint.SegmentProperty(
|
|
1310
1312
|
encryption=mediapackagev2.CfnOriginEndpoint.EncryptionProperty(
|
|
@@ -2474,6 +2476,7 @@ class CfnOriginEndpoint(
|
|
|
2474
2476
|
"scte_hls": "scteHls",
|
|
2475
2477
|
"start_tag": "startTag",
|
|
2476
2478
|
"url": "url",
|
|
2479
|
+
"url_encode_child_manifest": "urlEncodeChildManifest",
|
|
2477
2480
|
},
|
|
2478
2481
|
)
|
|
2479
2482
|
class HlsManifestConfigurationProperty:
|
|
@@ -2488,6 +2491,7 @@ class CfnOriginEndpoint(
|
|
|
2488
2491
|
scte_hls: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnOriginEndpoint.ScteHlsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2489
2492
|
start_tag: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnOriginEndpoint.StartTagProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2490
2493
|
url: typing.Optional[builtins.str] = None,
|
|
2494
|
+
url_encode_child_manifest: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
2491
2495
|
) -> None:
|
|
2492
2496
|
'''The HLS manfiest configuration associated with the origin endpoint.
|
|
2493
2497
|
|
|
@@ -2499,6 +2503,7 @@ class CfnOriginEndpoint(
|
|
|
2499
2503
|
:param scte_hls: THE SCTE-35 HLS configuration associated with the HLS manifest configuration.
|
|
2500
2504
|
:param start_tag: When you do, you can also optionally specify whether to include a PRECISE value in the EXT-X-START tag.
|
|
2501
2505
|
:param url: The URL of the HLS manifest configuration.
|
|
2506
|
+
:param url_encode_child_manifest: For more information, see Amazon Web Services Signature Version 4 for API requests in Identity and Access Management User Guide.
|
|
2502
2507
|
|
|
2503
2508
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-hlsmanifestconfiguration.html
|
|
2504
2509
|
:exampleMetadata: fixture=_generated
|
|
@@ -2532,7 +2537,8 @@ class CfnOriginEndpoint(
|
|
|
2532
2537
|
# the properties below are optional
|
|
2533
2538
|
precise=False
|
|
2534
2539
|
),
|
|
2535
|
-
url="url"
|
|
2540
|
+
url="url",
|
|
2541
|
+
url_encode_child_manifest=False
|
|
2536
2542
|
)
|
|
2537
2543
|
'''
|
|
2538
2544
|
if __debug__:
|
|
@@ -2545,6 +2551,7 @@ class CfnOriginEndpoint(
|
|
|
2545
2551
|
check_type(argname="argument scte_hls", value=scte_hls, expected_type=type_hints["scte_hls"])
|
|
2546
2552
|
check_type(argname="argument start_tag", value=start_tag, expected_type=type_hints["start_tag"])
|
|
2547
2553
|
check_type(argname="argument url", value=url, expected_type=type_hints["url"])
|
|
2554
|
+
check_type(argname="argument url_encode_child_manifest", value=url_encode_child_manifest, expected_type=type_hints["url_encode_child_manifest"])
|
|
2548
2555
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
2549
2556
|
"manifest_name": manifest_name,
|
|
2550
2557
|
}
|
|
@@ -2562,6 +2569,8 @@ class CfnOriginEndpoint(
|
|
|
2562
2569
|
self._values["start_tag"] = start_tag
|
|
2563
2570
|
if url is not None:
|
|
2564
2571
|
self._values["url"] = url
|
|
2572
|
+
if url_encode_child_manifest is not None:
|
|
2573
|
+
self._values["url_encode_child_manifest"] = url_encode_child_manifest
|
|
2565
2574
|
|
|
2566
2575
|
@builtins.property
|
|
2567
2576
|
def manifest_name(self) -> builtins.str:
|
|
@@ -2643,6 +2652,18 @@ class CfnOriginEndpoint(
|
|
|
2643
2652
|
result = self._values.get("url")
|
|
2644
2653
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
2645
2654
|
|
|
2655
|
+
@builtins.property
|
|
2656
|
+
def url_encode_child_manifest(
|
|
2657
|
+
self,
|
|
2658
|
+
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
2659
|
+
'''
|
|
2660
|
+
For more information, see Amazon Web Services Signature Version 4 for API requests in Identity and Access Management User Guide.
|
|
2661
|
+
|
|
2662
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-hlsmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-hlsmanifestconfiguration-urlencodechildmanifest
|
|
2663
|
+
'''
|
|
2664
|
+
result = self._values.get("url_encode_child_manifest")
|
|
2665
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
2666
|
+
|
|
2646
2667
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
2647
2668
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
2648
2669
|
|
|
@@ -2666,6 +2687,7 @@ class CfnOriginEndpoint(
|
|
|
2666
2687
|
"scte_hls": "scteHls",
|
|
2667
2688
|
"start_tag": "startTag",
|
|
2668
2689
|
"url": "url",
|
|
2690
|
+
"url_encode_child_manifest": "urlEncodeChildManifest",
|
|
2669
2691
|
},
|
|
2670
2692
|
)
|
|
2671
2693
|
class LowLatencyHlsManifestConfigurationProperty:
|
|
@@ -2680,6 +2702,7 @@ class CfnOriginEndpoint(
|
|
|
2680
2702
|
scte_hls: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnOriginEndpoint.ScteHlsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2681
2703
|
start_tag: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnOriginEndpoint.StartTagProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2682
2704
|
url: typing.Optional[builtins.str] = None,
|
|
2705
|
+
url_encode_child_manifest: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
2683
2706
|
) -> None:
|
|
2684
2707
|
'''Specify a low-latency HTTP live streaming (LL-HLS) manifest configuration.
|
|
2685
2708
|
|
|
@@ -2691,6 +2714,7 @@ class CfnOriginEndpoint(
|
|
|
2691
2714
|
:param scte_hls: The SCTE-35 HLS configuration associated with the low-latency HLS (LL-HLS) manifest configuration of the origin endpoint.
|
|
2692
2715
|
:param start_tag: When you do, you can also optionally specify whether to include a PRECISE value in the EXT-X-START tag.
|
|
2693
2716
|
:param url: The URL of the low-latency HLS (LL-HLS) manifest configuration of the origin endpoint.
|
|
2717
|
+
:param url_encode_child_manifest: For more information, see Amazon Web Services Signature Version 4 for API requests in Identity and Access Management User Guide.
|
|
2694
2718
|
|
|
2695
2719
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-lowlatencyhlsmanifestconfiguration.html
|
|
2696
2720
|
:exampleMetadata: fixture=_generated
|
|
@@ -2724,7 +2748,8 @@ class CfnOriginEndpoint(
|
|
|
2724
2748
|
# the properties below are optional
|
|
2725
2749
|
precise=False
|
|
2726
2750
|
),
|
|
2727
|
-
url="url"
|
|
2751
|
+
url="url",
|
|
2752
|
+
url_encode_child_manifest=False
|
|
2728
2753
|
)
|
|
2729
2754
|
'''
|
|
2730
2755
|
if __debug__:
|
|
@@ -2737,6 +2762,7 @@ class CfnOriginEndpoint(
|
|
|
2737
2762
|
check_type(argname="argument scte_hls", value=scte_hls, expected_type=type_hints["scte_hls"])
|
|
2738
2763
|
check_type(argname="argument start_tag", value=start_tag, expected_type=type_hints["start_tag"])
|
|
2739
2764
|
check_type(argname="argument url", value=url, expected_type=type_hints["url"])
|
|
2765
|
+
check_type(argname="argument url_encode_child_manifest", value=url_encode_child_manifest, expected_type=type_hints["url_encode_child_manifest"])
|
|
2740
2766
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
2741
2767
|
"manifest_name": manifest_name,
|
|
2742
2768
|
}
|
|
@@ -2754,6 +2780,8 @@ class CfnOriginEndpoint(
|
|
|
2754
2780
|
self._values["start_tag"] = start_tag
|
|
2755
2781
|
if url is not None:
|
|
2756
2782
|
self._values["url"] = url
|
|
2783
|
+
if url_encode_child_manifest is not None:
|
|
2784
|
+
self._values["url_encode_child_manifest"] = url_encode_child_manifest
|
|
2757
2785
|
|
|
2758
2786
|
@builtins.property
|
|
2759
2787
|
def manifest_name(self) -> builtins.str:
|
|
@@ -2841,6 +2869,18 @@ class CfnOriginEndpoint(
|
|
|
2841
2869
|
result = self._values.get("url")
|
|
2842
2870
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
2843
2871
|
|
|
2872
|
+
@builtins.property
|
|
2873
|
+
def url_encode_child_manifest(
|
|
2874
|
+
self,
|
|
2875
|
+
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
2876
|
+
'''
|
|
2877
|
+
For more information, see Amazon Web Services Signature Version 4 for API requests in Identity and Access Management User Guide.
|
|
2878
|
+
|
|
2879
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-lowlatencyhlsmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-lowlatencyhlsmanifestconfiguration-urlencodechildmanifest
|
|
2880
|
+
'''
|
|
2881
|
+
result = self._values.get("url_encode_child_manifest")
|
|
2882
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
2883
|
+
|
|
2844
2884
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
2845
2885
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
2846
2886
|
|
|
@@ -3800,7 +3840,8 @@ class CfnOriginEndpointProps:
|
|
|
3800
3840
|
# the properties below are optional
|
|
3801
3841
|
precise=False
|
|
3802
3842
|
),
|
|
3803
|
-
url="url"
|
|
3843
|
+
url="url",
|
|
3844
|
+
url_encode_child_manifest=False
|
|
3804
3845
|
)],
|
|
3805
3846
|
low_latency_hls_manifests=[mediapackagev2.CfnOriginEndpoint.LowLatencyHlsManifestConfigurationProperty(
|
|
3806
3847
|
manifest_name="manifestName",
|
|
@@ -3825,7 +3866,8 @@ class CfnOriginEndpointProps:
|
|
|
3825
3866
|
# the properties below are optional
|
|
3826
3867
|
precise=False
|
|
3827
3868
|
),
|
|
3828
|
-
url="url"
|
|
3869
|
+
url="url",
|
|
3870
|
+
url_encode_child_manifest=False
|
|
3829
3871
|
)],
|
|
3830
3872
|
segment=mediapackagev2.CfnOriginEndpoint.SegmentProperty(
|
|
3831
3873
|
encryption=mediapackagev2.CfnOriginEndpoint.EncryptionProperty(
|
|
@@ -4439,6 +4481,7 @@ def _typecheckingstub__b59520e6fbce62f410265deeb9cc043e1cf408c2c3cc498907eb73fcc
|
|
|
4439
4481
|
scte_hls: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnOriginEndpoint.ScteHlsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4440
4482
|
start_tag: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnOriginEndpoint.StartTagProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4441
4483
|
url: typing.Optional[builtins.str] = None,
|
|
4484
|
+
url_encode_child_manifest: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
4442
4485
|
) -> None:
|
|
4443
4486
|
"""Type checking stubs"""
|
|
4444
4487
|
pass
|
|
@@ -4453,6 +4496,7 @@ def _typecheckingstub__7ba3db62514b88b8da1b21ec0b9459116f857508c0670adb698a120b3
|
|
|
4453
4496
|
scte_hls: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnOriginEndpoint.ScteHlsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4454
4497
|
start_tag: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnOriginEndpoint.StartTagProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4455
4498
|
url: typing.Optional[builtins.str] = None,
|
|
4499
|
+
url_encode_child_manifest: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
4456
4500
|
) -> None:
|
|
4457
4501
|
"""Type checking stubs"""
|
|
4458
4502
|
pass
|