aws-cdk-lib 2.167.1__py3-none-any.whl → 2.168.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 +2081 -0
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.167.1.jsii.tgz → aws-cdk-lib@2.168.0.jsii.tgz} +0 -0
- aws_cdk/aws_applicationautoscaling/__init__.py +1691 -95
- aws_cdk/aws_applicationinsights/__init__.py +41 -0
- aws_cdk/aws_applicationsignals/__init__.py +117 -0
- aws_cdk/aws_autoscaling/__init__.py +441 -6
- aws_cdk/aws_batch/__init__.py +202 -5
- aws_cdk/aws_bedrock/__init__.py +12 -12
- aws_cdk/aws_cleanrooms/__init__.py +17 -8
- aws_cdk/aws_cloudformation/__init__.py +2571 -492
- aws_cdk/aws_cloudfront/__init__.py +231 -0
- aws_cdk/aws_cloudfront/experimental/__init__.py +5 -0
- aws_cdk/aws_cloudfront_origins/__init__.py +714 -132
- aws_cdk/aws_cloudtrail/__init__.py +52 -14
- aws_cdk/aws_codebuild/__init__.py +668 -2
- aws_cdk/aws_connectcampaignsv2/__init__.py +3376 -0
- aws_cdk/aws_dynamodb/__init__.py +332 -11
- aws_cdk/aws_ec2/__init__.py +13 -4
- aws_cdk/aws_ecs/__init__.py +213 -0
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +160 -11
- aws_cdk/aws_fis/__init__.py +495 -0
- aws_cdk/aws_gamelift/__init__.py +3101 -1135
- aws_cdk/aws_kinesisfirehose/__init__.py +696 -5
- aws_cdk/aws_lambda/__init__.py +634 -259
- aws_cdk/aws_lambda_destinations/__init__.py +73 -0
- aws_cdk/aws_lambda_event_sources/__init__.py +102 -2
- aws_cdk/aws_location/__init__.py +18 -18
- aws_cdk/aws_mediastore/__init__.py +22 -10
- aws_cdk/aws_opensearchservice/__init__.py +6 -0
- aws_cdk/aws_quicksight/__init__.py +35 -19
- aws_cdk/aws_rds/__init__.py +51 -3
- aws_cdk/aws_securityhub/__init__.py +11 -14
- aws_cdk/aws_ses/__init__.py +58 -5
- aws_cdk/aws_stepfunctions_tasks/__init__.py +1601 -8
- aws_cdk/aws_transfer/__init__.py +0 -8
- aws_cdk/aws_vpclattice/__init__.py +39 -0
- aws_cdk/aws_wisdom/__init__.py +134 -85
- aws_cdk/cx_api/__init__.py +6 -6
- {aws_cdk_lib-2.167.1.dist-info → aws_cdk_lib-2.168.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.167.1.dist-info → aws_cdk_lib-2.168.0.dist-info}/RECORD +45 -44
- {aws_cdk_lib-2.167.1.dist-info → aws_cdk_lib-2.168.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.167.1.dist-info → aws_cdk_lib-2.168.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.167.1.dist-info → aws_cdk_lib-2.168.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.167.1.dist-info → aws_cdk_lib-2.168.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_batch/__init__.py
CHANGED
|
@@ -963,6 +963,12 @@ class CfnComputeEnvironment(
|
|
|
963
963
|
launch_template=batch.CfnComputeEnvironment.LaunchTemplateSpecificationProperty(
|
|
964
964
|
launch_template_id="launchTemplateId",
|
|
965
965
|
launch_template_name="launchTemplateName",
|
|
966
|
+
overrides=[batch.CfnComputeEnvironment.LaunchTemplateSpecificationOverrideProperty(
|
|
967
|
+
launch_template_id="launchTemplateId",
|
|
968
|
+
launch_template_name="launchTemplateName",
|
|
969
|
+
target_instance_types=["targetInstanceTypes"],
|
|
970
|
+
version="version"
|
|
971
|
+
)],
|
|
966
972
|
version="version"
|
|
967
973
|
),
|
|
968
974
|
minv_cpus=123,
|
|
@@ -1363,6 +1369,12 @@ class CfnComputeEnvironment(
|
|
|
1363
1369
|
launch_template=batch.CfnComputeEnvironment.LaunchTemplateSpecificationProperty(
|
|
1364
1370
|
launch_template_id="launchTemplateId",
|
|
1365
1371
|
launch_template_name="launchTemplateName",
|
|
1372
|
+
overrides=[batch.CfnComputeEnvironment.LaunchTemplateSpecificationOverrideProperty(
|
|
1373
|
+
launch_template_id="launchTemplateId",
|
|
1374
|
+
launch_template_name="launchTemplateName",
|
|
1375
|
+
target_instance_types=["targetInstanceTypes"],
|
|
1376
|
+
version="version"
|
|
1377
|
+
)],
|
|
1366
1378
|
version="version"
|
|
1367
1379
|
),
|
|
1368
1380
|
minv_cpus=123,
|
|
@@ -1946,12 +1958,149 @@ class CfnComputeEnvironment(
|
|
|
1946
1958
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
1947
1959
|
)
|
|
1948
1960
|
|
|
1961
|
+
@jsii.data_type(
|
|
1962
|
+
jsii_type="aws-cdk-lib.aws_batch.CfnComputeEnvironment.LaunchTemplateSpecificationOverrideProperty",
|
|
1963
|
+
jsii_struct_bases=[],
|
|
1964
|
+
name_mapping={
|
|
1965
|
+
"launch_template_id": "launchTemplateId",
|
|
1966
|
+
"launch_template_name": "launchTemplateName",
|
|
1967
|
+
"target_instance_types": "targetInstanceTypes",
|
|
1968
|
+
"version": "version",
|
|
1969
|
+
},
|
|
1970
|
+
)
|
|
1971
|
+
class LaunchTemplateSpecificationOverrideProperty:
|
|
1972
|
+
def __init__(
|
|
1973
|
+
self,
|
|
1974
|
+
*,
|
|
1975
|
+
launch_template_id: typing.Optional[builtins.str] = None,
|
|
1976
|
+
launch_template_name: typing.Optional[builtins.str] = None,
|
|
1977
|
+
target_instance_types: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
1978
|
+
version: typing.Optional[builtins.str] = None,
|
|
1979
|
+
) -> None:
|
|
1980
|
+
'''An object that represents a launch template to use in place of the default launch template.
|
|
1981
|
+
|
|
1982
|
+
You must specify either the launch template ID or launch template name in the request, but not both.
|
|
1983
|
+
|
|
1984
|
+
If security groups are specified using both the ``securityGroupIds`` parameter of ``CreateComputeEnvironment`` and the launch template, the values in the ``securityGroupIds`` parameter of ``CreateComputeEnvironment`` will be used.
|
|
1985
|
+
|
|
1986
|
+
You can define up to ten (10) overrides for each compute environment.
|
|
1987
|
+
.. epigraph::
|
|
1988
|
+
|
|
1989
|
+
This object isn't applicable to jobs that are running on Fargate resources. > To unset all override templates for a compute environment, you can pass an empty array to the `UpdateComputeEnvironment.overrides <https://docs.aws.amazon.com/batch/latest/APIReference/API_UpdateComputeEnvironment.html>`_ parameter, or not include the ``overrides`` parameter when submitting the ``UpdateComputeEnvironment`` API operation.
|
|
1990
|
+
|
|
1991
|
+
:param launch_template_id: The ID of the launch template. *Note:* If you specify the ``launchTemplateId`` you can't specify the ``launchTemplateName`` as well.
|
|
1992
|
+
:param launch_template_name: The name of the launch template. *Note:* If you specify the ``launchTemplateName`` you can't specify the ``launchTemplateId`` as well.
|
|
1993
|
+
:param target_instance_types: The instance type or family that this this override launch template should be applied to. This parameter is required when defining a launch template override. Information included in this parameter must meet the following requirements: - Must be a valid Amazon EC2 instance type or family. - ``optimal`` isn't allowed. - ``targetInstanceTypes`` can target only instance types and families that are included within the ```ComputeResource.instanceTypes`` <https://docs.aws.amazon.com/batch/latest/APIReference/API_ComputeResource.html#Batch-Type-ComputeResource-instanceTypes>`_ set. ``targetInstanceTypes`` doesn't need to include all of the instances from the ``instanceType`` set, but at least a subset. For example, if ``ComputeResource.instanceTypes`` includes ``[m5, g5]`` , ``targetInstanceTypes`` can include ``[m5.2xlarge]`` and ``[m5.large]`` but not ``[c5.large]`` . - ``targetInstanceTypes`` included within the same launch template override or across launch template overrides can't overlap for the same compute environment. For example, you can't define one launch template override to target an instance family and another define an instance type within this same family.
|
|
1994
|
+
:param version: The version number of the launch template, ``$Default`` , or ``$Latest`` . If the value is ``$Default`` , the default version of the launch template is used. If the value is ``$Latest`` , the latest version of the launch template is used. .. epigraph:: If the AMI ID that's used in a compute environment is from the launch template, the AMI isn't changed when the compute environment is updated. It's only changed if the ``updateToLatestImageVersion`` parameter for the compute environment is set to ``true`` . During an infrastructure update, if either ``$Default`` or ``$Latest`` is specified, AWS Batch re-evaluates the launch template version, and it might use a different version of the launch template. This is the case even if the launch template isn't specified in the update. When updating a compute environment, changing the launch template requires an infrastructure update of the compute environment. For more information, see `Updating compute environments <https://docs.aws.amazon.com/batch/latest/userguide/updating-compute-environments.html>`_ in the *AWS Batch User Guide* . Default: ``$Default`` Latest: ``$Latest``
|
|
1995
|
+
|
|
1996
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecificationoverride.html
|
|
1997
|
+
:exampleMetadata: fixture=_generated
|
|
1998
|
+
|
|
1999
|
+
Example::
|
|
2000
|
+
|
|
2001
|
+
# The code below shows an example of how to instantiate this type.
|
|
2002
|
+
# The values are placeholders you should change.
|
|
2003
|
+
from aws_cdk import aws_batch as batch
|
|
2004
|
+
|
|
2005
|
+
launch_template_specification_override_property = batch.CfnComputeEnvironment.LaunchTemplateSpecificationOverrideProperty(
|
|
2006
|
+
launch_template_id="launchTemplateId",
|
|
2007
|
+
launch_template_name="launchTemplateName",
|
|
2008
|
+
target_instance_types=["targetInstanceTypes"],
|
|
2009
|
+
version="version"
|
|
2010
|
+
)
|
|
2011
|
+
'''
|
|
2012
|
+
if __debug__:
|
|
2013
|
+
type_hints = typing.get_type_hints(_typecheckingstub__4b5bc20e5d24e0d359d6430d6ef9cdce99590872d896d3e0d65372a69394ad77)
|
|
2014
|
+
check_type(argname="argument launch_template_id", value=launch_template_id, expected_type=type_hints["launch_template_id"])
|
|
2015
|
+
check_type(argname="argument launch_template_name", value=launch_template_name, expected_type=type_hints["launch_template_name"])
|
|
2016
|
+
check_type(argname="argument target_instance_types", value=target_instance_types, expected_type=type_hints["target_instance_types"])
|
|
2017
|
+
check_type(argname="argument version", value=version, expected_type=type_hints["version"])
|
|
2018
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
2019
|
+
if launch_template_id is not None:
|
|
2020
|
+
self._values["launch_template_id"] = launch_template_id
|
|
2021
|
+
if launch_template_name is not None:
|
|
2022
|
+
self._values["launch_template_name"] = launch_template_name
|
|
2023
|
+
if target_instance_types is not None:
|
|
2024
|
+
self._values["target_instance_types"] = target_instance_types
|
|
2025
|
+
if version is not None:
|
|
2026
|
+
self._values["version"] = version
|
|
2027
|
+
|
|
2028
|
+
@builtins.property
|
|
2029
|
+
def launch_template_id(self) -> typing.Optional[builtins.str]:
|
|
2030
|
+
'''The ID of the launch template.
|
|
2031
|
+
|
|
2032
|
+
*Note:* If you specify the ``launchTemplateId`` you can't specify the ``launchTemplateName`` as well.
|
|
2033
|
+
|
|
2034
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecificationoverride.html#cfn-batch-computeenvironment-launchtemplatespecificationoverride-launchtemplateid
|
|
2035
|
+
'''
|
|
2036
|
+
result = self._values.get("launch_template_id")
|
|
2037
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
2038
|
+
|
|
2039
|
+
@builtins.property
|
|
2040
|
+
def launch_template_name(self) -> typing.Optional[builtins.str]:
|
|
2041
|
+
'''The name of the launch template.
|
|
2042
|
+
|
|
2043
|
+
*Note:* If you specify the ``launchTemplateName`` you can't specify the ``launchTemplateId`` as well.
|
|
2044
|
+
|
|
2045
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecificationoverride.html#cfn-batch-computeenvironment-launchtemplatespecificationoverride-launchtemplatename
|
|
2046
|
+
'''
|
|
2047
|
+
result = self._values.get("launch_template_name")
|
|
2048
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
2049
|
+
|
|
2050
|
+
@builtins.property
|
|
2051
|
+
def target_instance_types(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
2052
|
+
'''The instance type or family that this this override launch template should be applied to.
|
|
2053
|
+
|
|
2054
|
+
This parameter is required when defining a launch template override.
|
|
2055
|
+
|
|
2056
|
+
Information included in this parameter must meet the following requirements:
|
|
2057
|
+
|
|
2058
|
+
- Must be a valid Amazon EC2 instance type or family.
|
|
2059
|
+
- ``optimal`` isn't allowed.
|
|
2060
|
+
- ``targetInstanceTypes`` can target only instance types and families that are included within the ```ComputeResource.instanceTypes`` <https://docs.aws.amazon.com/batch/latest/APIReference/API_ComputeResource.html#Batch-Type-ComputeResource-instanceTypes>`_ set. ``targetInstanceTypes`` doesn't need to include all of the instances from the ``instanceType`` set, but at least a subset. For example, if ``ComputeResource.instanceTypes`` includes ``[m5, g5]`` , ``targetInstanceTypes`` can include ``[m5.2xlarge]`` and ``[m5.large]`` but not ``[c5.large]`` .
|
|
2061
|
+
- ``targetInstanceTypes`` included within the same launch template override or across launch template overrides can't overlap for the same compute environment. For example, you can't define one launch template override to target an instance family and another define an instance type within this same family.
|
|
2062
|
+
|
|
2063
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecificationoverride.html#cfn-batch-computeenvironment-launchtemplatespecificationoverride-targetinstancetypes
|
|
2064
|
+
'''
|
|
2065
|
+
result = self._values.get("target_instance_types")
|
|
2066
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
2067
|
+
|
|
2068
|
+
@builtins.property
|
|
2069
|
+
def version(self) -> typing.Optional[builtins.str]:
|
|
2070
|
+
'''The version number of the launch template, ``$Default`` , or ``$Latest`` .
|
|
2071
|
+
|
|
2072
|
+
If the value is ``$Default`` , the default version of the launch template is used. If the value is ``$Latest`` , the latest version of the launch template is used.
|
|
2073
|
+
.. epigraph::
|
|
2074
|
+
|
|
2075
|
+
If the AMI ID that's used in a compute environment is from the launch template, the AMI isn't changed when the compute environment is updated. It's only changed if the ``updateToLatestImageVersion`` parameter for the compute environment is set to ``true`` . During an infrastructure update, if either ``$Default`` or ``$Latest`` is specified, AWS Batch re-evaluates the launch template version, and it might use a different version of the launch template. This is the case even if the launch template isn't specified in the update. When updating a compute environment, changing the launch template requires an infrastructure update of the compute environment. For more information, see `Updating compute environments <https://docs.aws.amazon.com/batch/latest/userguide/updating-compute-environments.html>`_ in the *AWS Batch User Guide* .
|
|
2076
|
+
|
|
2077
|
+
Default: ``$Default``
|
|
2078
|
+
|
|
2079
|
+
Latest: ``$Latest``
|
|
2080
|
+
|
|
2081
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecificationoverride.html#cfn-batch-computeenvironment-launchtemplatespecificationoverride-version
|
|
2082
|
+
'''
|
|
2083
|
+
result = self._values.get("version")
|
|
2084
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
2085
|
+
|
|
2086
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
2087
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
2088
|
+
|
|
2089
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
2090
|
+
return not (rhs == self)
|
|
2091
|
+
|
|
2092
|
+
def __repr__(self) -> str:
|
|
2093
|
+
return "LaunchTemplateSpecificationOverrideProperty(%s)" % ", ".join(
|
|
2094
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
2095
|
+
)
|
|
2096
|
+
|
|
1949
2097
|
@jsii.data_type(
|
|
1950
2098
|
jsii_type="aws-cdk-lib.aws_batch.CfnComputeEnvironment.LaunchTemplateSpecificationProperty",
|
|
1951
2099
|
jsii_struct_bases=[],
|
|
1952
2100
|
name_mapping={
|
|
1953
2101
|
"launch_template_id": "launchTemplateId",
|
|
1954
2102
|
"launch_template_name": "launchTemplateName",
|
|
2103
|
+
"overrides": "overrides",
|
|
1955
2104
|
"version": "version",
|
|
1956
2105
|
},
|
|
1957
2106
|
)
|
|
@@ -1961,6 +2110,7 @@ class CfnComputeEnvironment(
|
|
|
1961
2110
|
*,
|
|
1962
2111
|
launch_template_id: typing.Optional[builtins.str] = None,
|
|
1963
2112
|
launch_template_name: typing.Optional[builtins.str] = None,
|
|
2113
|
+
overrides: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnComputeEnvironment.LaunchTemplateSpecificationOverrideProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1964
2114
|
version: typing.Optional[builtins.str] = None,
|
|
1965
2115
|
) -> None:
|
|
1966
2116
|
'''An object that represents a launch template that's associated with a compute resource.
|
|
@@ -1974,7 +2124,8 @@ class CfnComputeEnvironment(
|
|
|
1974
2124
|
|
|
1975
2125
|
:param launch_template_id: The ID of the launch template.
|
|
1976
2126
|
:param launch_template_name: The name of the launch template.
|
|
1977
|
-
:param
|
|
2127
|
+
:param overrides: A launch template to use in place of the default launch template. You must specify either the launch template ID or launch template name in the request, but not both. You can specify up to ten (10) launch template overrides that are associated to unique instance types or families for each compute environment. .. epigraph:: To unset all override templates for a compute environment, you can pass an empty array to the `UpdateComputeEnvironment.overrides <https://docs.aws.amazon.com/batch/latest/APIReference/API_UpdateComputeEnvironment.html>`_ parameter, or not include the ``overrides`` parameter when submitting the ``UpdateComputeEnvironment`` API operation.
|
|
2128
|
+
:param version: The version number of the launch template, ``$Default`` , or ``$Latest`` . If the value is ``$Default`` , the default version of the launch template is used. If the value is ``$Latest`` , the latest version of the launch template is used. .. epigraph:: If the AMI ID that's used in a compute environment is from the launch template, the AMI isn't changed when the compute environment is updated. It's only changed if the ``updateToLatestImageVersion`` parameter for the compute environment is set to ``true`` . During an infrastructure update, if either ``$Default`` or ``$Latest`` is specified, AWS Batch re-evaluates the launch template version, and it might use a different version of the launch template. This is the case even if the launch template isn't specified in the update. When updating a compute environment, changing the launch template requires an infrastructure update of the compute environment. For more information, see `Updating compute environments <https://docs.aws.amazon.com/batch/latest/userguide/updating-compute-environments.html>`_ in the *AWS Batch User Guide* . Default: ``$Default`` Latest: ``$Latest``
|
|
1978
2129
|
|
|
1979
2130
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html
|
|
1980
2131
|
:exampleMetadata: fixture=_generated
|
|
@@ -1988,6 +2139,12 @@ class CfnComputeEnvironment(
|
|
|
1988
2139
|
launch_template_specification_property = batch.CfnComputeEnvironment.LaunchTemplateSpecificationProperty(
|
|
1989
2140
|
launch_template_id="launchTemplateId",
|
|
1990
2141
|
launch_template_name="launchTemplateName",
|
|
2142
|
+
overrides=[batch.CfnComputeEnvironment.LaunchTemplateSpecificationOverrideProperty(
|
|
2143
|
+
launch_template_id="launchTemplateId",
|
|
2144
|
+
launch_template_name="launchTemplateName",
|
|
2145
|
+
target_instance_types=["targetInstanceTypes"],
|
|
2146
|
+
version="version"
|
|
2147
|
+
)],
|
|
1991
2148
|
version="version"
|
|
1992
2149
|
)
|
|
1993
2150
|
'''
|
|
@@ -1995,12 +2152,15 @@ class CfnComputeEnvironment(
|
|
|
1995
2152
|
type_hints = typing.get_type_hints(_typecheckingstub__e2a48b24f0297afff0df36a352af2f9856ad8fac713d1ecbc2161d0b968651da)
|
|
1996
2153
|
check_type(argname="argument launch_template_id", value=launch_template_id, expected_type=type_hints["launch_template_id"])
|
|
1997
2154
|
check_type(argname="argument launch_template_name", value=launch_template_name, expected_type=type_hints["launch_template_name"])
|
|
2155
|
+
check_type(argname="argument overrides", value=overrides, expected_type=type_hints["overrides"])
|
|
1998
2156
|
check_type(argname="argument version", value=version, expected_type=type_hints["version"])
|
|
1999
2157
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
2000
2158
|
if launch_template_id is not None:
|
|
2001
2159
|
self._values["launch_template_id"] = launch_template_id
|
|
2002
2160
|
if launch_template_name is not None:
|
|
2003
2161
|
self._values["launch_template_name"] = launch_template_name
|
|
2162
|
+
if overrides is not None:
|
|
2163
|
+
self._values["overrides"] = overrides
|
|
2004
2164
|
if version is not None:
|
|
2005
2165
|
self._values["version"] = version
|
|
2006
2166
|
|
|
@@ -2022,16 +2182,36 @@ class CfnComputeEnvironment(
|
|
|
2022
2182
|
result = self._values.get("launch_template_name")
|
|
2023
2183
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
2024
2184
|
|
|
2185
|
+
@builtins.property
|
|
2186
|
+
def overrides(
|
|
2187
|
+
self,
|
|
2188
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnComputeEnvironment.LaunchTemplateSpecificationOverrideProperty"]]]]:
|
|
2189
|
+
'''A launch template to use in place of the default launch template.
|
|
2190
|
+
|
|
2191
|
+
You must specify either the launch template ID or launch template name in the request, but not both.
|
|
2192
|
+
|
|
2193
|
+
You can specify up to ten (10) launch template overrides that are associated to unique instance types or families for each compute environment.
|
|
2194
|
+
.. epigraph::
|
|
2195
|
+
|
|
2196
|
+
To unset all override templates for a compute environment, you can pass an empty array to the `UpdateComputeEnvironment.overrides <https://docs.aws.amazon.com/batch/latest/APIReference/API_UpdateComputeEnvironment.html>`_ parameter, or not include the ``overrides`` parameter when submitting the ``UpdateComputeEnvironment`` API operation.
|
|
2197
|
+
|
|
2198
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-overrides
|
|
2199
|
+
'''
|
|
2200
|
+
result = self._values.get("overrides")
|
|
2201
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnComputeEnvironment.LaunchTemplateSpecificationOverrideProperty"]]]], result)
|
|
2202
|
+
|
|
2025
2203
|
@builtins.property
|
|
2026
2204
|
def version(self) -> typing.Optional[builtins.str]:
|
|
2027
|
-
'''The version number of the launch template, ``$
|
|
2205
|
+
'''The version number of the launch template, ``$Default`` , or ``$Latest`` .
|
|
2028
2206
|
|
|
2029
|
-
If the value is ``$
|
|
2207
|
+
If the value is ``$Default`` , the default version of the launch template is used. If the value is ``$Latest`` , the latest version of the launch template is used.
|
|
2030
2208
|
.. epigraph::
|
|
2031
2209
|
|
|
2032
|
-
If the AMI ID that's used in a compute environment is from the launch template, the AMI isn't changed when the compute environment is updated. It's only changed if the ``updateToLatestImageVersion`` parameter for the compute environment is set to ``true`` . During an infrastructure update, if either ``$
|
|
2210
|
+
If the AMI ID that's used in a compute environment is from the launch template, the AMI isn't changed when the compute environment is updated. It's only changed if the ``updateToLatestImageVersion`` parameter for the compute environment is set to ``true`` . During an infrastructure update, if either ``$Default`` or ``$Latest`` is specified, AWS Batch re-evaluates the launch template version, and it might use a different version of the launch template. This is the case even if the launch template isn't specified in the update. When updating a compute environment, changing the launch template requires an infrastructure update of the compute environment. For more information, see `Updating compute environments <https://docs.aws.amazon.com/batch/latest/userguide/updating-compute-environments.html>`_ in the *AWS Batch User Guide* .
|
|
2211
|
+
|
|
2212
|
+
Default: ``$Default``
|
|
2033
2213
|
|
|
2034
|
-
|
|
2214
|
+
Latest: ``$Latest``
|
|
2035
2215
|
|
|
2036
2216
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecification.html#cfn-batch-computeenvironment-launchtemplatespecification-version
|
|
2037
2217
|
'''
|
|
@@ -2219,6 +2399,12 @@ class CfnComputeEnvironmentProps:
|
|
|
2219
2399
|
launch_template=batch.CfnComputeEnvironment.LaunchTemplateSpecificationProperty(
|
|
2220
2400
|
launch_template_id="launchTemplateId",
|
|
2221
2401
|
launch_template_name="launchTemplateName",
|
|
2402
|
+
overrides=[batch.CfnComputeEnvironment.LaunchTemplateSpecificationOverrideProperty(
|
|
2403
|
+
launch_template_id="launchTemplateId",
|
|
2404
|
+
launch_template_name="launchTemplateName",
|
|
2405
|
+
target_instance_types=["targetInstanceTypes"],
|
|
2406
|
+
version="version"
|
|
2407
|
+
)],
|
|
2222
2408
|
version="version"
|
|
2223
2409
|
),
|
|
2224
2410
|
minv_cpus=123,
|
|
@@ -23427,10 +23613,21 @@ def _typecheckingstub__5d01293eced89171b858aec2adc4c3362e7bc583fff04c8572350b492
|
|
|
23427
23613
|
"""Type checking stubs"""
|
|
23428
23614
|
pass
|
|
23429
23615
|
|
|
23616
|
+
def _typecheckingstub__4b5bc20e5d24e0d359d6430d6ef9cdce99590872d896d3e0d65372a69394ad77(
|
|
23617
|
+
*,
|
|
23618
|
+
launch_template_id: typing.Optional[builtins.str] = None,
|
|
23619
|
+
launch_template_name: typing.Optional[builtins.str] = None,
|
|
23620
|
+
target_instance_types: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
23621
|
+
version: typing.Optional[builtins.str] = None,
|
|
23622
|
+
) -> None:
|
|
23623
|
+
"""Type checking stubs"""
|
|
23624
|
+
pass
|
|
23625
|
+
|
|
23430
23626
|
def _typecheckingstub__e2a48b24f0297afff0df36a352af2f9856ad8fac713d1ecbc2161d0b968651da(
|
|
23431
23627
|
*,
|
|
23432
23628
|
launch_template_id: typing.Optional[builtins.str] = None,
|
|
23433
23629
|
launch_template_name: typing.Optional[builtins.str] = None,
|
|
23630
|
+
overrides: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnComputeEnvironment.LaunchTemplateSpecificationOverrideProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
23434
23631
|
version: typing.Optional[builtins.str] = None,
|
|
23435
23632
|
) -> None:
|
|
23436
23633
|
"""Type checking stubs"""
|
aws_cdk/aws_bedrock/__init__.py
CHANGED
|
@@ -9365,7 +9365,7 @@ class CfnFlow(
|
|
|
9365
9365
|
This node takes a query as the input and returns, as the output, the retrieved responses directly (as an array) or a response generated based on the retrieved responses. For more information, see `Node types in Amazon Bedrock works <https://docs.aws.amazon.com/bedrock/latest/userguide/flows-nodes.html>`_ in the Amazon Bedrock User Guide.
|
|
9366
9366
|
|
|
9367
9367
|
:param knowledge_base_id: The unique identifier of the knowledge base to query.
|
|
9368
|
-
:param guardrail_configuration:
|
|
9368
|
+
:param guardrail_configuration: Contains configurations for a guardrail to apply during query and response generation for the knowledge base in this configuration.
|
|
9369
9369
|
:param model_id: The unique identifier of the model or `inference profile <https://docs.aws.amazon.com/bedrock/latest/userguide/cross-region-inference.html>`_ to use to generate a response from the query results. Omit this field if you want to return the retrieved results as an array.
|
|
9370
9370
|
|
|
9371
9371
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-knowledgebaseflownodeconfiguration.html
|
|
@@ -9415,7 +9415,7 @@ class CfnFlow(
|
|
|
9415
9415
|
def guardrail_configuration(
|
|
9416
9416
|
self,
|
|
9417
9417
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnFlow.GuardrailConfigurationProperty"]]:
|
|
9418
|
-
'''
|
|
9418
|
+
'''Contains configurations for a guardrail to apply during query and response generation for the knowledge base in this configuration.
|
|
9419
9419
|
|
|
9420
9420
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-knowledgebaseflownodeconfiguration.html#cfn-bedrock-flow-knowledgebaseflownodeconfiguration-guardrailconfiguration
|
|
9421
9421
|
'''
|
|
@@ -9589,7 +9589,7 @@ class CfnFlow(
|
|
|
9589
9589
|
You can use a prompt from Prompt management or you can define one in this node. If the prompt contains variables, the inputs into this node will fill in the variables. The output from this node is the response generated by the model. For more information, see `Node types in Amazon Bedrock works <https://docs.aws.amazon.com/bedrock/latest/userguide/flows-nodes.html>`_ in the Amazon Bedrock User Guide.
|
|
9590
9590
|
|
|
9591
9591
|
:param source_configuration: Specifies whether the prompt is from Prompt management or defined inline.
|
|
9592
|
-
:param guardrail_configuration:
|
|
9592
|
+
:param guardrail_configuration: Contains configurations for a guardrail to apply to the prompt in this node and the response generated from it.
|
|
9593
9593
|
|
|
9594
9594
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-promptflownodeconfiguration.html
|
|
9595
9595
|
:exampleMetadata: fixture=_generated
|
|
@@ -9664,7 +9664,7 @@ class CfnFlow(
|
|
|
9664
9664
|
def guardrail_configuration(
|
|
9665
9665
|
self,
|
|
9666
9666
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnFlow.GuardrailConfigurationProperty"]]:
|
|
9667
|
-
'''
|
|
9667
|
+
'''Contains configurations for a guardrail to apply to the prompt in this node and the response generated from it.
|
|
9668
9668
|
|
|
9669
9669
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-promptflownodeconfiguration.html#cfn-bedrock-flow-promptflownodeconfiguration-guardrailconfiguration
|
|
9670
9670
|
'''
|
|
@@ -10197,7 +10197,7 @@ class CfnFlow(
|
|
|
10197
10197
|
) -> None:
|
|
10198
10198
|
'''Contains the message for a prompt.
|
|
10199
10199
|
|
|
10200
|
-
For more information, see `Prompt management in Amazon Bedrock <https://docs.aws.amazon.com/bedrock/latest/userguide/prompt-management.html>`_ .
|
|
10200
|
+
For more information, see `Construct and store reusable prompts with Prompt management in Amazon Bedrock <https://docs.aws.amazon.com/bedrock/latest/userguide/prompt-management.html>`_ .
|
|
10201
10201
|
|
|
10202
10202
|
:param text: Contains configurations for the text in a message for a prompt.
|
|
10203
10203
|
|
|
@@ -13298,7 +13298,7 @@ class CfnFlowVersion(
|
|
|
13298
13298
|
This node takes a query as the input and returns, as the output, the retrieved responses directly (as an array) or a response generated based on the retrieved responses. For more information, see `Node types in Amazon Bedrock works <https://docs.aws.amazon.com/bedrock/latest/userguide/flows-nodes.html>`_ in the Amazon Bedrock User Guide.
|
|
13299
13299
|
|
|
13300
13300
|
:param knowledge_base_id: The unique identifier of the knowledge base to query.
|
|
13301
|
-
:param guardrail_configuration:
|
|
13301
|
+
:param guardrail_configuration: Contains configurations for a guardrail to apply during query and response generation for the knowledge base in this configuration.
|
|
13302
13302
|
:param model_id: The unique identifier of the model or `inference profile <https://docs.aws.amazon.com/bedrock/latest/userguide/cross-region-inference.html>`_ to use to generate a response from the query results. Omit this field if you want to return the retrieved results as an array.
|
|
13303
13303
|
|
|
13304
13304
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-knowledgebaseflownodeconfiguration.html
|
|
@@ -13348,7 +13348,7 @@ class CfnFlowVersion(
|
|
|
13348
13348
|
def guardrail_configuration(
|
|
13349
13349
|
self,
|
|
13350
13350
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnFlowVersion.GuardrailConfigurationProperty"]]:
|
|
13351
|
-
'''
|
|
13351
|
+
'''Contains configurations for a guardrail to apply during query and response generation for the knowledge base in this configuration.
|
|
13352
13352
|
|
|
13353
13353
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-knowledgebaseflownodeconfiguration.html#cfn-bedrock-flowversion-knowledgebaseflownodeconfiguration-guardrailconfiguration
|
|
13354
13354
|
'''
|
|
@@ -13522,7 +13522,7 @@ class CfnFlowVersion(
|
|
|
13522
13522
|
You can use a prompt from Prompt management or you can define one in this node. If the prompt contains variables, the inputs into this node will fill in the variables. The output from this node is the response generated by the model. For more information, see `Node types in Amazon Bedrock works <https://docs.aws.amazon.com/bedrock/latest/userguide/flows-nodes.html>`_ in the Amazon Bedrock User Guide.
|
|
13523
13523
|
|
|
13524
13524
|
:param source_configuration: Specifies whether the prompt is from Prompt management or defined inline.
|
|
13525
|
-
:param guardrail_configuration:
|
|
13525
|
+
:param guardrail_configuration: Contains configurations for a guardrail to apply to the prompt in this node and the response generated from it.
|
|
13526
13526
|
|
|
13527
13527
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-promptflownodeconfiguration.html
|
|
13528
13528
|
:exampleMetadata: fixture=_generated
|
|
@@ -13597,7 +13597,7 @@ class CfnFlowVersion(
|
|
|
13597
13597
|
def guardrail_configuration(
|
|
13598
13598
|
self,
|
|
13599
13599
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnFlowVersion.GuardrailConfigurationProperty"]]:
|
|
13600
|
-
'''
|
|
13600
|
+
'''Contains configurations for a guardrail to apply to the prompt in this node and the response generated from it.
|
|
13601
13601
|
|
|
13602
13602
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-promptflownodeconfiguration.html#cfn-bedrock-flowversion-promptflownodeconfiguration-guardrailconfiguration
|
|
13603
13603
|
'''
|
|
@@ -14130,7 +14130,7 @@ class CfnFlowVersion(
|
|
|
14130
14130
|
) -> None:
|
|
14131
14131
|
'''Contains the message for a prompt.
|
|
14132
14132
|
|
|
14133
|
-
For more information, see `Prompt management in Amazon Bedrock <https://docs.aws.amazon.com/bedrock/latest/userguide/prompt-management.html>`_ .
|
|
14133
|
+
For more information, see `Construct and store reusable prompts with Prompt management in Amazon Bedrock <https://docs.aws.amazon.com/bedrock/latest/userguide/prompt-management.html>`_ .
|
|
14134
14134
|
|
|
14135
14135
|
:param text: Contains configurations for the text in a message for a prompt.
|
|
14136
14136
|
|
|
@@ -18739,7 +18739,7 @@ class CfnPrompt(
|
|
|
18739
18739
|
) -> None:
|
|
18740
18740
|
'''Contains the message for a prompt.
|
|
18741
18741
|
|
|
18742
|
-
For more information, see `Prompt management in Amazon Bedrock <https://docs.aws.amazon.com/bedrock/latest/userguide/prompt-management.html>`_ .
|
|
18742
|
+
For more information, see `Construct and store reusable prompts with Prompt management in Amazon Bedrock <https://docs.aws.amazon.com/bedrock/latest/userguide/prompt-management.html>`_ .
|
|
18743
18743
|
|
|
18744
18744
|
:param text: Contains configurations for the text in a message for a prompt.
|
|
18745
18745
|
|
|
@@ -19777,7 +19777,7 @@ class CfnPromptVersion(
|
|
|
19777
19777
|
) -> None:
|
|
19778
19778
|
'''Contains the message for a prompt.
|
|
19779
19779
|
|
|
19780
|
-
For more information, see `Prompt management in Amazon Bedrock <https://docs.aws.amazon.com/bedrock/latest/userguide/prompt-management.html>`_ .
|
|
19780
|
+
For more information, see `Construct and store reusable prompts with Prompt management in Amazon Bedrock <https://docs.aws.amazon.com/bedrock/latest/userguide/prompt-management.html>`_ .
|
|
19781
19781
|
|
|
19782
19782
|
:param text: Contains configurations for the text in a message for a prompt.
|
|
19783
19783
|
|
|
@@ -829,7 +829,7 @@ class CfnCollaboration(
|
|
|
829
829
|
:param members: A list of initial members, not including the creator. This list is immutable.
|
|
830
830
|
:param name: A human-readable identifier provided by the collaboration owner. Display names are not unique.
|
|
831
831
|
:param query_log_status: An indicator as to whether query logging has been enabled or disabled for the collaboration.
|
|
832
|
-
:param analytics_engine:
|
|
832
|
+
:param analytics_engine: The analytics engine for the collaboration.
|
|
833
833
|
:param creator_payment_configuration: An object representing the collaboration member's payment responsibilities set by the collaboration creator.
|
|
834
834
|
:param data_encryption_metadata: The settings for client-side encryption for cryptographic computing.
|
|
835
835
|
:param tags: An optional label that you can assign to a resource when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource.
|
|
@@ -1002,6 +1002,7 @@ class CfnCollaboration(
|
|
|
1002
1002
|
@builtins.property
|
|
1003
1003
|
@jsii.member(jsii_name="analyticsEngine")
|
|
1004
1004
|
def analytics_engine(self) -> typing.Optional[builtins.str]:
|
|
1005
|
+
'''The analytics engine for the collaboration.'''
|
|
1005
1006
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "analyticsEngine"))
|
|
1006
1007
|
|
|
1007
1008
|
@analytics_engine.setter
|
|
@@ -1450,7 +1451,7 @@ class CfnCollaborationProps:
|
|
|
1450
1451
|
:param members: A list of initial members, not including the creator. This list is immutable.
|
|
1451
1452
|
:param name: A human-readable identifier provided by the collaboration owner. Display names are not unique.
|
|
1452
1453
|
:param query_log_status: An indicator as to whether query logging has been enabled or disabled for the collaboration.
|
|
1453
|
-
:param analytics_engine:
|
|
1454
|
+
:param analytics_engine: The analytics engine for the collaboration.
|
|
1454
1455
|
:param creator_payment_configuration: An object representing the collaboration member's payment responsibilities set by the collaboration creator.
|
|
1455
1456
|
:param data_encryption_metadata: The settings for client-side encryption for cryptographic computing.
|
|
1456
1457
|
:param tags: An optional label that you can assign to a resource when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource.
|
|
@@ -1601,7 +1602,8 @@ class CfnCollaborationProps:
|
|
|
1601
1602
|
|
|
1602
1603
|
@builtins.property
|
|
1603
1604
|
def analytics_engine(self) -> typing.Optional[builtins.str]:
|
|
1604
|
-
'''
|
|
1605
|
+
'''The analytics engine for the collaboration.
|
|
1606
|
+
|
|
1605
1607
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-collaboration.html#cfn-cleanrooms-collaboration-analyticsengine
|
|
1606
1608
|
'''
|
|
1607
1609
|
result = self._values.get("analytics_engine")
|
|
@@ -4977,7 +4979,7 @@ class CfnIdNamespaceAssociation(
|
|
|
4977
4979
|
:param name: The name of this ID namespace association.
|
|
4978
4980
|
:param description: The description of the ID namespace association.
|
|
4979
4981
|
:param id_mapping_config: The configuration settings for the ID mapping table.
|
|
4980
|
-
:param tags:
|
|
4982
|
+
:param tags: An optional label that you can assign to a resource when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource.
|
|
4981
4983
|
'''
|
|
4982
4984
|
if __debug__:
|
|
4983
4985
|
type_hints = typing.get_type_hints(_typecheckingstub__f52a2f7a45be837d26654b8bb3a3d0fab7fd6c5d25ec9b81d04a38689a6194fc)
|
|
@@ -5164,6 +5166,7 @@ class CfnIdNamespaceAssociation(
|
|
|
5164
5166
|
@builtins.property
|
|
5165
5167
|
@jsii.member(jsii_name="tags")
|
|
5166
5168
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
5169
|
+
'''An optional label that you can assign to a resource when you create it.'''
|
|
5167
5170
|
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
|
|
5168
5171
|
|
|
5169
5172
|
@tags.setter
|
|
@@ -5421,7 +5424,7 @@ class CfnIdNamespaceAssociationProps:
|
|
|
5421
5424
|
:param name: The name of this ID namespace association.
|
|
5422
5425
|
:param description: The description of the ID namespace association.
|
|
5423
5426
|
:param id_mapping_config: The configuration settings for the ID mapping table.
|
|
5424
|
-
:param tags:
|
|
5427
|
+
:param tags: An optional label that you can assign to a resource when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource.
|
|
5425
5428
|
|
|
5426
5429
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idnamespaceassociation.html
|
|
5427
5430
|
:exampleMetadata: fixture=_generated
|
|
@@ -5525,7 +5528,10 @@ class CfnIdNamespaceAssociationProps:
|
|
|
5525
5528
|
|
|
5526
5529
|
@builtins.property
|
|
5527
5530
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
5528
|
-
'''
|
|
5531
|
+
'''An optional label that you can assign to a resource when you create it.
|
|
5532
|
+
|
|
5533
|
+
Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource.
|
|
5534
|
+
|
|
5529
5535
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idnamespaceassociation.html#cfn-cleanrooms-idnamespaceassociation-tags
|
|
5530
5536
|
'''
|
|
5531
5537
|
result = self._values.get("tags")
|
|
@@ -6086,7 +6092,7 @@ class CfnMembership(
|
|
|
6086
6092
|
:param bucket: The S3 bucket to unload the protected query results.
|
|
6087
6093
|
:param result_format: Intended file format of the result.
|
|
6088
6094
|
:param key_prefix: The S3 prefix to unload the protected query results.
|
|
6089
|
-
:param single_file_output:
|
|
6095
|
+
:param single_file_output: Indicates whether files should be output as a single file ( ``TRUE`` ) or output as multiple files ( ``FALSE`` ). This parameter is only supported for analyses with the Spark analytics engine.
|
|
6090
6096
|
|
|
6091
6097
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-protectedquerys3outputconfiguration.html
|
|
6092
6098
|
:exampleMetadata: fixture=_generated
|
|
@@ -6154,7 +6160,10 @@ class CfnMembership(
|
|
|
6154
6160
|
def single_file_output(
|
|
6155
6161
|
self,
|
|
6156
6162
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
6157
|
-
'''
|
|
6163
|
+
'''Indicates whether files should be output as a single file ( ``TRUE`` ) or output as multiple files ( ``FALSE`` ).
|
|
6164
|
+
|
|
6165
|
+
This parameter is only supported for analyses with the Spark analytics engine.
|
|
6166
|
+
|
|
6158
6167
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-protectedquerys3outputconfiguration.html#cfn-cleanrooms-membership-protectedquerys3outputconfiguration-singlefileoutput
|
|
6159
6168
|
'''
|
|
6160
6169
|
result = self._values.get("single_file_output")
|