aws-cdk-lib 2.194.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.194.0.jsii.tgz → aws-cdk-lib@2.195.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigateway/__init__.py +60 -1
- aws_cdk/aws_bedrock/__init__.py +581 -4
- aws_cdk/aws_cloudfront/__init__.py +190 -120
- 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_dsql/__init__.py +9 -0
- aws_cdk/aws_dynamodb/__init__.py +5 -3
- aws_cdk/aws_ec2/__init__.py +132 -8
- aws_cdk/aws_ecr/__init__.py +16 -14
- aws_cdk/aws_ecs/__init__.py +4 -15
- 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_medialive/__init__.py +4 -6
- aws_cdk/aws_mediatailor/__init__.py +115 -0
- aws_cdk/aws_oam/__init__.py +43 -10
- aws_cdk/aws_opensearchservice/__init__.py +6 -0
- aws_cdk/aws_qbusiness/__init__.py +2 -2
- aws_cdk/aws_rds/__init__.py +41 -6
- 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_s3_notifications/__init__.py +5 -5
- aws_cdk/aws_sagemaker/__init__.py +253 -4
- aws_cdk/aws_ssmguiconnect/__init__.py +544 -0
- aws_cdk/cloud_assembly_schema/__init__.py +7 -1
- {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.195.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.195.0.dist-info}/RECORD +37 -36
- {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.195.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.195.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.195.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.194.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")
|
|
@@ -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
|
'''
|
|
@@ -1685,6 +1685,9 @@ class CfnPlaybackConfiguration(
|
|
|
1685
1685
|
video_content_source_url="videoContentSourceUrl",
|
|
1686
1686
|
|
|
1687
1687
|
# the properties below are optional
|
|
1688
|
+
ad_conditioning_configuration=mediatailor.CfnPlaybackConfiguration.AdConditioningConfigurationProperty(
|
|
1689
|
+
streaming_media_file_conditioning="streamingMediaFileConditioning"
|
|
1690
|
+
),
|
|
1688
1691
|
avail_suppression=mediatailor.CfnPlaybackConfiguration.AvailSuppressionProperty(
|
|
1689
1692
|
fill_policy="fillPolicy",
|
|
1690
1693
|
mode="mode",
|
|
@@ -1736,6 +1739,7 @@ class CfnPlaybackConfiguration(
|
|
|
1736
1739
|
ad_decision_server_url: builtins.str,
|
|
1737
1740
|
name: builtins.str,
|
|
1738
1741
|
video_content_source_url: builtins.str,
|
|
1742
|
+
ad_conditioning_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPlaybackConfiguration.AdConditioningConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1739
1743
|
avail_suppression: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPlaybackConfiguration.AvailSuppressionProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1740
1744
|
bumper: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPlaybackConfiguration.BumperProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1741
1745
|
cdn_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPlaybackConfiguration.CdnConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -1755,6 +1759,7 @@ class CfnPlaybackConfiguration(
|
|
|
1755
1759
|
:param ad_decision_server_url: The URL for the ad decision server (ADS). This includes the specification of static parameters and placeholders for dynamic parameters. AWS Elemental MediaTailor substitutes player-specific and session-specific parameters as needed when calling the ADS. Alternately, for testing you can provide a static VAST URL. The maximum length is 25,000 characters.
|
|
1756
1760
|
:param name: The identifier for the playback configuration.
|
|
1757
1761
|
:param video_content_source_url: The URL prefix for the parent manifest for the stream, minus the asset ID. The maximum length is 512 characters.
|
|
1762
|
+
:param ad_conditioning_configuration: The setting that indicates what conditioning MediaTailor will perform on ads that the ad decision server (ADS) returns, and what priority MediaTailor uses when inserting ads.
|
|
1758
1763
|
:param avail_suppression: The configuration for avail suppression, also known as ad suppression. For more information about ad suppression, see `Ad Suppression <https://docs.aws.amazon.com/mediatailor/latest/ug/ad-behavior.html>`_ .
|
|
1759
1764
|
:param bumper: The configuration for bumpers. Bumpers are short audio or video clips that play at the start or before the end of an ad break. To learn more about bumpers, see `Bumpers <https://docs.aws.amazon.com/mediatailor/latest/ug/bumpers.html>`_ .
|
|
1760
1765
|
:param cdn_configuration: The configuration for using a content delivery network (CDN), like Amazon CloudFront, for content and ad segment management.
|
|
@@ -1776,6 +1781,7 @@ class CfnPlaybackConfiguration(
|
|
|
1776
1781
|
ad_decision_server_url=ad_decision_server_url,
|
|
1777
1782
|
name=name,
|
|
1778
1783
|
video_content_source_url=video_content_source_url,
|
|
1784
|
+
ad_conditioning_configuration=ad_conditioning_configuration,
|
|
1779
1785
|
avail_suppression=avail_suppression,
|
|
1780
1786
|
bumper=bumper,
|
|
1781
1787
|
cdn_configuration=cdn_configuration,
|
|
@@ -1923,6 +1929,24 @@ class CfnPlaybackConfiguration(
|
|
|
1923
1929
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1924
1930
|
jsii.set(self, "videoContentSourceUrl", value) # pyright: ignore[reportArgumentType]
|
|
1925
1931
|
|
|
1932
|
+
@builtins.property
|
|
1933
|
+
@jsii.member(jsii_name="adConditioningConfiguration")
|
|
1934
|
+
def ad_conditioning_configuration(
|
|
1935
|
+
self,
|
|
1936
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPlaybackConfiguration.AdConditioningConfigurationProperty"]]:
|
|
1937
|
+
'''The setting that indicates what conditioning MediaTailor will perform on ads that the ad decision server (ADS) returns, and what priority MediaTailor uses when inserting ads.'''
|
|
1938
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPlaybackConfiguration.AdConditioningConfigurationProperty"]], jsii.get(self, "adConditioningConfiguration"))
|
|
1939
|
+
|
|
1940
|
+
@ad_conditioning_configuration.setter
|
|
1941
|
+
def ad_conditioning_configuration(
|
|
1942
|
+
self,
|
|
1943
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPlaybackConfiguration.AdConditioningConfigurationProperty"]],
|
|
1944
|
+
) -> None:
|
|
1945
|
+
if __debug__:
|
|
1946
|
+
type_hints = typing.get_type_hints(_typecheckingstub__bb81abb7826e9e9444261d39e06ed23acbaea73a559203da5ca788273a1bbc94)
|
|
1947
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1948
|
+
jsii.set(self, "adConditioningConfiguration", value) # pyright: ignore[reportArgumentType]
|
|
1949
|
+
|
|
1926
1950
|
@builtins.property
|
|
1927
1951
|
@jsii.member(jsii_name="availSuppression")
|
|
1928
1952
|
def avail_suppression(
|
|
@@ -2122,6 +2146,62 @@ class CfnPlaybackConfiguration(
|
|
|
2122
2146
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2123
2147
|
jsii.set(self, "transcodeProfileName", value) # pyright: ignore[reportArgumentType]
|
|
2124
2148
|
|
|
2149
|
+
@jsii.data_type(
|
|
2150
|
+
jsii_type="aws-cdk-lib.aws_mediatailor.CfnPlaybackConfiguration.AdConditioningConfigurationProperty",
|
|
2151
|
+
jsii_struct_bases=[],
|
|
2152
|
+
name_mapping={
|
|
2153
|
+
"streaming_media_file_conditioning": "streamingMediaFileConditioning",
|
|
2154
|
+
},
|
|
2155
|
+
)
|
|
2156
|
+
class AdConditioningConfigurationProperty:
|
|
2157
|
+
def __init__(self, *, streaming_media_file_conditioning: builtins.str) -> None:
|
|
2158
|
+
'''The setting that indicates what conditioning MediaTailor will perform on ads that the ad decision server (ADS) returns.
|
|
2159
|
+
|
|
2160
|
+
:param streaming_media_file_conditioning: For ads that have media files with streaming delivery and supported file extensions, indicates what transcoding action MediaTailor takes when it first receives these ads from the ADS. ``TRANSCODE`` indicates that MediaTailor must transcode the ads. ``NONE`` indicates that you have already transcoded the ads outside of MediaTailor and don't need them transcoded as part of the ad insertion workflow. For more information about ad conditioning see `Using preconditioned ads <https://docs.aws.amazon.com/mediatailor/latest/ug/precondition-ads.html>`_ in the AWS Elemental MediaTailor user guide.
|
|
2161
|
+
|
|
2162
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-adconditioningconfiguration.html
|
|
2163
|
+
:exampleMetadata: fixture=_generated
|
|
2164
|
+
|
|
2165
|
+
Example::
|
|
2166
|
+
|
|
2167
|
+
# The code below shows an example of how to instantiate this type.
|
|
2168
|
+
# The values are placeholders you should change.
|
|
2169
|
+
from aws_cdk import aws_mediatailor as mediatailor
|
|
2170
|
+
|
|
2171
|
+
ad_conditioning_configuration_property = mediatailor.CfnPlaybackConfiguration.AdConditioningConfigurationProperty(
|
|
2172
|
+
streaming_media_file_conditioning="streamingMediaFileConditioning"
|
|
2173
|
+
)
|
|
2174
|
+
'''
|
|
2175
|
+
if __debug__:
|
|
2176
|
+
type_hints = typing.get_type_hints(_typecheckingstub__86f7802737ba8294b0aa8d203c7f9bc7ff38b98bf17f1f9066c772b203c711ea)
|
|
2177
|
+
check_type(argname="argument streaming_media_file_conditioning", value=streaming_media_file_conditioning, expected_type=type_hints["streaming_media_file_conditioning"])
|
|
2178
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
2179
|
+
"streaming_media_file_conditioning": streaming_media_file_conditioning,
|
|
2180
|
+
}
|
|
2181
|
+
|
|
2182
|
+
@builtins.property
|
|
2183
|
+
def streaming_media_file_conditioning(self) -> builtins.str:
|
|
2184
|
+
'''For ads that have media files with streaming delivery and supported file extensions, indicates what transcoding action MediaTailor takes when it first receives these ads from the ADS.
|
|
2185
|
+
|
|
2186
|
+
``TRANSCODE`` indicates that MediaTailor must transcode the ads. ``NONE`` indicates that you have already transcoded the ads outside of MediaTailor and don't need them transcoded as part of the ad insertion workflow. For more information about ad conditioning see `Using preconditioned ads <https://docs.aws.amazon.com/mediatailor/latest/ug/precondition-ads.html>`_ in the AWS Elemental MediaTailor user guide.
|
|
2187
|
+
|
|
2188
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-adconditioningconfiguration.html#cfn-mediatailor-playbackconfiguration-adconditioningconfiguration-streamingmediafileconditioning
|
|
2189
|
+
'''
|
|
2190
|
+
result = self._values.get("streaming_media_file_conditioning")
|
|
2191
|
+
assert result is not None, "Required property 'streaming_media_file_conditioning' is missing"
|
|
2192
|
+
return typing.cast(builtins.str, result)
|
|
2193
|
+
|
|
2194
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
2195
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
2196
|
+
|
|
2197
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
2198
|
+
return not (rhs == self)
|
|
2199
|
+
|
|
2200
|
+
def __repr__(self) -> str:
|
|
2201
|
+
return "AdConditioningConfigurationProperty(%s)" % ", ".join(
|
|
2202
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
2203
|
+
)
|
|
2204
|
+
|
|
2125
2205
|
@jsii.data_type(
|
|
2126
2206
|
jsii_type="aws-cdk-lib.aws_mediatailor.CfnPlaybackConfiguration.AdMarkerPassthroughProperty",
|
|
2127
2207
|
jsii_struct_bases=[],
|
|
@@ -2723,6 +2803,7 @@ class CfnPlaybackConfiguration(
|
|
|
2723
2803
|
"ad_decision_server_url": "adDecisionServerUrl",
|
|
2724
2804
|
"name": "name",
|
|
2725
2805
|
"video_content_source_url": "videoContentSourceUrl",
|
|
2806
|
+
"ad_conditioning_configuration": "adConditioningConfiguration",
|
|
2726
2807
|
"avail_suppression": "availSuppression",
|
|
2727
2808
|
"bumper": "bumper",
|
|
2728
2809
|
"cdn_configuration": "cdnConfiguration",
|
|
@@ -2744,6 +2825,7 @@ class CfnPlaybackConfigurationProps:
|
|
|
2744
2825
|
ad_decision_server_url: builtins.str,
|
|
2745
2826
|
name: builtins.str,
|
|
2746
2827
|
video_content_source_url: builtins.str,
|
|
2828
|
+
ad_conditioning_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.AdConditioningConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2747
2829
|
avail_suppression: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.AvailSuppressionProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2748
2830
|
bumper: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.BumperProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2749
2831
|
cdn_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.CdnConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -2762,6 +2844,7 @@ class CfnPlaybackConfigurationProps:
|
|
|
2762
2844
|
:param ad_decision_server_url: The URL for the ad decision server (ADS). This includes the specification of static parameters and placeholders for dynamic parameters. AWS Elemental MediaTailor substitutes player-specific and session-specific parameters as needed when calling the ADS. Alternately, for testing you can provide a static VAST URL. The maximum length is 25,000 characters.
|
|
2763
2845
|
:param name: The identifier for the playback configuration.
|
|
2764
2846
|
:param video_content_source_url: The URL prefix for the parent manifest for the stream, minus the asset ID. The maximum length is 512 characters.
|
|
2847
|
+
:param ad_conditioning_configuration: The setting that indicates what conditioning MediaTailor will perform on ads that the ad decision server (ADS) returns, and what priority MediaTailor uses when inserting ads.
|
|
2765
2848
|
:param avail_suppression: The configuration for avail suppression, also known as ad suppression. For more information about ad suppression, see `Ad Suppression <https://docs.aws.amazon.com/mediatailor/latest/ug/ad-behavior.html>`_ .
|
|
2766
2849
|
:param bumper: The configuration for bumpers. Bumpers are short audio or video clips that play at the start or before the end of an ad break. To learn more about bumpers, see `Bumpers <https://docs.aws.amazon.com/mediatailor/latest/ug/bumpers.html>`_ .
|
|
2767
2850
|
:param cdn_configuration: The configuration for using a content delivery network (CDN), like Amazon CloudFront, for content and ad segment management.
|
|
@@ -2792,6 +2875,9 @@ class CfnPlaybackConfigurationProps:
|
|
|
2792
2875
|
video_content_source_url="videoContentSourceUrl",
|
|
2793
2876
|
|
|
2794
2877
|
# the properties below are optional
|
|
2878
|
+
ad_conditioning_configuration=mediatailor.CfnPlaybackConfiguration.AdConditioningConfigurationProperty(
|
|
2879
|
+
streaming_media_file_conditioning="streamingMediaFileConditioning"
|
|
2880
|
+
),
|
|
2795
2881
|
avail_suppression=mediatailor.CfnPlaybackConfiguration.AvailSuppressionProperty(
|
|
2796
2882
|
fill_policy="fillPolicy",
|
|
2797
2883
|
mode="mode",
|
|
@@ -2839,6 +2925,7 @@ class CfnPlaybackConfigurationProps:
|
|
|
2839
2925
|
check_type(argname="argument ad_decision_server_url", value=ad_decision_server_url, expected_type=type_hints["ad_decision_server_url"])
|
|
2840
2926
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
2841
2927
|
check_type(argname="argument video_content_source_url", value=video_content_source_url, expected_type=type_hints["video_content_source_url"])
|
|
2928
|
+
check_type(argname="argument ad_conditioning_configuration", value=ad_conditioning_configuration, expected_type=type_hints["ad_conditioning_configuration"])
|
|
2842
2929
|
check_type(argname="argument avail_suppression", value=avail_suppression, expected_type=type_hints["avail_suppression"])
|
|
2843
2930
|
check_type(argname="argument bumper", value=bumper, expected_type=type_hints["bumper"])
|
|
2844
2931
|
check_type(argname="argument cdn_configuration", value=cdn_configuration, expected_type=type_hints["cdn_configuration"])
|
|
@@ -2856,6 +2943,8 @@ class CfnPlaybackConfigurationProps:
|
|
|
2856
2943
|
"name": name,
|
|
2857
2944
|
"video_content_source_url": video_content_source_url,
|
|
2858
2945
|
}
|
|
2946
|
+
if ad_conditioning_configuration is not None:
|
|
2947
|
+
self._values["ad_conditioning_configuration"] = ad_conditioning_configuration
|
|
2859
2948
|
if avail_suppression is not None:
|
|
2860
2949
|
self._values["avail_suppression"] = avail_suppression
|
|
2861
2950
|
if bumper is not None:
|
|
@@ -2915,6 +3004,17 @@ class CfnPlaybackConfigurationProps:
|
|
|
2915
3004
|
assert result is not None, "Required property 'video_content_source_url' is missing"
|
|
2916
3005
|
return typing.cast(builtins.str, result)
|
|
2917
3006
|
|
|
3007
|
+
@builtins.property
|
|
3008
|
+
def ad_conditioning_configuration(
|
|
3009
|
+
self,
|
|
3010
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnPlaybackConfiguration.AdConditioningConfigurationProperty]]:
|
|
3011
|
+
'''The setting that indicates what conditioning MediaTailor will perform on ads that the ad decision server (ADS) returns, and what priority MediaTailor uses when inserting ads.
|
|
3012
|
+
|
|
3013
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediatailor-playbackconfiguration.html#cfn-mediatailor-playbackconfiguration-adconditioningconfiguration
|
|
3014
|
+
'''
|
|
3015
|
+
result = self._values.get("ad_conditioning_configuration")
|
|
3016
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnPlaybackConfiguration.AdConditioningConfigurationProperty]], result)
|
|
3017
|
+
|
|
2918
3018
|
@builtins.property
|
|
2919
3019
|
def avail_suppression(
|
|
2920
3020
|
self,
|
|
@@ -4496,6 +4596,7 @@ def _typecheckingstub__3dcfb97a898a80ee6a7b069e26028183e8a797f0c48fdbd4fe6ecb8ad
|
|
|
4496
4596
|
ad_decision_server_url: builtins.str,
|
|
4497
4597
|
name: builtins.str,
|
|
4498
4598
|
video_content_source_url: builtins.str,
|
|
4599
|
+
ad_conditioning_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.AdConditioningConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4499
4600
|
avail_suppression: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.AvailSuppressionProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4500
4601
|
bumper: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.BumperProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4501
4602
|
cdn_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.CdnConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -4542,6 +4643,12 @@ def _typecheckingstub__75b50d6fe13101dc70996fb19d5c8a163f6176ddcd37a0ebe0b08f5f7
|
|
|
4542
4643
|
"""Type checking stubs"""
|
|
4543
4644
|
pass
|
|
4544
4645
|
|
|
4646
|
+
def _typecheckingstub__bb81abb7826e9e9444261d39e06ed23acbaea73a559203da5ca788273a1bbc94(
|
|
4647
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnPlaybackConfiguration.AdConditioningConfigurationProperty]],
|
|
4648
|
+
) -> None:
|
|
4649
|
+
"""Type checking stubs"""
|
|
4650
|
+
pass
|
|
4651
|
+
|
|
4545
4652
|
def _typecheckingstub__ace1eb1809c3c05a0b25523b0f61020aa7d5a69057cdffb522c74d7881b0c1c8(
|
|
4546
4653
|
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnPlaybackConfiguration.AvailSuppressionProperty]],
|
|
4547
4654
|
) -> None:
|
|
@@ -4614,6 +4721,13 @@ def _typecheckingstub__ab6a880d781d782bb5f703943747735b9af031af290dd1ad2e9ebe273
|
|
|
4614
4721
|
"""Type checking stubs"""
|
|
4615
4722
|
pass
|
|
4616
4723
|
|
|
4724
|
+
def _typecheckingstub__86f7802737ba8294b0aa8d203c7f9bc7ff38b98bf17f1f9066c772b203c711ea(
|
|
4725
|
+
*,
|
|
4726
|
+
streaming_media_file_conditioning: builtins.str,
|
|
4727
|
+
) -> None:
|
|
4728
|
+
"""Type checking stubs"""
|
|
4729
|
+
pass
|
|
4730
|
+
|
|
4617
4731
|
def _typecheckingstub__c84cc8c470c35ea1870d24a6e58a722cc2d0952d699c858000349755866ccea6(
|
|
4618
4732
|
*,
|
|
4619
4733
|
enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
@@ -4682,6 +4796,7 @@ def _typecheckingstub__935886ab495203cc213786b925e7fd8fe4acd3f9db5864d4f1f5c0115
|
|
|
4682
4796
|
ad_decision_server_url: builtins.str,
|
|
4683
4797
|
name: builtins.str,
|
|
4684
4798
|
video_content_source_url: builtins.str,
|
|
4799
|
+
ad_conditioning_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.AdConditioningConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4685
4800
|
avail_suppression: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.AvailSuppressionProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4686
4801
|
bumper: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.BumperProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4687
4802
|
cdn_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlaybackConfiguration.CdnConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|