aws-cdk-lib 2.146.0__py3-none-any.whl → 2.147.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of aws-cdk-lib might be problematic. Click here for more details.
- aws_cdk/__init__.py +11 -12
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.146.0.jsii.tgz → aws-cdk-lib@2.147.1.jsii.tgz} +0 -0
- aws_cdk/aws_apigateway/__init__.py +32 -12
- aws_cdk/aws_apigatewayv2/__init__.py +48 -2
- aws_cdk/aws_apigatewayv2_integrations/__init__.py +142 -4
- aws_cdk/aws_appconfig/__init__.py +8 -4
- aws_cdk/aws_applicationsignals/__init__.py +1766 -0
- aws_cdk/aws_auditmanager/__init__.py +5 -1
- aws_cdk/aws_autoscaling/__init__.py +65 -20
- aws_cdk/aws_batch/__init__.py +215 -0
- aws_cdk/aws_bedrock/__init__.py +272 -103
- aws_cdk/aws_cloudformation/__init__.py +5 -11
- aws_cdk/aws_cloudfront/__init__.py +10 -3
- aws_cdk/aws_cloudtrail/__init__.py +56 -2
- aws_cdk/aws_codebuild/__init__.py +62 -29
- aws_cdk/aws_codepipeline/__init__.py +10 -5
- aws_cdk/aws_datazone/__init__.py +80 -68
- aws_cdk/aws_deadline/__init__.py +603 -17
- aws_cdk/aws_ec2/__init__.py +237 -112
- aws_cdk/aws_ecs/__init__.py +20 -18
- aws_cdk/aws_eks/__init__.py +15 -9
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +11 -5
- aws_cdk/aws_emrserverless/__init__.py +5 -5
- aws_cdk/aws_events/__init__.py +36 -16
- aws_cdk/aws_fsx/__init__.py +126 -21
- aws_cdk/aws_globalaccelerator/__init__.py +2 -1
- aws_cdk/aws_globalaccelerator_endpoints/__init__.py +35 -4
- aws_cdk/aws_glue/__init__.py +26 -0
- aws_cdk/aws_grafana/__init__.py +4 -4
- aws_cdk/aws_groundstation/__init__.py +55 -35
- aws_cdk/aws_guardduty/__init__.py +826 -0
- aws_cdk/aws_iot/__init__.py +3 -3
- aws_cdk/aws_lambda/__init__.py +7 -5
- aws_cdk/aws_lightsail/__init__.py +1 -1
- aws_cdk/aws_location/__init__.py +10 -11
- aws_cdk/aws_mediapackagev2/__init__.py +38 -20
- aws_cdk/aws_mediatailor/__init__.py +2 -2
- aws_cdk/aws_msk/__init__.py +4 -4
- aws_cdk/aws_mwaa/__init__.py +16 -8
- aws_cdk/aws_nimblestudio/__init__.py +9 -9
- aws_cdk/aws_opensearchservice/__init__.py +5 -4
- aws_cdk/aws_opsworks/__init__.py +3 -3
- aws_cdk/aws_osis/__init__.py +33 -4
- aws_cdk/aws_pipes/__init__.py +97 -45
- aws_cdk/aws_quicksight/__init__.py +23 -21
- aws_cdk/aws_rds/__init__.py +43 -11
- aws_cdk/aws_refactorspaces/__init__.py +3 -3
- aws_cdk/aws_rolesanywhere/__init__.py +21 -14
- aws_cdk/aws_route53/__init__.py +3 -3
- aws_cdk/aws_sagemaker/__init__.py +5 -2
- aws_cdk/aws_securityhub/__init__.py +163 -78
- aws_cdk/aws_securitylake/__init__.py +7 -5
- aws_cdk/aws_ses/__init__.py +117 -0
- aws_cdk/aws_simspaceweaver/__init__.py +2 -2
- aws_cdk/aws_sns/__init__.py +6 -4
- aws_cdk/aws_sqs/__init__.py +3 -3
- aws_cdk/aws_stepfunctions/__init__.py +51 -28
- aws_cdk/aws_stepfunctions_tasks/__init__.py +56 -2
- aws_cdk/aws_transfer/__init__.py +8 -2
- aws_cdk/aws_wafv2/__init__.py +10 -10
- aws_cdk/aws_workspacesweb/__init__.py +8 -8
- {aws_cdk_lib-2.146.0.dist-info → aws_cdk_lib-2.147.1.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.146.0.dist-info → aws_cdk_lib-2.147.1.dist-info}/RECORD +68 -67
- {aws_cdk_lib-2.146.0.dist-info → aws_cdk_lib-2.147.1.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.146.0.dist-info → aws_cdk_lib-2.147.1.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.146.0.dist-info → aws_cdk_lib-2.147.1.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.146.0.dist-info → aws_cdk_lib-2.147.1.dist-info}/top_level.txt +0 -0
aws_cdk/aws_iot/__init__.py
CHANGED
|
@@ -13181,7 +13181,7 @@ class CfnTopicRule(
|
|
|
13181
13181
|
:param scope: Scope in which this resource is defined.
|
|
13182
13182
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
13183
13183
|
:param topic_rule_payload: The rule payload.
|
|
13184
|
-
:param rule_name: The name of the rule. *Pattern* :
|
|
13184
|
+
:param rule_name: The name of the rule. *Pattern* : ``^[a-zA-Z0-9_]+$``
|
|
13185
13185
|
:param tags: Metadata which can be used to manage the topic rule. .. epigraph:: For URI Request parameters use format: ...key1=value1&key2=value2... For the CLI command-line parameter use format: --tags "key1=value1&key2=value2..." For the cli-input-json file use format: "tags": "key1=value1&key2=value2..."
|
|
13186
13186
|
'''
|
|
13187
13187
|
if __debug__:
|
|
@@ -18758,7 +18758,7 @@ class CfnTopicRuleProps:
|
|
|
18758
18758
|
'''Properties for defining a ``CfnTopicRule``.
|
|
18759
18759
|
|
|
18760
18760
|
:param topic_rule_payload: The rule payload.
|
|
18761
|
-
:param rule_name: The name of the rule. *Pattern* :
|
|
18761
|
+
:param rule_name: The name of the rule. *Pattern* : ``^[a-zA-Z0-9_]+$``
|
|
18762
18762
|
:param tags: Metadata which can be used to manage the topic rule. .. epigraph:: For URI Request parameters use format: ...key1=value1&key2=value2... For the CLI command-line parameter use format: --tags "key1=value1&key2=value2..." For the cli-input-json file use format: "tags": "key1=value1&key2=value2..."
|
|
18763
18763
|
|
|
18764
18764
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html
|
|
@@ -19273,7 +19273,7 @@ class CfnTopicRuleProps:
|
|
|
19273
19273
|
def rule_name(self) -> typing.Optional[builtins.str]:
|
|
19274
19274
|
'''The name of the rule.
|
|
19275
19275
|
|
|
19276
|
-
*Pattern* :
|
|
19276
|
+
*Pattern* : ``^[a-zA-Z0-9_]+$``
|
|
19277
19277
|
|
|
19278
19278
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html#cfn-iot-topicrule-rulename
|
|
19279
19279
|
'''
|
aws_cdk/aws_lambda/__init__.py
CHANGED
|
@@ -6226,7 +6226,7 @@ class CfnFunction(
|
|
|
6226
6226
|
:param memory_size: The amount of `memory available to the function <https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-memory-console>`_ at runtime. Increasing the function memory also increases its CPU allocation. The default value is 128 MB. The value can be any multiple of 1 MB. Note that new AWS accounts have reduced concurrency and memory quotas. AWS raises these quotas automatically based on your usage. You can also request a quota increase.
|
|
6227
6227
|
:param package_type: The type of deployment package. Set to ``Image`` for container image and set ``Zip`` for .zip file archive.
|
|
6228
6228
|
:param reserved_concurrent_executions: The number of simultaneous executions to reserve for the function.
|
|
6229
|
-
:param runtime: The identifier of the function's `runtime <https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html>`_ . Runtime is required if the deployment package is a .zip file archive. The following list includes deprecated runtimes. For more information, see `Runtime deprecation
|
|
6229
|
+
:param runtime: The identifier of the function's `runtime <https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html>`_ . Runtime is required if the deployment package is a .zip file archive. Specifying a runtime results in an error if you're deploying a function using a container image. The following list includes deprecated runtimes. Lambda blocks creating new functions and updating existing functions shortly after each runtime is deprecated. For more information, see `Runtime use after deprecation <https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtime-deprecation-levels>`_ . For a list of all currently supported runtimes, see `Supported runtimes <https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtimes-supported>`_ .
|
|
6230
6230
|
:param runtime_management_config: Sets the runtime management configuration for a function's version. For more information, see `Runtime updates <https://docs.aws.amazon.com/lambda/latest/dg/runtimes-update.html>`_ .
|
|
6231
6231
|
:param snap_start: The function's `AWS Lambda SnapStart <https://docs.aws.amazon.com/lambda/latest/dg/snapstart.html>`_ setting.
|
|
6232
6232
|
:param tags: A list of `tags <https://docs.aws.amazon.com/lambda/latest/dg/tagging.html>`_ to apply to the function.
|
|
@@ -6618,7 +6618,7 @@ class CfnFunction(
|
|
|
6618
6618
|
@builtins.property
|
|
6619
6619
|
@jsii.member(jsii_name="runtime")
|
|
6620
6620
|
def runtime(self) -> typing.Optional[builtins.str]:
|
|
6621
|
-
'''The identifier of the function's `runtime <https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html>`_ . Runtime is required if the deployment package is a .zip file archive.'''
|
|
6621
|
+
'''The identifier of the function's `runtime <https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html>`_ . Runtime is required if the deployment package is a .zip file archive. Specifying a runtime results in an error if you're deploying a function using a container image.'''
|
|
6622
6622
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "runtime"))
|
|
6623
6623
|
|
|
6624
6624
|
@runtime.setter
|
|
@@ -7748,7 +7748,7 @@ class CfnFunctionProps:
|
|
|
7748
7748
|
:param memory_size: The amount of `memory available to the function <https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-memory-console>`_ at runtime. Increasing the function memory also increases its CPU allocation. The default value is 128 MB. The value can be any multiple of 1 MB. Note that new AWS accounts have reduced concurrency and memory quotas. AWS raises these quotas automatically based on your usage. You can also request a quota increase.
|
|
7749
7749
|
:param package_type: The type of deployment package. Set to ``Image`` for container image and set ``Zip`` for .zip file archive.
|
|
7750
7750
|
:param reserved_concurrent_executions: The number of simultaneous executions to reserve for the function.
|
|
7751
|
-
:param runtime: The identifier of the function's `runtime <https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html>`_ . Runtime is required if the deployment package is a .zip file archive. The following list includes deprecated runtimes. For more information, see `Runtime deprecation
|
|
7751
|
+
:param runtime: The identifier of the function's `runtime <https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html>`_ . Runtime is required if the deployment package is a .zip file archive. Specifying a runtime results in an error if you're deploying a function using a container image. The following list includes deprecated runtimes. Lambda blocks creating new functions and updating existing functions shortly after each runtime is deprecated. For more information, see `Runtime use after deprecation <https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtime-deprecation-levels>`_ . For a list of all currently supported runtimes, see `Supported runtimes <https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtimes-supported>`_ .
|
|
7752
7752
|
:param runtime_management_config: Sets the runtime management configuration for a function's version. For more information, see `Runtime updates <https://docs.aws.amazon.com/lambda/latest/dg/runtimes-update.html>`_ .
|
|
7753
7753
|
:param snap_start: The function's `AWS Lambda SnapStart <https://docs.aws.amazon.com/lambda/latest/dg/snapstart.html>`_ setting.
|
|
7754
7754
|
:param tags: A list of `tags <https://docs.aws.amazon.com/lambda/latest/dg/tagging.html>`_ to apply to the function.
|
|
@@ -8116,9 +8116,11 @@ class CfnFunctionProps:
|
|
|
8116
8116
|
|
|
8117
8117
|
@builtins.property
|
|
8118
8118
|
def runtime(self) -> typing.Optional[builtins.str]:
|
|
8119
|
-
'''The identifier of the function's `runtime <https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html>`_ . Runtime is required if the deployment package is a .zip file archive.
|
|
8119
|
+
'''The identifier of the function's `runtime <https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html>`_ . Runtime is required if the deployment package is a .zip file archive. Specifying a runtime results in an error if you're deploying a function using a container image.
|
|
8120
8120
|
|
|
8121
|
-
The following list includes deprecated runtimes. For more information, see `Runtime deprecation
|
|
8121
|
+
The following list includes deprecated runtimes. Lambda blocks creating new functions and updating existing functions shortly after each runtime is deprecated. For more information, see `Runtime use after deprecation <https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtime-deprecation-levels>`_ .
|
|
8122
|
+
|
|
8123
|
+
For a list of all currently supported runtimes, see `Supported runtimes <https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtimes-supported>`_ .
|
|
8122
8124
|
|
|
8123
8125
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-runtime
|
|
8124
8126
|
'''
|
|
@@ -5959,7 +5959,7 @@ class CfnInstance(
|
|
|
5959
5959
|
@builtins.property
|
|
5960
5960
|
@jsii.member(jsii_name="attrIpv6Addresses")
|
|
5961
5961
|
def attr_ipv6_addresses(self) -> typing.List[builtins.str]:
|
|
5962
|
-
'''IPv6 addresses of the instance.
|
|
5962
|
+
'''The IPv6 addresses of the instance.
|
|
5963
5963
|
|
|
5964
5964
|
:cloudformationAttribute: Ipv6Addresses
|
|
5965
5965
|
'''
|
aws_cdk/aws_location/__init__.py
CHANGED
|
@@ -1362,7 +1362,7 @@ class CfnMap(
|
|
|
1362
1362
|
) -> None:
|
|
1363
1363
|
'''Specifies the map tile style selected from an available provider.
|
|
1364
1364
|
|
|
1365
|
-
:param style: Specifies the map style selected from an available data provider. Valid `Esri map styles <https://docs.aws.amazon.com/location/latest/developerguide/esri.html>`_ : - ``
|
|
1365
|
+
:param style: Specifies the map style selected from an available data provider. Valid `Esri map styles <https://docs.aws.amazon.com/location/latest/developerguide/esri.html>`_ : - ``VectorEsriDarkGrayCanvas`` – The Esri Dark Gray Canvas map style. A vector basemap with a dark gray, neutral background with minimal colors, labels, and features that's designed to draw attention to your thematic content. - ``RasterEsriImagery`` – The Esri Imagery map style. A raster basemap that provides one meter or better satellite and aerial imagery in many parts of the world and lower resolution satellite imagery worldwide. - ``VectorEsriLightGrayCanvas`` – The Esri Light Gray Canvas map style, which provides a detailed vector basemap with a light gray, neutral background style with minimal colors, labels, and features that's designed to draw attention to your thematic content. - ``VectorEsriTopographic`` – The Esri Light map style, which provides a detailed vector basemap with a classic Esri map style. - ``VectorEsriStreets`` – The Esri Street Map style, which provides a detailed vector basemap for the world symbolized with a classic Esri street map style. The vector tile layer is similar in content and style to the World Street Map raster map. - ``VectorEsriNavigation`` – The Esri Navigation map style, which provides a detailed basemap for the world symbolized with a custom navigation map style that's designed for use during the day in mobile devices. Valid `HERE Technologies map styles <https://docs.aws.amazon.com/location/latest/developerguide/HERE.html>`_ : - ``VectorHereContrast`` – The HERE Contrast (Berlin) map style is a high contrast detailed base map of the world that blends 3D and 2D rendering. .. epigraph:: The ``VectorHereContrast`` style has been renamed from ``VectorHereBerlin`` . ``VectorHereBerlin`` has been deprecated, but will continue to work in applications that use it. - ``VectorHereExplore`` – A default HERE map style containing a neutral, global map and its features including roads, buildings, landmarks, and water features. It also now includes a fully designed map of Japan. - ``VectorHereExploreTruck`` – A global map containing truck restrictions and attributes (e.g. width / height / HAZMAT) symbolized with highlighted segments and icons on top of HERE Explore to support use cases within transport and logistics. - ``RasterHereExploreSatellite`` – A global map containing high resolution satellite imagery. - ``HybridHereExploreSatellite`` – A global map displaying the road network, street names, and city labels over satellite imagery. This style will automatically retrieve both raster and vector tiles, and your charges will be based on total tiles retrieved. .. epigraph:: Hybrid styles use both vector and raster tiles when rendering the map that you see. This means that more tiles are retrieved than when using either vector or raster tiles alone. Your charges will include all tiles retrieved. Valid `GrabMaps map styles <https://docs.aws.amazon.com/location/latest/developerguide/grab.html>`_ : - ``VectorGrabStandardLight`` – The Grab Standard Light map style provides a basemap with detailed land use coloring, area names, roads, landmarks, and points of interest covering Southeast Asia. - ``VectorGrabStandardDark`` – The Grab Standard Dark map style provides a dark variation of the standard basemap covering Southeast Asia. .. epigraph:: Grab provides maps only for countries in Southeast Asia, and is only available in the Asia Pacific (Singapore) Region ( ``ap-southeast-1`` ). For more information, see `GrabMaps countries and area covered <https://docs.aws.amazon.com/location/latest/developerguide/grab.html#grab-coverage-area>`_ . Valid `Open Data map styles <https://docs.aws.amazon.com/location/latest/developerguide/open-data.html>`_ : - ``VectorOpenDataStandardLight`` – The Open Data Standard Light map style provides a detailed basemap for the world suitable for website and mobile application use. The map includes highways major roads, minor roads, railways, water features, cities, parks, landmarks, building footprints, and administrative boundaries. - ``VectorOpenDataStandardDark`` – Open Data Standard Dark is a dark-themed map style that provides a detailed basemap for the world suitable for website and mobile application use. The map includes highways major roads, minor roads, railways, water features, cities, parks, landmarks, building footprints, and administrative boundaries. - ``VectorOpenDataVisualizationLight`` – The Open Data Visualization Light map style is a light-themed style with muted colors and fewer features that aids in understanding overlaid data. - ``VectorOpenDataVisualizationDark`` – The Open Data Visualization Dark map style is a dark-themed style with muted colors and fewer features that aids in understanding overlaid data.
|
|
1366
1366
|
:param custom_layers: Specifies the custom layers for the style. Leave unset to not enable any custom layer, or, for styles that support custom layers, you can enable layer(s), such as the ``POI`` layer for the VectorEsriNavigation style. .. epigraph:: Currenlty only ``VectorEsriNavigation`` supports CustomLayers. For more information, see `Custom Layers <https://docs.aws.amazon.com//location/latest/developerguide/map-concepts.html#map-custom-layers>`_ .
|
|
1367
1367
|
:param political_view: Specifies the map political view selected from an available data provider.
|
|
1368
1368
|
|
|
@@ -1402,30 +1402,29 @@ class CfnMap(
|
|
|
1402
1402
|
|
|
1403
1403
|
Valid `Esri map styles <https://docs.aws.amazon.com/location/latest/developerguide/esri.html>`_ :
|
|
1404
1404
|
|
|
1405
|
-
- ``
|
|
1405
|
+
- ``VectorEsriDarkGrayCanvas`` – The Esri Dark Gray Canvas map style. A vector basemap with a dark gray, neutral background with minimal colors, labels, and features that's designed to draw attention to your thematic content.
|
|
1406
1406
|
- ``RasterEsriImagery`` – The Esri Imagery map style. A raster basemap that provides one meter or better satellite and aerial imagery in many parts of the world and lower resolution satellite imagery worldwide.
|
|
1407
1407
|
- ``VectorEsriLightGrayCanvas`` – The Esri Light Gray Canvas map style, which provides a detailed vector basemap with a light gray, neutral background style with minimal colors, labels, and features that's designed to draw attention to your thematic content.
|
|
1408
1408
|
- ``VectorEsriTopographic`` – The Esri Light map style, which provides a detailed vector basemap with a classic Esri map style.
|
|
1409
1409
|
- ``VectorEsriStreets`` – The Esri Street Map style, which provides a detailed vector basemap for the world symbolized with a classic Esri street map style. The vector tile layer is similar in content and style to the World Street Map raster map.
|
|
1410
|
-
- ``
|
|
1410
|
+
- ``VectorEsriNavigation`` – The Esri Navigation map style, which provides a detailed basemap for the world symbolized with a custom navigation map style that's designed for use during the day in mobile devices.
|
|
1411
1411
|
|
|
1412
1412
|
Valid `HERE Technologies map styles <https://docs.aws.amazon.com/location/latest/developerguide/HERE.html>`_ :
|
|
1413
1413
|
|
|
1414
|
-
- ``VectorHereExplore`` – A default HERE map style containing a neutral, global map and its features including roads, buildings, landmarks, and water features. It also now includes a fully designed map of Japan.
|
|
1415
|
-
- ``RasterHereExploreSatellite`` – A global map containing high resolution satellite imagery.
|
|
1416
|
-
- ``HybridHereExploreSatellite`` – A global map displaying the road network, street names, and city labels over satellite imagery. This style will automatically retrieve both raster and vector tiles, and your charges will be based on total tiles retrieved.
|
|
1417
|
-
|
|
1418
|
-
.. epigraph::
|
|
1419
|
-
|
|
1420
|
-
Hybrid styles use both vector and raster tiles when rendering the map that you see. This means that more tiles are retrieved than when using either vector or raster tiles alone. Your charges will include all tiles retrieved.
|
|
1421
|
-
|
|
1422
1414
|
- ``VectorHereContrast`` – The HERE Contrast (Berlin) map style is a high contrast detailed base map of the world that blends 3D and 2D rendering.
|
|
1423
1415
|
|
|
1424
1416
|
.. epigraph::
|
|
1425
1417
|
|
|
1426
1418
|
The ``VectorHereContrast`` style has been renamed from ``VectorHereBerlin`` . ``VectorHereBerlin`` has been deprecated, but will continue to work in applications that use it.
|
|
1427
1419
|
|
|
1420
|
+
- ``VectorHereExplore`` – A default HERE map style containing a neutral, global map and its features including roads, buildings, landmarks, and water features. It also now includes a fully designed map of Japan.
|
|
1428
1421
|
- ``VectorHereExploreTruck`` – A global map containing truck restrictions and attributes (e.g. width / height / HAZMAT) symbolized with highlighted segments and icons on top of HERE Explore to support use cases within transport and logistics.
|
|
1422
|
+
- ``RasterHereExploreSatellite`` – A global map containing high resolution satellite imagery.
|
|
1423
|
+
- ``HybridHereExploreSatellite`` – A global map displaying the road network, street names, and city labels over satellite imagery. This style will automatically retrieve both raster and vector tiles, and your charges will be based on total tiles retrieved.
|
|
1424
|
+
|
|
1425
|
+
.. epigraph::
|
|
1426
|
+
|
|
1427
|
+
Hybrid styles use both vector and raster tiles when rendering the map that you see. This means that more tiles are retrieved than when using either vector or raster tiles alone. Your charges will include all tiles retrieved.
|
|
1429
1428
|
|
|
1430
1429
|
Valid `GrabMaps map styles <https://docs.aws.amazon.com/location/latest/developerguide/grab.html>`_ :
|
|
1431
1430
|
|
|
@@ -1081,7 +1081,7 @@ class CfnOriginEndpoint(
|
|
|
1081
1081
|
:param channel_name: The channel name associated with the origin endpoint.
|
|
1082
1082
|
:param origin_endpoint_name: The name of the origin endpoint associated with the origin endpoint configuration.
|
|
1083
1083
|
:param container_type: The container type associated with the origin endpoint configuration.
|
|
1084
|
-
:param dash_manifests:
|
|
1084
|
+
:param dash_manifests: A DASH manifest configuration.
|
|
1085
1085
|
:param description: The description associated with the origin endpoint.
|
|
1086
1086
|
:param hls_manifests: The HLS manfiests associated with the origin endpoint configuration.
|
|
1087
1087
|
:param low_latency_hls_manifests: The low-latency HLS (LL-HLS) manifests associated with the origin endpoint.
|
|
@@ -1234,6 +1234,7 @@ class CfnOriginEndpoint(
|
|
|
1234
1234
|
def dash_manifests(
|
|
1235
1235
|
self,
|
|
1236
1236
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.DashManifestConfigurationProperty"]]]]:
|
|
1237
|
+
'''A DASH manifest configuration.'''
|
|
1237
1238
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.DashManifestConfigurationProperty"]]]], jsii.get(self, "dashManifests"))
|
|
1238
1239
|
|
|
1239
1240
|
@dash_manifests.setter
|
|
@@ -1581,9 +1582,10 @@ class CfnOriginEndpoint(
|
|
|
1581
1582
|
timing_mode: typing.Optional[builtins.str] = None,
|
|
1582
1583
|
timing_source: typing.Optional[builtins.str] = None,
|
|
1583
1584
|
) -> None:
|
|
1584
|
-
'''
|
|
1585
|
-
|
|
1586
|
-
:param
|
|
1585
|
+
'''Determines the type of UTC timing included in the DASH Media Presentation Description (MPD).
|
|
1586
|
+
|
|
1587
|
+
:param timing_mode: The UTC timing mode.
|
|
1588
|
+
:param timing_source: The the method that the player uses to synchronize to coordinated universal time (UTC) wall clock time.
|
|
1587
1589
|
|
|
1588
1590
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashutctiming.html
|
|
1589
1591
|
:exampleMetadata: fixture=_generated
|
|
@@ -1611,7 +1613,8 @@ class CfnOriginEndpoint(
|
|
|
1611
1613
|
|
|
1612
1614
|
@builtins.property
|
|
1613
1615
|
def timing_mode(self) -> typing.Optional[builtins.str]:
|
|
1614
|
-
'''
|
|
1616
|
+
'''The UTC timing mode.
|
|
1617
|
+
|
|
1615
1618
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashutctiming.html#cfn-mediapackagev2-originendpoint-dashutctiming-timingmode
|
|
1616
1619
|
'''
|
|
1617
1620
|
result = self._values.get("timing_mode")
|
|
@@ -1619,7 +1622,8 @@ class CfnOriginEndpoint(
|
|
|
1619
1622
|
|
|
1620
1623
|
@builtins.property
|
|
1621
1624
|
def timing_source(self) -> typing.Optional[builtins.str]:
|
|
1622
|
-
'''
|
|
1625
|
+
'''The the method that the player uses to synchronize to coordinated universal time (UTC) wall clock time.
|
|
1626
|
+
|
|
1623
1627
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashutctiming.html#cfn-mediapackagev2-originendpoint-dashutctiming-timingsource
|
|
1624
1628
|
'''
|
|
1625
1629
|
result = self._values.get("timing_source")
|
|
@@ -1949,12 +1953,12 @@ class CfnOriginEndpoint(
|
|
|
1949
1953
|
start: typing.Optional[builtins.str] = None,
|
|
1950
1954
|
time_delay_seconds: typing.Optional[jsii.Number] = None,
|
|
1951
1955
|
) -> None:
|
|
1952
|
-
'''
|
|
1956
|
+
'''Filter configuration includes settings for manifest filtering, start and end times, and time delay that apply to all of your egress requests for this manifest.
|
|
1953
1957
|
|
|
1954
|
-
:param end:
|
|
1955
|
-
:param manifest_filter:
|
|
1956
|
-
:param start:
|
|
1957
|
-
:param time_delay_seconds:
|
|
1958
|
+
:param end: Optionally specify the end time for all of your manifest egress requests. When you include end time, note that you cannot use end time query parameters for this manifest's endpoint URL.
|
|
1959
|
+
:param manifest_filter: Optionally specify one or more manifest filters for all of your manifest egress requests. When you include a manifest filter, note that you cannot use an identical manifest filter query parameter for this manifest's endpoint URL.
|
|
1960
|
+
:param start: Optionally specify the start time for all of your manifest egress requests. When you include start time, note that you cannot use start time query parameters for this manifest's endpoint URL.
|
|
1961
|
+
:param time_delay_seconds: Optionally specify the time delay for all of your manifest egress requests. Enter a value that is smaller than your endpoint's startover window. When you include time delay, note that you cannot use time delay query parameters for this manifest's endpoint URL.
|
|
1958
1962
|
|
|
1959
1963
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-filterconfiguration.html
|
|
1960
1964
|
:exampleMetadata: fixture=_generated
|
|
@@ -1990,7 +1994,8 @@ class CfnOriginEndpoint(
|
|
|
1990
1994
|
|
|
1991
1995
|
@builtins.property
|
|
1992
1996
|
def end(self) -> typing.Optional[builtins.str]:
|
|
1993
|
-
'''
|
|
1997
|
+
'''Optionally specify the end time for all of your manifest egress requests.
|
|
1998
|
+
|
|
1994
1999
|
When you include end time, note that you cannot use end time query parameters for this manifest's endpoint URL.
|
|
1995
2000
|
|
|
1996
2001
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-filterconfiguration.html#cfn-mediapackagev2-originendpoint-filterconfiguration-end
|
|
@@ -2000,7 +2005,8 @@ class CfnOriginEndpoint(
|
|
|
2000
2005
|
|
|
2001
2006
|
@builtins.property
|
|
2002
2007
|
def manifest_filter(self) -> typing.Optional[builtins.str]:
|
|
2003
|
-
'''
|
|
2008
|
+
'''Optionally specify one or more manifest filters for all of your manifest egress requests.
|
|
2009
|
+
|
|
2004
2010
|
When you include a manifest filter, note that you cannot use an identical manifest filter query parameter for this manifest's endpoint URL.
|
|
2005
2011
|
|
|
2006
2012
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-filterconfiguration.html#cfn-mediapackagev2-originendpoint-filterconfiguration-manifestfilter
|
|
@@ -2010,7 +2016,8 @@ class CfnOriginEndpoint(
|
|
|
2010
2016
|
|
|
2011
2017
|
@builtins.property
|
|
2012
2018
|
def start(self) -> typing.Optional[builtins.str]:
|
|
2013
|
-
'''
|
|
2019
|
+
'''Optionally specify the start time for all of your manifest egress requests.
|
|
2020
|
+
|
|
2014
2021
|
When you include start time, note that you cannot use start time query parameters for this manifest's endpoint URL.
|
|
2015
2022
|
|
|
2016
2023
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-filterconfiguration.html#cfn-mediapackagev2-originendpoint-filterconfiguration-start
|
|
@@ -2020,7 +2027,8 @@ class CfnOriginEndpoint(
|
|
|
2020
2027
|
|
|
2021
2028
|
@builtins.property
|
|
2022
2029
|
def time_delay_seconds(self) -> typing.Optional[jsii.Number]:
|
|
2023
|
-
'''
|
|
2030
|
+
'''Optionally specify the time delay for all of your manifest egress requests.
|
|
2031
|
+
|
|
2024
2032
|
Enter a value that is smaller than your endpoint's startover window. When you include time delay, note that you cannot use time delay query parameters for this manifest's endpoint URL.
|
|
2025
2033
|
|
|
2026
2034
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-filterconfiguration.html#cfn-mediapackagev2-originendpoint-filterconfiguration-timedelayseconds
|
|
@@ -2390,8 +2398,9 @@ class CfnOriginEndpoint(
|
|
|
2390
2398
|
*,
|
|
2391
2399
|
ad_marker_dash: typing.Optional[builtins.str] = None,
|
|
2392
2400
|
) -> None:
|
|
2393
|
-
'''
|
|
2394
|
-
|
|
2401
|
+
'''The SCTE configuration.
|
|
2402
|
+
|
|
2403
|
+
:param ad_marker_dash: Choose how ad markers are included in the packaged content. If you include ad markers in the content stream in your upstream encoders, then you need to inform MediaPackage what to do with the ad markers in the output. Value description: - ``Binary`` - The SCTE-35 marker is expressed as a hex-string (Base64 string) rather than full XML. - ``XML`` - The SCTE marker is expressed fully in XML.
|
|
2395
2404
|
|
|
2396
2405
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-sctedash.html
|
|
2397
2406
|
:exampleMetadata: fixture=_generated
|
|
@@ -2415,7 +2424,15 @@ class CfnOriginEndpoint(
|
|
|
2415
2424
|
|
|
2416
2425
|
@builtins.property
|
|
2417
2426
|
def ad_marker_dash(self) -> typing.Optional[builtins.str]:
|
|
2418
|
-
'''
|
|
2427
|
+
'''Choose how ad markers are included in the packaged content.
|
|
2428
|
+
|
|
2429
|
+
If you include ad markers in the content stream in your upstream encoders, then you need to inform MediaPackage what to do with the ad markers in the output.
|
|
2430
|
+
|
|
2431
|
+
Value description:
|
|
2432
|
+
|
|
2433
|
+
- ``Binary`` - The SCTE-35 marker is expressed as a hex-string (Base64 string) rather than full XML.
|
|
2434
|
+
- ``XML`` - The SCTE marker is expressed fully in XML.
|
|
2435
|
+
|
|
2419
2436
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-sctedash.html#cfn-mediapackagev2-originendpoint-sctedash-admarkerdash
|
|
2420
2437
|
'''
|
|
2421
2438
|
result = self._values.get("ad_marker_dash")
|
|
@@ -3157,7 +3174,7 @@ class CfnOriginEndpointProps:
|
|
|
3157
3174
|
:param channel_name: The channel name associated with the origin endpoint.
|
|
3158
3175
|
:param origin_endpoint_name: The name of the origin endpoint associated with the origin endpoint configuration.
|
|
3159
3176
|
:param container_type: The container type associated with the origin endpoint configuration.
|
|
3160
|
-
:param dash_manifests:
|
|
3177
|
+
:param dash_manifests: A DASH manifest configuration.
|
|
3161
3178
|
:param description: The description associated with the origin endpoint.
|
|
3162
3179
|
:param hls_manifests: The HLS manfiests associated with the origin endpoint configuration.
|
|
3163
3180
|
:param low_latency_hls_manifests: The low-latency HLS (LL-HLS) manifests associated with the origin endpoint.
|
|
@@ -3358,7 +3375,8 @@ class CfnOriginEndpointProps:
|
|
|
3358
3375
|
def dash_manifests(
|
|
3359
3376
|
self,
|
|
3360
3377
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnOriginEndpoint.DashManifestConfigurationProperty]]]]:
|
|
3361
|
-
'''
|
|
3378
|
+
'''A DASH manifest configuration.
|
|
3379
|
+
|
|
3362
3380
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediapackagev2-originendpoint.html#cfn-mediapackagev2-originendpoint-dashmanifests
|
|
3363
3381
|
'''
|
|
3364
3382
|
result = self._values.get("dash_manifests")
|
|
@@ -2183,7 +2183,7 @@ class CfnPlaybackConfiguration(
|
|
|
2183
2183
|
|
|
2184
2184
|
For more information about ad suppression, see `Ad Suppression <https://docs.aws.amazon.com/mediatailor/latest/ug/ad-behavior.html>`_ .
|
|
2185
2185
|
|
|
2186
|
-
:param fill_policy: Defines the policy to apply to the avail suppression mode. BEHIND_LIVE_EDGE will always use the full avail suppression policy. AFTER_LIVE_EDGE mode can be used to invoke partial ad break fills when a session starts mid-break.
|
|
2186
|
+
:param fill_policy: Defines the policy to apply to the avail suppression mode. ``BEHIND_LIVE_EDGE`` will always use the full avail suppression policy. ``AFTER_LIVE_EDGE`` mode can be used to invoke partial ad break fills when a session starts mid-break.
|
|
2187
2187
|
:param mode: Sets the ad suppression mode. By default, ad suppression is off and all ad breaks are filled with ads or slate. When Mode is set to ``BEHIND_LIVE_EDGE`` , ad suppression is active and MediaTailor won't fill ad breaks on or behind the ad suppression Value time in the manifest lookback window. When Mode is set to ``AFTER_LIVE_EDGE`` , ad suppression is active and MediaTailor won't fill ad breaks that are within the live edge plus the avail suppression value.
|
|
2188
2188
|
:param value: A live edge offset time in HH:MM:SS. MediaTailor won't fill ad breaks on or behind this time in the manifest lookback window. If Value is set to 00:00:00, it is in sync with the live edge, and MediaTailor won't fill any ad breaks on or behind the live edge. If you set a Value time, MediaTailor won't fill any ad breaks on or behind this time in the manifest lookback window. For example, if you set 00:45:00, then MediaTailor will fill ad breaks that occur within 45 minutes behind the live edge, but won't fill ad breaks on or behind 45 minutes behind the live edge.
|
|
2189
2189
|
|
|
@@ -2219,7 +2219,7 @@ class CfnPlaybackConfiguration(
|
|
|
2219
2219
|
def fill_policy(self) -> typing.Optional[builtins.str]:
|
|
2220
2220
|
'''Defines the policy to apply to the avail suppression mode.
|
|
2221
2221
|
|
|
2222
|
-
BEHIND_LIVE_EDGE will always use the full avail suppression policy. AFTER_LIVE_EDGE mode can be used to invoke partial ad break fills when a session starts mid-break.
|
|
2222
|
+
``BEHIND_LIVE_EDGE`` will always use the full avail suppression policy. ``AFTER_LIVE_EDGE`` mode can be used to invoke partial ad break fills when a session starts mid-break.
|
|
2223
2223
|
|
|
2224
2224
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-availsuppression.html#cfn-mediatailor-playbackconfiguration-availsuppression-fillpolicy
|
|
2225
2225
|
'''
|
aws_cdk/aws_msk/__init__.py
CHANGED
|
@@ -409,7 +409,7 @@ class CfnCluster(
|
|
|
409
409
|
:param cluster_name: The name of the cluster.
|
|
410
410
|
:param kafka_version: The version of Apache Kafka. You can use Amazon MSK to create clusters that use Apache Kafka versions 1.1.1 and 2.2.1.
|
|
411
411
|
:param number_of_broker_nodes: The number of broker nodes in the cluster.
|
|
412
|
-
:param client_authentication:
|
|
412
|
+
:param client_authentication: Includes all client authentication related information.
|
|
413
413
|
:param configuration_info: Represents the configuration that you want MSK to use for the cluster.
|
|
414
414
|
:param current_version: The version of the cluster that you want to update.
|
|
415
415
|
:param encryption_info: Includes all encryption-related information.
|
|
@@ -552,7 +552,7 @@ class CfnCluster(
|
|
|
552
552
|
def client_authentication(
|
|
553
553
|
self,
|
|
554
554
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCluster.ClientAuthenticationProperty"]]:
|
|
555
|
-
'''
|
|
555
|
+
'''Includes all client authentication related information.'''
|
|
556
556
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCluster.ClientAuthenticationProperty"]], jsii.get(self, "clientAuthentication"))
|
|
557
557
|
|
|
558
558
|
@client_authentication.setter
|
|
@@ -3274,7 +3274,7 @@ class CfnClusterProps:
|
|
|
3274
3274
|
:param cluster_name: The name of the cluster.
|
|
3275
3275
|
:param kafka_version: The version of Apache Kafka. You can use Amazon MSK to create clusters that use Apache Kafka versions 1.1.1 and 2.2.1.
|
|
3276
3276
|
:param number_of_broker_nodes: The number of broker nodes in the cluster.
|
|
3277
|
-
:param client_authentication:
|
|
3277
|
+
:param client_authentication: Includes all client authentication related information.
|
|
3278
3278
|
:param configuration_info: Represents the configuration that you want MSK to use for the cluster.
|
|
3279
3279
|
:param current_version: The version of the cluster that you want to update.
|
|
3280
3280
|
:param encryption_info: Includes all encryption-related information.
|
|
@@ -3495,7 +3495,7 @@ class CfnClusterProps:
|
|
|
3495
3495
|
def client_authentication(
|
|
3496
3496
|
self,
|
|
3497
3497
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnCluster.ClientAuthenticationProperty]]:
|
|
3498
|
-
'''
|
|
3498
|
+
'''Includes all client authentication related information.
|
|
3499
3499
|
|
|
3500
3500
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-cluster.html#cfn-msk-cluster-clientauthentication
|
|
3501
3501
|
'''
|
aws_cdk/aws_mwaa/__init__.py
CHANGED
|
@@ -177,9 +177,9 @@ class CfnEnvironment(
|
|
|
177
177
|
:param execution_role_arn: The Amazon Resource Name (ARN) of the execution role in IAM that allows MWAA to access AWS resources in your environment. For example, ``arn:aws:iam::123456789:role/my-execution-role`` . To learn more, see `Amazon MWAA Execution role <https://docs.aws.amazon.com/mwaa/latest/userguide/mwaa-create-role.html>`_ .
|
|
178
178
|
:param kms_key: The AWS Key Management Service (KMS) key to encrypt and decrypt the data in your environment. You can use an AWS KMS key managed by MWAA, or a customer-managed KMS key (advanced).
|
|
179
179
|
:param logging_configuration: The Apache Airflow logs being sent to CloudWatch Logs: ``DagProcessingLogs`` , ``SchedulerLogs`` , ``TaskLogs`` , ``WebserverLogs`` , ``WorkerLogs`` .
|
|
180
|
-
:param max_webservers:
|
|
180
|
+
:param max_webservers: The maximum number of web servers that you want to run in your environment. Amazon MWAA scales the number of Apache Airflow web servers up to the number you specify for ``MaxWebservers`` when you interact with your Apache Airflow environment using Apache Airflow REST API, or the Apache Airflow CLI. For example, in scenarios where your workload requires network calls to the Apache Airflow REST API with a high transaction-per-second (TPS) rate, Amazon MWAA will increase the number of web servers up to the number set in ``MaxWebserers`` . As TPS rates decrease Amazon MWAA disposes of the additional web servers, and scales down to the number set in ``MinxWebserers`` . Valid values: Accepts between ``2`` and ``5`` . Defaults to ``2`` .
|
|
181
181
|
:param max_workers: The maximum number of workers that you want to run in your environment. MWAA scales the number of Apache Airflow workers up to the number you specify in the ``MaxWorkers`` field. For example, ``20`` . When there are no more tasks running, and no more in the queue, MWAA disposes of the extra workers leaving the one worker that is included with your environment, or the number you specify in ``MinWorkers`` .
|
|
182
|
-
:param min_webservers:
|
|
182
|
+
:param min_webservers: The minimum number of web servers that you want to run in your environment. Amazon MWAA scales the number of Apache Airflow web servers up to the number you specify for ``MaxWebservers`` when you interact with your Apache Airflow environment using Apache Airflow REST API, or the Apache Airflow CLI. As the transaction-per-second rate, and the network load, decrease, Amazon MWAA disposes of the additional web servers, and scales down to the number set in ``MinxWebserers`` . Valid values: Accepts between ``2`` and ``5`` . Defaults to ``2`` .
|
|
183
183
|
:param min_workers: The minimum number of workers that you want to run in your environment. MWAA scales the number of Apache Airflow workers up to the number you specify in the ``MaxWorkers`` field. When there are no more tasks running, and no more in the queue, MWAA disposes of the extra workers leaving the worker count you specify in the ``MinWorkers`` field. For example, ``2`` .
|
|
184
184
|
:param network_configuration: The VPC networking components used to secure and enable network traffic between the AWS resources for your environment. To learn more, see `About networking on Amazon MWAA <https://docs.aws.amazon.com/mwaa/latest/userguide/networking-about.html>`_ .
|
|
185
185
|
:param plugins_s3_object_version: The version of the plugins.zip file on your Amazon S3 bucket. To learn more, see `Installing custom plugins <https://docs.aws.amazon.com/mwaa/latest/userguide/configuring-dag-import-plugins.html>`_ .
|
|
@@ -494,7 +494,7 @@ class CfnEnvironment(
|
|
|
494
494
|
@builtins.property
|
|
495
495
|
@jsii.member(jsii_name="maxWebservers")
|
|
496
496
|
def max_webservers(self) -> typing.Optional[jsii.Number]:
|
|
497
|
-
'''
|
|
497
|
+
'''The maximum number of web servers that you want to run in your environment.'''
|
|
498
498
|
return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "maxWebservers"))
|
|
499
499
|
|
|
500
500
|
@max_webservers.setter
|
|
@@ -520,7 +520,7 @@ class CfnEnvironment(
|
|
|
520
520
|
@builtins.property
|
|
521
521
|
@jsii.member(jsii_name="minWebservers")
|
|
522
522
|
def min_webservers(self) -> typing.Optional[jsii.Number]:
|
|
523
|
-
'''
|
|
523
|
+
'''The minimum number of web servers that you want to run in your environment.'''
|
|
524
524
|
return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "minWebservers"))
|
|
525
525
|
|
|
526
526
|
@min_webservers.setter
|
|
@@ -1120,9 +1120,9 @@ class CfnEnvironmentProps:
|
|
|
1120
1120
|
:param execution_role_arn: The Amazon Resource Name (ARN) of the execution role in IAM that allows MWAA to access AWS resources in your environment. For example, ``arn:aws:iam::123456789:role/my-execution-role`` . To learn more, see `Amazon MWAA Execution role <https://docs.aws.amazon.com/mwaa/latest/userguide/mwaa-create-role.html>`_ .
|
|
1121
1121
|
:param kms_key: The AWS Key Management Service (KMS) key to encrypt and decrypt the data in your environment. You can use an AWS KMS key managed by MWAA, or a customer-managed KMS key (advanced).
|
|
1122
1122
|
:param logging_configuration: The Apache Airflow logs being sent to CloudWatch Logs: ``DagProcessingLogs`` , ``SchedulerLogs`` , ``TaskLogs`` , ``WebserverLogs`` , ``WorkerLogs`` .
|
|
1123
|
-
:param max_webservers:
|
|
1123
|
+
:param max_webservers: The maximum number of web servers that you want to run in your environment. Amazon MWAA scales the number of Apache Airflow web servers up to the number you specify for ``MaxWebservers`` when you interact with your Apache Airflow environment using Apache Airflow REST API, or the Apache Airflow CLI. For example, in scenarios where your workload requires network calls to the Apache Airflow REST API with a high transaction-per-second (TPS) rate, Amazon MWAA will increase the number of web servers up to the number set in ``MaxWebserers`` . As TPS rates decrease Amazon MWAA disposes of the additional web servers, and scales down to the number set in ``MinxWebserers`` . Valid values: Accepts between ``2`` and ``5`` . Defaults to ``2`` .
|
|
1124
1124
|
:param max_workers: The maximum number of workers that you want to run in your environment. MWAA scales the number of Apache Airflow workers up to the number you specify in the ``MaxWorkers`` field. For example, ``20`` . When there are no more tasks running, and no more in the queue, MWAA disposes of the extra workers leaving the one worker that is included with your environment, or the number you specify in ``MinWorkers`` .
|
|
1125
|
-
:param min_webservers:
|
|
1125
|
+
:param min_webservers: The minimum number of web servers that you want to run in your environment. Amazon MWAA scales the number of Apache Airflow web servers up to the number you specify for ``MaxWebservers`` when you interact with your Apache Airflow environment using Apache Airflow REST API, or the Apache Airflow CLI. As the transaction-per-second rate, and the network load, decrease, Amazon MWAA disposes of the additional web servers, and scales down to the number set in ``MinxWebserers`` . Valid values: Accepts between ``2`` and ``5`` . Defaults to ``2`` .
|
|
1126
1126
|
:param min_workers: The minimum number of workers that you want to run in your environment. MWAA scales the number of Apache Airflow workers up to the number you specify in the ``MaxWorkers`` field. When there are no more tasks running, and no more in the queue, MWAA disposes of the extra workers leaving the worker count you specify in the ``MinWorkers`` field. For example, ``2`` .
|
|
1127
1127
|
:param network_configuration: The VPC networking components used to secure and enable network traffic between the AWS resources for your environment. To learn more, see `About networking on Amazon MWAA <https://docs.aws.amazon.com/mwaa/latest/userguide/networking-about.html>`_ .
|
|
1128
1128
|
:param plugins_s3_object_version: The version of the plugins.zip file on your Amazon S3 bucket. To learn more, see `Installing custom plugins <https://docs.aws.amazon.com/mwaa/latest/userguide/configuring-dag-import-plugins.html>`_ .
|
|
@@ -1391,7 +1391,11 @@ class CfnEnvironmentProps:
|
|
|
1391
1391
|
|
|
1392
1392
|
@builtins.property
|
|
1393
1393
|
def max_webservers(self) -> typing.Optional[jsii.Number]:
|
|
1394
|
-
'''
|
|
1394
|
+
'''The maximum number of web servers that you want to run in your environment.
|
|
1395
|
+
|
|
1396
|
+
Amazon MWAA scales the number of Apache Airflow web servers up to the number you specify for ``MaxWebservers`` when you interact with your Apache Airflow environment using Apache Airflow REST API, or the Apache Airflow CLI. For example, in scenarios where your workload requires network calls to the Apache Airflow REST API with a high transaction-per-second (TPS) rate, Amazon MWAA will increase the number of web servers up to the number set in ``MaxWebserers`` . As TPS rates decrease Amazon MWAA disposes of the additional web servers, and scales down to the number set in ``MinxWebserers`` .
|
|
1397
|
+
|
|
1398
|
+
Valid values: Accepts between ``2`` and ``5`` . Defaults to ``2`` .
|
|
1395
1399
|
|
|
1396
1400
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mwaa-environment.html#cfn-mwaa-environment-maxwebservers
|
|
1397
1401
|
'''
|
|
@@ -1411,7 +1415,11 @@ class CfnEnvironmentProps:
|
|
|
1411
1415
|
|
|
1412
1416
|
@builtins.property
|
|
1413
1417
|
def min_webservers(self) -> typing.Optional[jsii.Number]:
|
|
1414
|
-
'''
|
|
1418
|
+
'''The minimum number of web servers that you want to run in your environment.
|
|
1419
|
+
|
|
1420
|
+
Amazon MWAA scales the number of Apache Airflow web servers up to the number you specify for ``MaxWebservers`` when you interact with your Apache Airflow environment using Apache Airflow REST API, or the Apache Airflow CLI. As the transaction-per-second rate, and the network load, decrease, Amazon MWAA disposes of the additional web servers, and scales down to the number set in ``MinxWebserers`` .
|
|
1421
|
+
|
|
1422
|
+
Valid values: Accepts between ``2`` and ``5`` . Defaults to ``2`` .
|
|
1415
1423
|
|
|
1416
1424
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mwaa-environment.html#cfn-mwaa-environment-minwebservers
|
|
1417
1425
|
'''
|
|
@@ -139,7 +139,7 @@ class CfnLaunchProfile(
|
|
|
139
139
|
:param name: A friendly name for the launch profile.
|
|
140
140
|
:param stream_configuration: A configuration for a streaming session.
|
|
141
141
|
:param studio_component_ids: Unique identifiers for a collection of studio components that can be used with this launch profile.
|
|
142
|
-
:param studio_id: The unique identifier for a studio resource. In Nimble Studio
|
|
142
|
+
:param studio_id: The unique identifier for a studio resource. In Nimble Studio, all other resources are contained in a studio resource.
|
|
143
143
|
:param description: A human-readable description of the launch profile.
|
|
144
144
|
:param tags: An array of key-value pairs to apply to this resource. For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ .
|
|
145
145
|
'''
|
|
@@ -929,7 +929,7 @@ class CfnLaunchProfileProps:
|
|
|
929
929
|
:param name: A friendly name for the launch profile.
|
|
930
930
|
:param stream_configuration: A configuration for a streaming session.
|
|
931
931
|
:param studio_component_ids: Unique identifiers for a collection of studio components that can be used with this launch profile.
|
|
932
|
-
:param studio_id: The unique identifier for a studio resource. In Nimble Studio
|
|
932
|
+
:param studio_id: The unique identifier for a studio resource. In Nimble Studio, all other resources are contained in a studio resource.
|
|
933
933
|
:param description: A human-readable description of the launch profile.
|
|
934
934
|
:param tags: An array of key-value pairs to apply to this resource. For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ .
|
|
935
935
|
|
|
@@ -1066,7 +1066,7 @@ class CfnLaunchProfileProps:
|
|
|
1066
1066
|
def studio_id(self) -> builtins.str:
|
|
1067
1067
|
'''The unique identifier for a studio resource.
|
|
1068
1068
|
|
|
1069
|
-
In Nimble Studio
|
|
1069
|
+
In Nimble Studio, all other resources are contained in a studio resource.
|
|
1070
1070
|
|
|
1071
1071
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-nimblestudio-launchprofile.html#cfn-nimblestudio-launchprofile-studioid
|
|
1072
1072
|
'''
|
|
@@ -1155,7 +1155,7 @@ class CfnStreamingImage(
|
|
|
1155
1155
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
1156
1156
|
:param ec2_image_id: The ID of an EC2 machine image with which to create the streaming image.
|
|
1157
1157
|
:param name: A friendly name for a streaming image resource.
|
|
1158
|
-
:param studio_id: The unique identifier for a studio resource. In Nimble Studio
|
|
1158
|
+
:param studio_id: The unique identifier for a studio resource. In Nimble Studio, all other resources are contained in a studio resource.
|
|
1159
1159
|
:param description: A human-readable description of the streaming image.
|
|
1160
1160
|
:param tags: An array of key-value pairs to apply to this resource. For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ .
|
|
1161
1161
|
'''
|
|
@@ -1441,7 +1441,7 @@ class CfnStreamingImageProps:
|
|
|
1441
1441
|
|
|
1442
1442
|
:param ec2_image_id: The ID of an EC2 machine image with which to create the streaming image.
|
|
1443
1443
|
:param name: A friendly name for a streaming image resource.
|
|
1444
|
-
:param studio_id: The unique identifier for a studio resource. In Nimble Studio
|
|
1444
|
+
:param studio_id: The unique identifier for a studio resource. In Nimble Studio, all other resources are contained in a studio resource.
|
|
1445
1445
|
:param description: A human-readable description of the streaming image.
|
|
1446
1446
|
:param tags: An array of key-value pairs to apply to this resource. For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ .
|
|
1447
1447
|
|
|
@@ -1507,7 +1507,7 @@ class CfnStreamingImageProps:
|
|
|
1507
1507
|
def studio_id(self) -> builtins.str:
|
|
1508
1508
|
'''The unique identifier for a studio resource.
|
|
1509
1509
|
|
|
1510
|
-
In Nimble Studio
|
|
1510
|
+
In Nimble Studio, all other resources are contained in a studio resource.
|
|
1511
1511
|
|
|
1512
1512
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-nimblestudio-streamingimage.html#cfn-nimblestudio-streamingimage-studioid
|
|
1513
1513
|
'''
|
|
@@ -1961,7 +1961,7 @@ class CfnStudioComponent(
|
|
|
1961
1961
|
:param scope: Scope in which this resource is defined.
|
|
1962
1962
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
1963
1963
|
:param name: A friendly name for the studio component resource.
|
|
1964
|
-
:param studio_id: The unique identifier for a studio resource. In Nimble Studio
|
|
1964
|
+
:param studio_id: The unique identifier for a studio resource. In Nimble Studio, all other resources are contained in a studio resource.
|
|
1965
1965
|
:param type: The type of the studio component.
|
|
1966
1966
|
:param configuration: The configuration of the studio component, based on component type.
|
|
1967
1967
|
:param description: A human-readable description for the studio component resource.
|
|
@@ -2982,7 +2982,7 @@ class CfnStudioComponentProps:
|
|
|
2982
2982
|
'''Properties for defining a ``CfnStudioComponent``.
|
|
2983
2983
|
|
|
2984
2984
|
:param name: A friendly name for the studio component resource.
|
|
2985
|
-
:param studio_id: The unique identifier for a studio resource. In Nimble Studio
|
|
2985
|
+
:param studio_id: The unique identifier for a studio resource. In Nimble Studio, all other resources are contained in a studio resource.
|
|
2986
2986
|
:param type: The type of the studio component.
|
|
2987
2987
|
:param configuration: The configuration of the studio component, based on component type.
|
|
2988
2988
|
:param description: A human-readable description for the studio component resource.
|
|
@@ -3105,7 +3105,7 @@ class CfnStudioComponentProps:
|
|
|
3105
3105
|
def studio_id(self) -> builtins.str:
|
|
3106
3106
|
'''The unique identifier for a studio resource.
|
|
3107
3107
|
|
|
3108
|
-
In Nimble Studio
|
|
3108
|
+
In Nimble Studio, all other resources are contained in a studio resource.
|
|
3109
3109
|
|
|
3110
3110
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-nimblestudio-studiocomponent.html#cfn-nimblestudio-studiocomponent-studioid
|
|
3111
3111
|
'''
|
|
@@ -2205,7 +2205,7 @@ class CfnDomain(
|
|
|
2205
2205
|
:param custom_endpoint_certificate_arn: The AWS Certificate Manager ARN for your domain's SSL/TLS certificate. Required if you enabled a custom endpoint for the domain.
|
|
2206
2206
|
:param custom_endpoint_enabled: True to enable a custom endpoint for the domain. If enabled, you must also provide values for ``CustomEndpoint`` and ``CustomEndpointCertificateArn`` .
|
|
2207
2207
|
:param enforce_https: True to require that all traffic to the domain arrive over HTTPS. Required if you enable fine-grained access control in `AdvancedSecurityOptions <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-advancedsecurityoptionsinput.html>`_ .
|
|
2208
|
-
:param tls_security_policy: The minimum TLS version required for traffic to the domain.
|
|
2208
|
+
:param tls_security_policy: The minimum TLS version required for traffic to the domain. The policy can be one of the following values:. - *Policy-Min-TLS-1-0-2019-07:* TLS security policy that supports TLS version 1.0 to TLS version 1.2 - *Policy-Min-TLS-1-2-2019-07:* TLS security policy that supports only TLS version 1.2 - *Policy-Min-TLS-1-2-PFS-2023-10:* TLS security policy that supports TLS version 1.2 to TLS version 1.3 with perfect forward secrecy cipher suites
|
|
2209
2209
|
|
|
2210
2210
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-domainendpointoptions.html
|
|
2211
2211
|
:exampleMetadata: fixture=_generated
|
|
@@ -2293,10 +2293,11 @@ class CfnDomain(
|
|
|
2293
2293
|
|
|
2294
2294
|
@builtins.property
|
|
2295
2295
|
def tls_security_policy(self) -> typing.Optional[builtins.str]:
|
|
2296
|
-
'''The minimum TLS version required for traffic to the domain.
|
|
2296
|
+
'''The minimum TLS version required for traffic to the domain. The policy can be one of the following values:.
|
|
2297
2297
|
|
|
2298
|
-
-
|
|
2299
|
-
-
|
|
2298
|
+
- *Policy-Min-TLS-1-0-2019-07:* TLS security policy that supports TLS version 1.0 to TLS version 1.2
|
|
2299
|
+
- *Policy-Min-TLS-1-2-2019-07:* TLS security policy that supports only TLS version 1.2
|
|
2300
|
+
- *Policy-Min-TLS-1-2-PFS-2023-10:* TLS security policy that supports TLS version 1.2 to TLS version 1.3 with perfect forward secrecy cipher suites
|
|
2300
2301
|
|
|
2301
2302
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-domainendpointoptions.html#cfn-opensearchservice-domain-domainendpointoptions-tlssecuritypolicy
|
|
2302
2303
|
'''
|
aws_cdk/aws_opsworks/__init__.py
CHANGED
|
@@ -3791,7 +3791,7 @@ class CfnLayer(
|
|
|
3791
3791
|
:param number_of_disks: The number of disks in the volume.
|
|
3792
3792
|
:param raid_level: The volume `RAID level <https://docs.aws.amazon.com/http://en.wikipedia.org/wiki/Standard_RAID_levels>`_ .
|
|
3793
3793
|
:param size: The volume size.
|
|
3794
|
-
:param volume_type: The volume type. For more information, see `Amazon EBS Volume Types <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumeTypes.html>`_ . - ``standard`` - Magnetic. Magnetic volumes must have a minimum size of 1 GiB and a maximum size of 1024 GiB. - ``io1`` - Provisioned IOPS (SSD). PIOPS volumes must have a minimum size of 4 GiB and a maximum size of 16384 GiB. - ``gp2`` - General Purpose (SSD). General purpose volumes must have a minimum size of 1 GiB and a maximum size of 16384 GiB. - ``st1`` - Throughput Optimized hard disk drive (HDD). Throughput optimized HDD volumes must have a minimum size of
|
|
3794
|
+
:param volume_type: The volume type. For more information, see `Amazon EBS Volume Types <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumeTypes.html>`_ . - ``standard`` - Magnetic. Magnetic volumes must have a minimum size of 1 GiB and a maximum size of 1024 GiB. - ``io1`` - Provisioned IOPS (SSD). PIOPS volumes must have a minimum size of 4 GiB and a maximum size of 16384 GiB. - ``gp2`` - General Purpose (SSD). General purpose volumes must have a minimum size of 1 GiB and a maximum size of 16384 GiB. - ``st1`` - Throughput Optimized hard disk drive (HDD). Throughput optimized HDD volumes must have a minimum size of 125 GiB and a maximum size of 16384 GiB. - ``sc1`` - Cold HDD. Cold HDD volumes must have a minimum size of 125 GiB and a maximum size of 16384 GiB.
|
|
3795
3795
|
|
|
3796
3796
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-volumeconfiguration.html
|
|
3797
3797
|
:exampleMetadata: fixture=_generated
|
|
@@ -3908,8 +3908,8 @@ class CfnLayer(
|
|
|
3908
3908
|
- ``standard`` - Magnetic. Magnetic volumes must have a minimum size of 1 GiB and a maximum size of 1024 GiB.
|
|
3909
3909
|
- ``io1`` - Provisioned IOPS (SSD). PIOPS volumes must have a minimum size of 4 GiB and a maximum size of 16384 GiB.
|
|
3910
3910
|
- ``gp2`` - General Purpose (SSD). General purpose volumes must have a minimum size of 1 GiB and a maximum size of 16384 GiB.
|
|
3911
|
-
- ``st1`` - Throughput Optimized hard disk drive (HDD). Throughput optimized HDD volumes must have a minimum size of
|
|
3912
|
-
- ``sc1`` - Cold HDD. Cold HDD volumes must have a minimum size of
|
|
3911
|
+
- ``st1`` - Throughput Optimized hard disk drive (HDD). Throughput optimized HDD volumes must have a minimum size of 125 GiB and a maximum size of 16384 GiB.
|
|
3912
|
+
- ``sc1`` - Cold HDD. Cold HDD volumes must have a minimum size of 125 GiB and a maximum size of 16384 GiB.
|
|
3913
3913
|
|
|
3914
3914
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-volumeconfiguration.html#cfn-opsworks-layer-volumeconfiguration-volumetype
|
|
3915
3915
|
'''
|