aws-cdk-lib 2.194.0__py3-none-any.whl → 2.195.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of aws-cdk-lib might be problematic. Click here for more details.
- aws_cdk/__init__.py +2 -0
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.194.0.jsii.tgz → aws-cdk-lib@2.195.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigateway/__init__.py +60 -1
- aws_cdk/aws_bedrock/__init__.py +581 -4
- aws_cdk/aws_cloudfront/__init__.py +190 -120
- aws_cdk/aws_codepipeline/__init__.py +108 -0
- aws_cdk/aws_cognito/__init__.py +132 -6
- aws_cdk/aws_datazone/__init__.py +370 -0
- aws_cdk/aws_dsql/__init__.py +9 -0
- aws_cdk/aws_dynamodb/__init__.py +5 -3
- aws_cdk/aws_ec2/__init__.py +132 -8
- aws_cdk/aws_ecr/__init__.py +16 -14
- aws_cdk/aws_ecs/__init__.py +4 -15
- aws_cdk/aws_fsx/__init__.py +2 -3
- aws_cdk/aws_imagebuilder/__init__.py +160 -10
- aws_cdk/aws_kinesisanalytics/__init__.py +4 -2
- aws_cdk/aws_kinesisanalyticsv2/__init__.py +4 -2
- aws_cdk/aws_medialive/__init__.py +4 -6
- aws_cdk/aws_mediatailor/__init__.py +115 -0
- aws_cdk/aws_oam/__init__.py +43 -10
- aws_cdk/aws_opensearchservice/__init__.py +6 -0
- aws_cdk/aws_qbusiness/__init__.py +2 -2
- aws_cdk/aws_rds/__init__.py +41 -6
- aws_cdk/aws_route53/__init__.py +18 -14
- aws_cdk/aws_route53_targets/__init__.py +62 -1
- aws_cdk/aws_route53profiles/__init__.py +1 -1
- aws_cdk/aws_s3_notifications/__init__.py +5 -5
- aws_cdk/aws_sagemaker/__init__.py +253 -4
- aws_cdk/aws_ssmguiconnect/__init__.py +544 -0
- aws_cdk/cloud_assembly_schema/__init__.py +7 -1
- {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.195.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.195.0.dist-info}/RECORD +37 -36
- {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.195.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.195.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.195.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.195.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_datazone/__init__.py
CHANGED
|
@@ -5781,6 +5781,316 @@ class CfnDomainProps:
|
|
|
5781
5781
|
)
|
|
5782
5782
|
|
|
5783
5783
|
|
|
5784
|
+
@jsii.implements(_IInspectable_c2943556)
|
|
5785
|
+
class CfnDomainUnit(
|
|
5786
|
+
_CfnResource_9df397a6,
|
|
5787
|
+
metaclass=jsii.JSIIMeta,
|
|
5788
|
+
jsii_type="aws-cdk-lib.aws_datazone.CfnDomainUnit",
|
|
5789
|
+
):
|
|
5790
|
+
'''A domain unit enables you to easily organize your assets and other domain entities under specific business units and teams.
|
|
5791
|
+
|
|
5792
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domainunit.html
|
|
5793
|
+
:cloudformationResource: AWS::DataZone::DomainUnit
|
|
5794
|
+
:exampleMetadata: fixture=_generated
|
|
5795
|
+
|
|
5796
|
+
Example::
|
|
5797
|
+
|
|
5798
|
+
# The code below shows an example of how to instantiate this type.
|
|
5799
|
+
# The values are placeholders you should change.
|
|
5800
|
+
from aws_cdk import aws_datazone as datazone
|
|
5801
|
+
|
|
5802
|
+
cfn_domain_unit = datazone.CfnDomainUnit(self, "MyCfnDomainUnit",
|
|
5803
|
+
domain_identifier="domainIdentifier",
|
|
5804
|
+
name="name",
|
|
5805
|
+
parent_domain_unit_identifier="parentDomainUnitIdentifier",
|
|
5806
|
+
|
|
5807
|
+
# the properties below are optional
|
|
5808
|
+
description="description"
|
|
5809
|
+
)
|
|
5810
|
+
'''
|
|
5811
|
+
|
|
5812
|
+
def __init__(
|
|
5813
|
+
self,
|
|
5814
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
5815
|
+
id: builtins.str,
|
|
5816
|
+
*,
|
|
5817
|
+
domain_identifier: builtins.str,
|
|
5818
|
+
name: builtins.str,
|
|
5819
|
+
parent_domain_unit_identifier: builtins.str,
|
|
5820
|
+
description: typing.Optional[builtins.str] = None,
|
|
5821
|
+
) -> None:
|
|
5822
|
+
'''
|
|
5823
|
+
:param scope: Scope in which this resource is defined.
|
|
5824
|
+
:param id: Construct identifier for this resource (unique in its scope).
|
|
5825
|
+
:param domain_identifier: The ID of the domain where you want to create a domain unit.
|
|
5826
|
+
:param name: The name of the domain unit.
|
|
5827
|
+
:param parent_domain_unit_identifier: The ID of the parent domain unit.
|
|
5828
|
+
:param description: The description of the domain unit.
|
|
5829
|
+
'''
|
|
5830
|
+
if __debug__:
|
|
5831
|
+
type_hints = typing.get_type_hints(_typecheckingstub__1700595f9c5a7d1c2312abf9e8d15687f79d83e5ead5d4136afe1d562d212c38)
|
|
5832
|
+
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
5833
|
+
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
5834
|
+
props = CfnDomainUnitProps(
|
|
5835
|
+
domain_identifier=domain_identifier,
|
|
5836
|
+
name=name,
|
|
5837
|
+
parent_domain_unit_identifier=parent_domain_unit_identifier,
|
|
5838
|
+
description=description,
|
|
5839
|
+
)
|
|
5840
|
+
|
|
5841
|
+
jsii.create(self.__class__, self, [scope, id, props])
|
|
5842
|
+
|
|
5843
|
+
@jsii.member(jsii_name="inspect")
|
|
5844
|
+
def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
|
|
5845
|
+
'''Examines the CloudFormation resource and discloses attributes.
|
|
5846
|
+
|
|
5847
|
+
:param inspector: tree inspector to collect and process attributes.
|
|
5848
|
+
'''
|
|
5849
|
+
if __debug__:
|
|
5850
|
+
type_hints = typing.get_type_hints(_typecheckingstub__253603c22b8126a36f68fce57f93a169ab3bae1eea3f4a0ed84da859e1a38444)
|
|
5851
|
+
check_type(argname="argument inspector", value=inspector, expected_type=type_hints["inspector"])
|
|
5852
|
+
return typing.cast(None, jsii.invoke(self, "inspect", [inspector]))
|
|
5853
|
+
|
|
5854
|
+
@jsii.member(jsii_name="renderProperties")
|
|
5855
|
+
def _render_properties(
|
|
5856
|
+
self,
|
|
5857
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
5858
|
+
) -> typing.Mapping[builtins.str, typing.Any]:
|
|
5859
|
+
'''
|
|
5860
|
+
:param props: -
|
|
5861
|
+
'''
|
|
5862
|
+
if __debug__:
|
|
5863
|
+
type_hints = typing.get_type_hints(_typecheckingstub__a243fcb8e7ead0c756ca762c1cdda3fa9d1e09b6cc2627c55905a3ba1c13d46a)
|
|
5864
|
+
check_type(argname="argument props", value=props, expected_type=type_hints["props"])
|
|
5865
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "renderProperties", [props]))
|
|
5866
|
+
|
|
5867
|
+
@jsii.python.classproperty
|
|
5868
|
+
@jsii.member(jsii_name="CFN_RESOURCE_TYPE_NAME")
|
|
5869
|
+
def CFN_RESOURCE_TYPE_NAME(cls) -> builtins.str:
|
|
5870
|
+
'''The CloudFormation resource type name for this resource class.'''
|
|
5871
|
+
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
5872
|
+
|
|
5873
|
+
@builtins.property
|
|
5874
|
+
@jsii.member(jsii_name="attrCreatedAt")
|
|
5875
|
+
def attr_created_at(self) -> builtins.str:
|
|
5876
|
+
'''The timestamp at which the domain unit was created.
|
|
5877
|
+
|
|
5878
|
+
:cloudformationAttribute: CreatedAt
|
|
5879
|
+
'''
|
|
5880
|
+
return typing.cast(builtins.str, jsii.get(self, "attrCreatedAt"))
|
|
5881
|
+
|
|
5882
|
+
@builtins.property
|
|
5883
|
+
@jsii.member(jsii_name="attrDomainId")
|
|
5884
|
+
def attr_domain_id(self) -> builtins.str:
|
|
5885
|
+
'''The ID of the domain where the domain unit was created.
|
|
5886
|
+
|
|
5887
|
+
:cloudformationAttribute: DomainId
|
|
5888
|
+
'''
|
|
5889
|
+
return typing.cast(builtins.str, jsii.get(self, "attrDomainId"))
|
|
5890
|
+
|
|
5891
|
+
@builtins.property
|
|
5892
|
+
@jsii.member(jsii_name="attrId")
|
|
5893
|
+
def attr_id(self) -> builtins.str:
|
|
5894
|
+
'''The ID of the domain unit.
|
|
5895
|
+
|
|
5896
|
+
:cloudformationAttribute: Id
|
|
5897
|
+
'''
|
|
5898
|
+
return typing.cast(builtins.str, jsii.get(self, "attrId"))
|
|
5899
|
+
|
|
5900
|
+
@builtins.property
|
|
5901
|
+
@jsii.member(jsii_name="attrIdentifier")
|
|
5902
|
+
def attr_identifier(self) -> builtins.str:
|
|
5903
|
+
'''The identifier of the domain unit that you want to get.
|
|
5904
|
+
|
|
5905
|
+
:cloudformationAttribute: Identifier
|
|
5906
|
+
'''
|
|
5907
|
+
return typing.cast(builtins.str, jsii.get(self, "attrIdentifier"))
|
|
5908
|
+
|
|
5909
|
+
@builtins.property
|
|
5910
|
+
@jsii.member(jsii_name="attrLastUpdatedAt")
|
|
5911
|
+
def attr_last_updated_at(self) -> builtins.str:
|
|
5912
|
+
'''The timestamp at which the domain unit was last updated.
|
|
5913
|
+
|
|
5914
|
+
:cloudformationAttribute: LastUpdatedAt
|
|
5915
|
+
'''
|
|
5916
|
+
return typing.cast(builtins.str, jsii.get(self, "attrLastUpdatedAt"))
|
|
5917
|
+
|
|
5918
|
+
@builtins.property
|
|
5919
|
+
@jsii.member(jsii_name="attrParentDomainUnitId")
|
|
5920
|
+
def attr_parent_domain_unit_id(self) -> builtins.str:
|
|
5921
|
+
'''The ID of the parent domain unit.
|
|
5922
|
+
|
|
5923
|
+
:cloudformationAttribute: ParentDomainUnitId
|
|
5924
|
+
'''
|
|
5925
|
+
return typing.cast(builtins.str, jsii.get(self, "attrParentDomainUnitId"))
|
|
5926
|
+
|
|
5927
|
+
@builtins.property
|
|
5928
|
+
@jsii.member(jsii_name="cfnProperties")
|
|
5929
|
+
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
5930
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
|
|
5931
|
+
|
|
5932
|
+
@builtins.property
|
|
5933
|
+
@jsii.member(jsii_name="domainIdentifier")
|
|
5934
|
+
def domain_identifier(self) -> builtins.str:
|
|
5935
|
+
'''The ID of the domain where you want to create a domain unit.'''
|
|
5936
|
+
return typing.cast(builtins.str, jsii.get(self, "domainIdentifier"))
|
|
5937
|
+
|
|
5938
|
+
@domain_identifier.setter
|
|
5939
|
+
def domain_identifier(self, value: builtins.str) -> None:
|
|
5940
|
+
if __debug__:
|
|
5941
|
+
type_hints = typing.get_type_hints(_typecheckingstub__cf72156aa725b96faaed85404e23d70dc267cd0abb5f25a82730b49e79db3da3)
|
|
5942
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5943
|
+
jsii.set(self, "domainIdentifier", value) # pyright: ignore[reportArgumentType]
|
|
5944
|
+
|
|
5945
|
+
@builtins.property
|
|
5946
|
+
@jsii.member(jsii_name="name")
|
|
5947
|
+
def name(self) -> builtins.str:
|
|
5948
|
+
'''The name of the domain unit.'''
|
|
5949
|
+
return typing.cast(builtins.str, jsii.get(self, "name"))
|
|
5950
|
+
|
|
5951
|
+
@name.setter
|
|
5952
|
+
def name(self, value: builtins.str) -> None:
|
|
5953
|
+
if __debug__:
|
|
5954
|
+
type_hints = typing.get_type_hints(_typecheckingstub__9e554b39a08bdebb47a996dd0ed4d2386500e1f97db8b2b102320bf4c229a429)
|
|
5955
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5956
|
+
jsii.set(self, "name", value) # pyright: ignore[reportArgumentType]
|
|
5957
|
+
|
|
5958
|
+
@builtins.property
|
|
5959
|
+
@jsii.member(jsii_name="parentDomainUnitIdentifier")
|
|
5960
|
+
def parent_domain_unit_identifier(self) -> builtins.str:
|
|
5961
|
+
'''The ID of the parent domain unit.'''
|
|
5962
|
+
return typing.cast(builtins.str, jsii.get(self, "parentDomainUnitIdentifier"))
|
|
5963
|
+
|
|
5964
|
+
@parent_domain_unit_identifier.setter
|
|
5965
|
+
def parent_domain_unit_identifier(self, value: builtins.str) -> None:
|
|
5966
|
+
if __debug__:
|
|
5967
|
+
type_hints = typing.get_type_hints(_typecheckingstub__0fc10ab18c77014087fe1354e8f1063236b8830e559cbc2287ef325f51d1ab0c)
|
|
5968
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5969
|
+
jsii.set(self, "parentDomainUnitIdentifier", value) # pyright: ignore[reportArgumentType]
|
|
5970
|
+
|
|
5971
|
+
@builtins.property
|
|
5972
|
+
@jsii.member(jsii_name="description")
|
|
5973
|
+
def description(self) -> typing.Optional[builtins.str]:
|
|
5974
|
+
'''The description of the domain unit.'''
|
|
5975
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "description"))
|
|
5976
|
+
|
|
5977
|
+
@description.setter
|
|
5978
|
+
def description(self, value: typing.Optional[builtins.str]) -> None:
|
|
5979
|
+
if __debug__:
|
|
5980
|
+
type_hints = typing.get_type_hints(_typecheckingstub__a999765de6c52fcb132be3cd0b216fc666c0809dfc86c99a02dfc71a5fff2974)
|
|
5981
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5982
|
+
jsii.set(self, "description", value) # pyright: ignore[reportArgumentType]
|
|
5983
|
+
|
|
5984
|
+
|
|
5985
|
+
@jsii.data_type(
|
|
5986
|
+
jsii_type="aws-cdk-lib.aws_datazone.CfnDomainUnitProps",
|
|
5987
|
+
jsii_struct_bases=[],
|
|
5988
|
+
name_mapping={
|
|
5989
|
+
"domain_identifier": "domainIdentifier",
|
|
5990
|
+
"name": "name",
|
|
5991
|
+
"parent_domain_unit_identifier": "parentDomainUnitIdentifier",
|
|
5992
|
+
"description": "description",
|
|
5993
|
+
},
|
|
5994
|
+
)
|
|
5995
|
+
class CfnDomainUnitProps:
|
|
5996
|
+
def __init__(
|
|
5997
|
+
self,
|
|
5998
|
+
*,
|
|
5999
|
+
domain_identifier: builtins.str,
|
|
6000
|
+
name: builtins.str,
|
|
6001
|
+
parent_domain_unit_identifier: builtins.str,
|
|
6002
|
+
description: typing.Optional[builtins.str] = None,
|
|
6003
|
+
) -> None:
|
|
6004
|
+
'''Properties for defining a ``CfnDomainUnit``.
|
|
6005
|
+
|
|
6006
|
+
:param domain_identifier: The ID of the domain where you want to create a domain unit.
|
|
6007
|
+
:param name: The name of the domain unit.
|
|
6008
|
+
:param parent_domain_unit_identifier: The ID of the parent domain unit.
|
|
6009
|
+
:param description: The description of the domain unit.
|
|
6010
|
+
|
|
6011
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domainunit.html
|
|
6012
|
+
:exampleMetadata: fixture=_generated
|
|
6013
|
+
|
|
6014
|
+
Example::
|
|
6015
|
+
|
|
6016
|
+
# The code below shows an example of how to instantiate this type.
|
|
6017
|
+
# The values are placeholders you should change.
|
|
6018
|
+
from aws_cdk import aws_datazone as datazone
|
|
6019
|
+
|
|
6020
|
+
cfn_domain_unit_props = datazone.CfnDomainUnitProps(
|
|
6021
|
+
domain_identifier="domainIdentifier",
|
|
6022
|
+
name="name",
|
|
6023
|
+
parent_domain_unit_identifier="parentDomainUnitIdentifier",
|
|
6024
|
+
|
|
6025
|
+
# the properties below are optional
|
|
6026
|
+
description="description"
|
|
6027
|
+
)
|
|
6028
|
+
'''
|
|
6029
|
+
if __debug__:
|
|
6030
|
+
type_hints = typing.get_type_hints(_typecheckingstub__740935adbb77d29725778a65030d855aa614e033e09a756660d6c3eef6160bd9)
|
|
6031
|
+
check_type(argname="argument domain_identifier", value=domain_identifier, expected_type=type_hints["domain_identifier"])
|
|
6032
|
+
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
6033
|
+
check_type(argname="argument parent_domain_unit_identifier", value=parent_domain_unit_identifier, expected_type=type_hints["parent_domain_unit_identifier"])
|
|
6034
|
+
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
6035
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
6036
|
+
"domain_identifier": domain_identifier,
|
|
6037
|
+
"name": name,
|
|
6038
|
+
"parent_domain_unit_identifier": parent_domain_unit_identifier,
|
|
6039
|
+
}
|
|
6040
|
+
if description is not None:
|
|
6041
|
+
self._values["description"] = description
|
|
6042
|
+
|
|
6043
|
+
@builtins.property
|
|
6044
|
+
def domain_identifier(self) -> builtins.str:
|
|
6045
|
+
'''The ID of the domain where you want to create a domain unit.
|
|
6046
|
+
|
|
6047
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domainunit.html#cfn-datazone-domainunit-domainidentifier
|
|
6048
|
+
'''
|
|
6049
|
+
result = self._values.get("domain_identifier")
|
|
6050
|
+
assert result is not None, "Required property 'domain_identifier' is missing"
|
|
6051
|
+
return typing.cast(builtins.str, result)
|
|
6052
|
+
|
|
6053
|
+
@builtins.property
|
|
6054
|
+
def name(self) -> builtins.str:
|
|
6055
|
+
'''The name of the domain unit.
|
|
6056
|
+
|
|
6057
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domainunit.html#cfn-datazone-domainunit-name
|
|
6058
|
+
'''
|
|
6059
|
+
result = self._values.get("name")
|
|
6060
|
+
assert result is not None, "Required property 'name' is missing"
|
|
6061
|
+
return typing.cast(builtins.str, result)
|
|
6062
|
+
|
|
6063
|
+
@builtins.property
|
|
6064
|
+
def parent_domain_unit_identifier(self) -> builtins.str:
|
|
6065
|
+
'''The ID of the parent domain unit.
|
|
6066
|
+
|
|
6067
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domainunit.html#cfn-datazone-domainunit-parentdomainunitidentifier
|
|
6068
|
+
'''
|
|
6069
|
+
result = self._values.get("parent_domain_unit_identifier")
|
|
6070
|
+
assert result is not None, "Required property 'parent_domain_unit_identifier' is missing"
|
|
6071
|
+
return typing.cast(builtins.str, result)
|
|
6072
|
+
|
|
6073
|
+
@builtins.property
|
|
6074
|
+
def description(self) -> typing.Optional[builtins.str]:
|
|
6075
|
+
'''The description of the domain unit.
|
|
6076
|
+
|
|
6077
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domainunit.html#cfn-datazone-domainunit-description
|
|
6078
|
+
'''
|
|
6079
|
+
result = self._values.get("description")
|
|
6080
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
6081
|
+
|
|
6082
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
6083
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
6084
|
+
|
|
6085
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
6086
|
+
return not (rhs == self)
|
|
6087
|
+
|
|
6088
|
+
def __repr__(self) -> str:
|
|
6089
|
+
return "CfnDomainUnitProps(%s)" % ", ".join(
|
|
6090
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
6091
|
+
)
|
|
6092
|
+
|
|
6093
|
+
|
|
5784
6094
|
@jsii.implements(_IInspectable_c2943556)
|
|
5785
6095
|
class CfnEnvironment(
|
|
5786
6096
|
_CfnResource_9df397a6,
|
|
@@ -9819,6 +10129,8 @@ __all__ = [
|
|
|
9819
10129
|
"CfnDataSourceProps",
|
|
9820
10130
|
"CfnDomain",
|
|
9821
10131
|
"CfnDomainProps",
|
|
10132
|
+
"CfnDomainUnit",
|
|
10133
|
+
"CfnDomainUnitProps",
|
|
9822
10134
|
"CfnEnvironment",
|
|
9823
10135
|
"CfnEnvironmentActions",
|
|
9824
10136
|
"CfnEnvironmentActionsProps",
|
|
@@ -10473,6 +10785,64 @@ def _typecheckingstub__6d98e07f58a8aeb53fe8b36894639594f83be43ac8d182e1c384572cf
|
|
|
10473
10785
|
"""Type checking stubs"""
|
|
10474
10786
|
pass
|
|
10475
10787
|
|
|
10788
|
+
def _typecheckingstub__1700595f9c5a7d1c2312abf9e8d15687f79d83e5ead5d4136afe1d562d212c38(
|
|
10789
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
10790
|
+
id: builtins.str,
|
|
10791
|
+
*,
|
|
10792
|
+
domain_identifier: builtins.str,
|
|
10793
|
+
name: builtins.str,
|
|
10794
|
+
parent_domain_unit_identifier: builtins.str,
|
|
10795
|
+
description: typing.Optional[builtins.str] = None,
|
|
10796
|
+
) -> None:
|
|
10797
|
+
"""Type checking stubs"""
|
|
10798
|
+
pass
|
|
10799
|
+
|
|
10800
|
+
def _typecheckingstub__253603c22b8126a36f68fce57f93a169ab3bae1eea3f4a0ed84da859e1a38444(
|
|
10801
|
+
inspector: _TreeInspector_488e0dd5,
|
|
10802
|
+
) -> None:
|
|
10803
|
+
"""Type checking stubs"""
|
|
10804
|
+
pass
|
|
10805
|
+
|
|
10806
|
+
def _typecheckingstub__a243fcb8e7ead0c756ca762c1cdda3fa9d1e09b6cc2627c55905a3ba1c13d46a(
|
|
10807
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
10808
|
+
) -> None:
|
|
10809
|
+
"""Type checking stubs"""
|
|
10810
|
+
pass
|
|
10811
|
+
|
|
10812
|
+
def _typecheckingstub__cf72156aa725b96faaed85404e23d70dc267cd0abb5f25a82730b49e79db3da3(
|
|
10813
|
+
value: builtins.str,
|
|
10814
|
+
) -> None:
|
|
10815
|
+
"""Type checking stubs"""
|
|
10816
|
+
pass
|
|
10817
|
+
|
|
10818
|
+
def _typecheckingstub__9e554b39a08bdebb47a996dd0ed4d2386500e1f97db8b2b102320bf4c229a429(
|
|
10819
|
+
value: builtins.str,
|
|
10820
|
+
) -> None:
|
|
10821
|
+
"""Type checking stubs"""
|
|
10822
|
+
pass
|
|
10823
|
+
|
|
10824
|
+
def _typecheckingstub__0fc10ab18c77014087fe1354e8f1063236b8830e559cbc2287ef325f51d1ab0c(
|
|
10825
|
+
value: builtins.str,
|
|
10826
|
+
) -> None:
|
|
10827
|
+
"""Type checking stubs"""
|
|
10828
|
+
pass
|
|
10829
|
+
|
|
10830
|
+
def _typecheckingstub__a999765de6c52fcb132be3cd0b216fc666c0809dfc86c99a02dfc71a5fff2974(
|
|
10831
|
+
value: typing.Optional[builtins.str],
|
|
10832
|
+
) -> None:
|
|
10833
|
+
"""Type checking stubs"""
|
|
10834
|
+
pass
|
|
10835
|
+
|
|
10836
|
+
def _typecheckingstub__740935adbb77d29725778a65030d855aa614e033e09a756660d6c3eef6160bd9(
|
|
10837
|
+
*,
|
|
10838
|
+
domain_identifier: builtins.str,
|
|
10839
|
+
name: builtins.str,
|
|
10840
|
+
parent_domain_unit_identifier: builtins.str,
|
|
10841
|
+
description: typing.Optional[builtins.str] = None,
|
|
10842
|
+
) -> None:
|
|
10843
|
+
"""Type checking stubs"""
|
|
10844
|
+
pass
|
|
10845
|
+
|
|
10476
10846
|
def _typecheckingstub__b9dbab782927b08354bbafa4881abe3f775c9141395be836e6450777f8729b9b(
|
|
10477
10847
|
scope: _constructs_77d1e7e8.Construct,
|
|
10478
10848
|
id: builtins.str,
|
aws_cdk/aws_dsql/__init__.py
CHANGED
|
@@ -196,6 +196,15 @@ class CfnCluster(
|
|
|
196
196
|
'''
|
|
197
197
|
return typing.cast(builtins.str, jsii.get(self, "attrStatus"))
|
|
198
198
|
|
|
199
|
+
@builtins.property
|
|
200
|
+
@jsii.member(jsii_name="attrVpcEndpointServiceName")
|
|
201
|
+
def attr_vpc_endpoint_service_name(self) -> builtins.str:
|
|
202
|
+
'''The VPC endpoint service name.
|
|
203
|
+
|
|
204
|
+
:cloudformationAttribute: VpcEndpointServiceName
|
|
205
|
+
'''
|
|
206
|
+
return typing.cast(builtins.str, jsii.get(self, "attrVpcEndpointServiceName"))
|
|
207
|
+
|
|
199
208
|
@builtins.property
|
|
200
209
|
@jsii.member(jsii_name="cdkTagManager")
|
|
201
210
|
def cdk_tag_manager(self) -> _TagManager_0a598cb3:
|
aws_cdk/aws_dynamodb/__init__.py
CHANGED
|
@@ -5683,8 +5683,8 @@ class CfnTable(
|
|
|
5683
5683
|
:param key_schema: The complete key schema for a global secondary index, which consists of one or more pairs of attribute names and key types: - ``HASH`` - partition key - ``RANGE`` - sort key > The partition key of an item is also known as its *hash attribute* . The term "hash attribute" derives from DynamoDB's usage of an internal hash function to evenly distribute data items across partitions, based on their partition key values. .. epigraph:: The sort key of an item is also known as its *range attribute* . The term "range attribute" derives from the way DynamoDB stores items with the same partition key physically close together, in sorted order by the sort key value.
|
|
5684
5684
|
:param projection: Represents attributes that are copied (projected) from the table into the global secondary index. These are in addition to the primary key attributes and index key attributes, which are automatically projected.
|
|
5685
5685
|
:param contributor_insights_specification: The settings used to enable or disable CloudWatch Contributor Insights for the specified global secondary index.
|
|
5686
|
-
:param on_demand_throughput: The maximum number of read and write units for the specified global secondary index. If you use this parameter, you must specify ``MaxReadRequestUnits`` , ``MaxWriteRequestUnits`` , or both.
|
|
5687
|
-
:param provisioned_throughput: Represents the provisioned throughput settings for the specified global secondary index. For current minimum and maximum provisioned throughput values, see `Service, Account, and Table Quotas <https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Limits.html>`_ in the *Amazon DynamoDB Developer Guide* .
|
|
5686
|
+
:param on_demand_throughput: The maximum number of read and write units for the specified global secondary index. If you use this parameter, you must specify ``MaxReadRequestUnits`` , ``MaxWriteRequestUnits`` , or both. You must use either ``OnDemandThroughput`` or ``ProvisionedThroughput`` based on your table's capacity mode.
|
|
5687
|
+
:param provisioned_throughput: Represents the provisioned throughput settings for the specified global secondary index. You must use either ``OnDemandThroughput`` or ``ProvisionedThroughput`` based on your table's capacity mode. For current minimum and maximum provisioned throughput values, see `Service, Account, and Table Quotas <https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Limits.html>`_ in the *Amazon DynamoDB Developer Guide* .
|
|
5688
5688
|
:param warm_throughput: Represents the warm throughput value (in read units per second and write units per second) for the specified secondary index. If you use this parameter, you must specify ``ReadUnitsPerSecond`` , ``WriteUnitsPerSecond`` , or both.
|
|
5689
5689
|
|
|
5690
5690
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-globalsecondaryindex.html
|
|
@@ -5808,7 +5808,7 @@ class CfnTable(
|
|
|
5808
5808
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTable.OnDemandThroughputProperty"]]:
|
|
5809
5809
|
'''The maximum number of read and write units for the specified global secondary index.
|
|
5810
5810
|
|
|
5811
|
-
If you use this parameter, you must specify ``MaxReadRequestUnits`` , ``MaxWriteRequestUnits`` , or both.
|
|
5811
|
+
If you use this parameter, you must specify ``MaxReadRequestUnits`` , ``MaxWriteRequestUnits`` , or both. You must use either ``OnDemandThroughput`` or ``ProvisionedThroughput`` based on your table's capacity mode.
|
|
5812
5812
|
|
|
5813
5813
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-globalsecondaryindex.html#cfn-dynamodb-table-globalsecondaryindex-ondemandthroughput
|
|
5814
5814
|
'''
|
|
@@ -5821,6 +5821,8 @@ class CfnTable(
|
|
|
5821
5821
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTable.ProvisionedThroughputProperty"]]:
|
|
5822
5822
|
'''Represents the provisioned throughput settings for the specified global secondary index.
|
|
5823
5823
|
|
|
5824
|
+
You must use either ``OnDemandThroughput`` or ``ProvisionedThroughput`` based on your table's capacity mode.
|
|
5825
|
+
|
|
5824
5826
|
For current minimum and maximum provisioned throughput values, see `Service, Account, and Table Quotas <https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Limits.html>`_ in the *Amazon DynamoDB Developer Guide* .
|
|
5825
5827
|
|
|
5826
5828
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-globalsecondaryindex.html#cfn-dynamodb-table-globalsecondaryindex-provisionedthroughput
|