aws-cdk-lib 2.218.0__py3-none-any.whl → 2.219.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 +19 -19
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.218.0.jsii.tgz → aws-cdk-lib@2.219.0.jsii.tgz} +0 -0
- aws_cdk/aws_amazonmq/__init__.py +98 -87
- aws_cdk/aws_apigateway/__init__.py +39 -0
- aws_cdk/aws_bcmdataexports/__init__.py +9 -0
- aws_cdk/aws_bedrock/__init__.py +356 -1
- aws_cdk/aws_bedrockagentcore/__init__.py +297 -157
- aws_cdk/aws_codebuild/__init__.py +339 -62
- aws_cdk/aws_connect/__init__.py +9 -9
- aws_cdk/aws_cur/__init__.py +5 -3
- aws_cdk/aws_datasync/__init__.py +44 -22
- aws_cdk/aws_datazone/__init__.py +35 -33
- aws_cdk/aws_directoryservice/__init__.py +0 -29
- aws_cdk/aws_dms/__init__.py +3 -5
- aws_cdk/aws_ec2/__init__.py +2622 -22
- aws_cdk/aws_ecs/__init__.py +2681 -79
- aws_cdk/aws_entityresolution/__init__.py +18 -0
- aws_cdk/aws_greengrassv2/__init__.py +29 -0
- aws_cdk/aws_msk/__init__.py +4 -2
- aws_cdk/aws_networkfirewall/__init__.py +6 -2
- aws_cdk/aws_networkmanager/__init__.py +29 -29
- aws_cdk/aws_opensearchservice/__init__.py +58 -0
- aws_cdk/aws_opsworkscm/__init__.py +0 -29
- aws_cdk/aws_quicksight/__init__.py +38 -0
- aws_cdk/aws_rds/__init__.py +33 -14
- aws_cdk/aws_route53/__init__.py +8 -2
- aws_cdk/aws_servicecatalog/__init__.py +78 -86
- aws_cdk/aws_smsvoice/__init__.py +319 -0
- {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.219.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.219.0.dist-info}/RECORD +35 -35
- {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.219.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.219.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.219.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.219.0.dist-info}/top_level.txt +0 -0
|
@@ -129,6 +129,7 @@ class CfnIdMappingWorkflowProps:
|
|
|
129
129
|
cfn_id_mapping_workflow_props = entityresolution.CfnIdMappingWorkflowProps(
|
|
130
130
|
id_mapping_techniques=entityresolution.CfnIdMappingWorkflow.IdMappingTechniquesProperty(
|
|
131
131
|
id_mapping_type="idMappingType",
|
|
132
|
+
normalization_version="normalizationVersion",
|
|
132
133
|
provider_properties=entityresolution.CfnIdMappingWorkflow.ProviderPropertiesProperty(
|
|
133
134
|
provider_service_arn="providerServiceArn",
|
|
134
135
|
|
|
@@ -1527,6 +1528,7 @@ class CfnIdMappingWorkflow(
|
|
|
1527
1528
|
cfn_id_mapping_workflow = entityresolution.CfnIdMappingWorkflow(self, "MyCfnIdMappingWorkflow",
|
|
1528
1529
|
id_mapping_techniques=entityresolution.CfnIdMappingWorkflow.IdMappingTechniquesProperty(
|
|
1529
1530
|
id_mapping_type="idMappingType",
|
|
1531
|
+
normalization_version="normalizationVersion",
|
|
1530
1532
|
provider_properties=entityresolution.CfnIdMappingWorkflow.ProviderPropertiesProperty(
|
|
1531
1533
|
provider_service_arn="providerServiceArn",
|
|
1532
1534
|
|
|
@@ -2017,6 +2019,7 @@ class CfnIdMappingWorkflow(
|
|
|
2017
2019
|
jsii_struct_bases=[],
|
|
2018
2020
|
name_mapping={
|
|
2019
2021
|
"id_mapping_type": "idMappingType",
|
|
2022
|
+
"normalization_version": "normalizationVersion",
|
|
2020
2023
|
"provider_properties": "providerProperties",
|
|
2021
2024
|
"rule_based_properties": "ruleBasedProperties",
|
|
2022
2025
|
},
|
|
@@ -2026,12 +2029,14 @@ class CfnIdMappingWorkflow(
|
|
|
2026
2029
|
self,
|
|
2027
2030
|
*,
|
|
2028
2031
|
id_mapping_type: typing.Optional[builtins.str] = None,
|
|
2032
|
+
normalization_version: typing.Optional[builtins.str] = None,
|
|
2029
2033
|
provider_properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnIdMappingWorkflow.ProviderPropertiesProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2030
2034
|
rule_based_properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnIdMappingWorkflow.IdMappingRuleBasedPropertiesProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2031
2035
|
) -> None:
|
|
2032
2036
|
'''An object which defines the ID mapping technique and any additional configurations.
|
|
2033
2037
|
|
|
2034
2038
|
:param id_mapping_type: The type of ID mapping.
|
|
2039
|
+
:param normalization_version:
|
|
2035
2040
|
:param provider_properties: An object which defines any additional configurations required by the provider service.
|
|
2036
2041
|
:param rule_based_properties: An object which defines any additional configurations required by rule-based matching.
|
|
2037
2042
|
|
|
@@ -2046,6 +2051,7 @@ class CfnIdMappingWorkflow(
|
|
|
2046
2051
|
|
|
2047
2052
|
id_mapping_techniques_property = entityresolution.CfnIdMappingWorkflow.IdMappingTechniquesProperty(
|
|
2048
2053
|
id_mapping_type="idMappingType",
|
|
2054
|
+
normalization_version="normalizationVersion",
|
|
2049
2055
|
provider_properties=entityresolution.CfnIdMappingWorkflow.ProviderPropertiesProperty(
|
|
2050
2056
|
provider_service_arn="providerServiceArn",
|
|
2051
2057
|
|
|
@@ -2073,11 +2079,14 @@ class CfnIdMappingWorkflow(
|
|
|
2073
2079
|
if __debug__:
|
|
2074
2080
|
type_hints = typing.get_type_hints(_typecheckingstub__14f084baf89be97b69b754d6755f29c921f7ef9044bf1e234a903b93f7718bcc)
|
|
2075
2081
|
check_type(argname="argument id_mapping_type", value=id_mapping_type, expected_type=type_hints["id_mapping_type"])
|
|
2082
|
+
check_type(argname="argument normalization_version", value=normalization_version, expected_type=type_hints["normalization_version"])
|
|
2076
2083
|
check_type(argname="argument provider_properties", value=provider_properties, expected_type=type_hints["provider_properties"])
|
|
2077
2084
|
check_type(argname="argument rule_based_properties", value=rule_based_properties, expected_type=type_hints["rule_based_properties"])
|
|
2078
2085
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
2079
2086
|
if id_mapping_type is not None:
|
|
2080
2087
|
self._values["id_mapping_type"] = id_mapping_type
|
|
2088
|
+
if normalization_version is not None:
|
|
2089
|
+
self._values["normalization_version"] = normalization_version
|
|
2081
2090
|
if provider_properties is not None:
|
|
2082
2091
|
self._values["provider_properties"] = provider_properties
|
|
2083
2092
|
if rule_based_properties is not None:
|
|
@@ -2092,6 +2101,14 @@ class CfnIdMappingWorkflow(
|
|
|
2092
2101
|
result = self._values.get("id_mapping_type")
|
|
2093
2102
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
2094
2103
|
|
|
2104
|
+
@builtins.property
|
|
2105
|
+
def normalization_version(self) -> typing.Optional[builtins.str]:
|
|
2106
|
+
'''
|
|
2107
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-idmappingtechniques.html#cfn-entityresolution-idmappingworkflow-idmappingtechniques-normalizationversion
|
|
2108
|
+
'''
|
|
2109
|
+
result = self._values.get("normalization_version")
|
|
2110
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
2111
|
+
|
|
2095
2112
|
@builtins.property
|
|
2096
2113
|
def provider_properties(
|
|
2097
2114
|
self,
|
|
@@ -5464,6 +5481,7 @@ def _typecheckingstub__4bb92f6ba90c637e6800332c85746dca9a127a9d4ac3f6130ef5f9057
|
|
|
5464
5481
|
def _typecheckingstub__14f084baf89be97b69b754d6755f29c921f7ef9044bf1e234a903b93f7718bcc(
|
|
5465
5482
|
*,
|
|
5466
5483
|
id_mapping_type: typing.Optional[builtins.str] = None,
|
|
5484
|
+
normalization_version: typing.Optional[builtins.str] = None,
|
|
5467
5485
|
provider_properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnIdMappingWorkflow.ProviderPropertiesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5468
5486
|
rule_based_properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnIdMappingWorkflow.IdMappingRuleBasedPropertiesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5469
5487
|
) -> None:
|
|
@@ -2117,6 +2117,27 @@ class CfnDeployment(
|
|
|
2117
2117
|
|
|
2118
2118
|
jsii.create(self.__class__, self, [scope, id, props])
|
|
2119
2119
|
|
|
2120
|
+
@jsii.member(jsii_name="fromDeploymentId")
|
|
2121
|
+
@builtins.classmethod
|
|
2122
|
+
def from_deployment_id(
|
|
2123
|
+
cls,
|
|
2124
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
2125
|
+
id: builtins.str,
|
|
2126
|
+
deployment_id: builtins.str,
|
|
2127
|
+
) -> IDeploymentRef:
|
|
2128
|
+
'''Creates a new IDeploymentRef from a deploymentId.
|
|
2129
|
+
|
|
2130
|
+
:param scope: -
|
|
2131
|
+
:param id: -
|
|
2132
|
+
:param deployment_id: -
|
|
2133
|
+
'''
|
|
2134
|
+
if __debug__:
|
|
2135
|
+
type_hints = typing.get_type_hints(_typecheckingstub__246faf33f5221b348f2a0ea67e53581cd4ccc87b4011ca763f4a218cbfd4d249)
|
|
2136
|
+
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
2137
|
+
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
2138
|
+
check_type(argname="argument deployment_id", value=deployment_id, expected_type=type_hints["deployment_id"])
|
|
2139
|
+
return typing.cast(IDeploymentRef, jsii.sinvoke(cls, "fromDeploymentId", [scope, id, deployment_id]))
|
|
2140
|
+
|
|
2120
2141
|
@jsii.member(jsii_name="inspect")
|
|
2121
2142
|
def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
|
|
2122
2143
|
'''Examines the CloudFormation resource and discloses attributes.
|
|
@@ -3622,6 +3643,14 @@ def _typecheckingstub__e0099ed4b9647f1e31fee9e80f3453ed07e5b916846f269d15cb7aa59
|
|
|
3622
3643
|
"""Type checking stubs"""
|
|
3623
3644
|
pass
|
|
3624
3645
|
|
|
3646
|
+
def _typecheckingstub__246faf33f5221b348f2a0ea67e53581cd4ccc87b4011ca763f4a218cbfd4d249(
|
|
3647
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
3648
|
+
id: builtins.str,
|
|
3649
|
+
deployment_id: builtins.str,
|
|
3650
|
+
) -> None:
|
|
3651
|
+
"""Type checking stubs"""
|
|
3652
|
+
pass
|
|
3653
|
+
|
|
3625
3654
|
def _typecheckingstub__524ad5f78c9f968fbfe224a67e6b8648f6b2153ad09d18d40f9d97b0df1c6779(
|
|
3626
3655
|
inspector: _TreeInspector_488e0dd5,
|
|
3627
3656
|
) -> None:
|
aws_cdk/aws_msk/__init__.py
CHANGED
|
@@ -208,7 +208,7 @@ class CfnClusterPolicyProps:
|
|
|
208
208
|
'''Properties for defining a ``CfnClusterPolicy``.
|
|
209
209
|
|
|
210
210
|
:param cluster_arn: The Amazon Resource Name (ARN) that uniquely identifies the cluster.
|
|
211
|
-
:param policy: Resource policy for the cluster.
|
|
211
|
+
:param policy: Resource policy for the cluster. The maximum size supported for a resource-based policy document is 20 KB.
|
|
212
212
|
|
|
213
213
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-clusterpolicy.html
|
|
214
214
|
:exampleMetadata: fixture=_generated
|
|
@@ -249,6 +249,8 @@ class CfnClusterPolicyProps:
|
|
|
249
249
|
def policy(self) -> typing.Any:
|
|
250
250
|
'''Resource policy for the cluster.
|
|
251
251
|
|
|
252
|
+
The maximum size supported for a resource-based policy document is 20 KB.
|
|
253
|
+
|
|
252
254
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-clusterpolicy.html#cfn-msk-clusterpolicy-policy
|
|
253
255
|
'''
|
|
254
256
|
result = self._values.get("policy")
|
|
@@ -4776,7 +4778,7 @@ class CfnClusterPolicy(
|
|
|
4776
4778
|
:param scope: Scope in which this resource is defined.
|
|
4777
4779
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
4778
4780
|
:param cluster_arn: The Amazon Resource Name (ARN) that uniquely identifies the cluster.
|
|
4779
|
-
:param policy: Resource policy for the cluster.
|
|
4781
|
+
:param policy: Resource policy for the cluster. The maximum size supported for a resource-based policy document is 20 KB.
|
|
4780
4782
|
'''
|
|
4781
4783
|
if __debug__:
|
|
4782
4784
|
type_hints = typing.get_type_hints(_typecheckingstub__44054483e71e00fc0cc8de4a0043676504f8ba8eaef21e7597ca21b373e44603)
|
|
@@ -5795,7 +5795,7 @@ class CfnRuleGroup(
|
|
|
5795
5795
|
|
|
5796
5796
|
By default, Network Firewall domain list inspection only includes traffic coming from the VPC where you deploy the firewall. To inspect traffic from IP addresses outside of the deployment VPC, you set the ``HOME_NET`` rule variable to include the CIDR range of the deployment VPC plus the other CIDR ranges. For more information, see ``RuleVariables`` in this guide and `Stateful domain list rule groups in AWS Network Firewall <https://docs.aws.amazon.com/network-firewall/latest/developerguide/stateful-rule-groups-domain-names.html>`_ in the *Network Firewall Developer Guide*
|
|
5797
5797
|
|
|
5798
|
-
:param generated_rules_type: Whether you want to allow or
|
|
5798
|
+
:param generated_rules_type: Whether you want to apply allow, reject, alert, or drop behavior to the domains in your target list. .. epigraph:: When logging is enabled and you choose Alert, traffic that matches the domain specifications generates an alert in the firewall's logs. Then, traffic either passes, is rejected, or drops based on other rules in the firewall policy.
|
|
5799
5799
|
:param targets: The domains that you want to inspect for in your traffic flows. Valid domain specifications are the following:. - Explicit names. For example, ``abc.example.com`` matches only the domain ``abc.example.com`` . - Names that use a domain wildcard, which you indicate with an initial ' ``.`` '. For example, ``.example.com`` matches ``example.com`` and matches all subdomains of ``example.com`` , such as ``abc.example.com`` and ``www.example.com`` .
|
|
5800
5800
|
:param target_types: The types of targets to inspect for. Valid values are ``TLS_SNI`` and ``HTTP_HOST`` .
|
|
5801
5801
|
|
|
@@ -5827,7 +5827,11 @@ class CfnRuleGroup(
|
|
|
5827
5827
|
|
|
5828
5828
|
@builtins.property
|
|
5829
5829
|
def generated_rules_type(self) -> builtins.str:
|
|
5830
|
-
'''Whether you want to allow or
|
|
5830
|
+
'''Whether you want to apply allow, reject, alert, or drop behavior to the domains in your target list.
|
|
5831
|
+
|
|
5832
|
+
.. epigraph::
|
|
5833
|
+
|
|
5834
|
+
When logging is enabled and you choose Alert, traffic that matches the domain specifications generates an alert in the firewall's logs. Then, traffic either passes, is rejected, or drops based on other rules in the firewall policy.
|
|
5831
5835
|
|
|
5832
5836
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-rulegroup-rulessourcelist.html#cfn-networkfirewall-rulegroup-rulessourcelist-generatedrulestype
|
|
5833
5837
|
'''
|
|
@@ -3909,6 +3909,27 @@ class CfnConnectAttachment(
|
|
|
3909
3909
|
|
|
3910
3910
|
jsii.create(self.__class__, self, [scope, id, props])
|
|
3911
3911
|
|
|
3912
|
+
@jsii.member(jsii_name="fromAttachmentId")
|
|
3913
|
+
@builtins.classmethod
|
|
3914
|
+
def from_attachment_id(
|
|
3915
|
+
cls,
|
|
3916
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
3917
|
+
id: builtins.str,
|
|
3918
|
+
attachment_id: builtins.str,
|
|
3919
|
+
) -> IConnectAttachmentRef:
|
|
3920
|
+
'''Creates a new IConnectAttachmentRef from a attachmentId.
|
|
3921
|
+
|
|
3922
|
+
:param scope: -
|
|
3923
|
+
:param id: -
|
|
3924
|
+
:param attachment_id: -
|
|
3925
|
+
'''
|
|
3926
|
+
if __debug__:
|
|
3927
|
+
type_hints = typing.get_type_hints(_typecheckingstub__9e037d8713710ba9021433de3be9ec51641f433285ddda8f6ffd832125cf10a0)
|
|
3928
|
+
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
3929
|
+
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
3930
|
+
check_type(argname="argument attachment_id", value=attachment_id, expected_type=type_hints["attachment_id"])
|
|
3931
|
+
return typing.cast(IConnectAttachmentRef, jsii.sinvoke(cls, "fromAttachmentId", [scope, id, attachment_id]))
|
|
3932
|
+
|
|
3912
3933
|
@jsii.member(jsii_name="inspect")
|
|
3913
3934
|
def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
|
|
3914
3935
|
'''Examines the CloudFormation resource and discloses attributes.
|
|
@@ -9209,27 +9230,6 @@ class CfnVpcAttachment(
|
|
|
9209
9230
|
|
|
9210
9231
|
jsii.create(self.__class__, self, [scope, id, props])
|
|
9211
9232
|
|
|
9212
|
-
@jsii.member(jsii_name="fromAttachmentId")
|
|
9213
|
-
@builtins.classmethod
|
|
9214
|
-
def from_attachment_id(
|
|
9215
|
-
cls,
|
|
9216
|
-
scope: _constructs_77d1e7e8.Construct,
|
|
9217
|
-
id: builtins.str,
|
|
9218
|
-
attachment_id: builtins.str,
|
|
9219
|
-
) -> IVpcAttachmentRef:
|
|
9220
|
-
'''Creates a new IVpcAttachmentRef from a attachmentId.
|
|
9221
|
-
|
|
9222
|
-
:param scope: -
|
|
9223
|
-
:param id: -
|
|
9224
|
-
:param attachment_id: -
|
|
9225
|
-
'''
|
|
9226
|
-
if __debug__:
|
|
9227
|
-
type_hints = typing.get_type_hints(_typecheckingstub__5a9cbfd55c4f0f5e8645015279c1b35386da05b3099b1496eadec4750792fd9d)
|
|
9228
|
-
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
9229
|
-
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
9230
|
-
check_type(argname="argument attachment_id", value=attachment_id, expected_type=type_hints["attachment_id"])
|
|
9231
|
-
return typing.cast(IVpcAttachmentRef, jsii.sinvoke(cls, "fromAttachmentId", [scope, id, attachment_id]))
|
|
9232
|
-
|
|
9233
9233
|
@jsii.member(jsii_name="inspect")
|
|
9234
9234
|
def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
|
|
9235
9235
|
'''Examines the CloudFormation resource and discloses attributes.
|
|
@@ -10185,6 +10185,14 @@ def _typecheckingstub__d7415843def493b65c590878e3897c27e4c459f5d736fb5ee9738e5a1
|
|
|
10185
10185
|
"""Type checking stubs"""
|
|
10186
10186
|
pass
|
|
10187
10187
|
|
|
10188
|
+
def _typecheckingstub__9e037d8713710ba9021433de3be9ec51641f433285ddda8f6ffd832125cf10a0(
|
|
10189
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
10190
|
+
id: builtins.str,
|
|
10191
|
+
attachment_id: builtins.str,
|
|
10192
|
+
) -> None:
|
|
10193
|
+
"""Type checking stubs"""
|
|
10194
|
+
pass
|
|
10195
|
+
|
|
10188
10196
|
def _typecheckingstub__44665bf65f06575cd3323d1c866a2dc00c17092a359aac8101e622ad9bf92f5c(
|
|
10189
10197
|
inspector: _TreeInspector_488e0dd5,
|
|
10190
10198
|
) -> None:
|
|
@@ -11158,14 +11166,6 @@ def _typecheckingstub__962ef8273d6d2d97a33b00603b7bf87793fdecfaae4031352d9cbc1bc
|
|
|
11158
11166
|
"""Type checking stubs"""
|
|
11159
11167
|
pass
|
|
11160
11168
|
|
|
11161
|
-
def _typecheckingstub__5a9cbfd55c4f0f5e8645015279c1b35386da05b3099b1496eadec4750792fd9d(
|
|
11162
|
-
scope: _constructs_77d1e7e8.Construct,
|
|
11163
|
-
id: builtins.str,
|
|
11164
|
-
attachment_id: builtins.str,
|
|
11165
|
-
) -> None:
|
|
11166
|
-
"""Type checking stubs"""
|
|
11167
|
-
pass
|
|
11168
|
-
|
|
11169
11169
|
def _typecheckingstub__066721874248356323b7edc6b2c638d14ec9d95fc08966f64139e05c40164db7(
|
|
11170
11170
|
inspector: _TreeInspector_488e0dd5,
|
|
11171
11171
|
) -> None:
|
|
@@ -6317,6 +6317,48 @@ class CfnDomain(
|
|
|
6317
6317
|
|
|
6318
6318
|
jsii.create(self.__class__, self, [scope, id, props])
|
|
6319
6319
|
|
|
6320
|
+
@jsii.member(jsii_name="fromDomainArn")
|
|
6321
|
+
@builtins.classmethod
|
|
6322
|
+
def from_domain_arn(
|
|
6323
|
+
cls,
|
|
6324
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
6325
|
+
id: builtins.str,
|
|
6326
|
+
arn: builtins.str,
|
|
6327
|
+
) -> IDomainRef:
|
|
6328
|
+
'''Creates a new IDomainRef from an ARN.
|
|
6329
|
+
|
|
6330
|
+
:param scope: -
|
|
6331
|
+
:param id: -
|
|
6332
|
+
:param arn: -
|
|
6333
|
+
'''
|
|
6334
|
+
if __debug__:
|
|
6335
|
+
type_hints = typing.get_type_hints(_typecheckingstub__b2708216d2638c9e5c5bcbeda7fafaa1058fab53ab235b1e6a6387d5d705d8d1)
|
|
6336
|
+
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
6337
|
+
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
6338
|
+
check_type(argname="argument arn", value=arn, expected_type=type_hints["arn"])
|
|
6339
|
+
return typing.cast(IDomainRef, jsii.sinvoke(cls, "fromDomainArn", [scope, id, arn]))
|
|
6340
|
+
|
|
6341
|
+
@jsii.member(jsii_name="fromDomainName")
|
|
6342
|
+
@builtins.classmethod
|
|
6343
|
+
def from_domain_name(
|
|
6344
|
+
cls,
|
|
6345
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
6346
|
+
id: builtins.str,
|
|
6347
|
+
domain_name: builtins.str,
|
|
6348
|
+
) -> IDomainRef:
|
|
6349
|
+
'''Creates a new IDomainRef from a domainName.
|
|
6350
|
+
|
|
6351
|
+
:param scope: -
|
|
6352
|
+
:param id: -
|
|
6353
|
+
:param domain_name: -
|
|
6354
|
+
'''
|
|
6355
|
+
if __debug__:
|
|
6356
|
+
type_hints = typing.get_type_hints(_typecheckingstub__8aef0b900a2703d083f24bd9797f860fe581d2375f4aa106d0ea25803fd3d1d4)
|
|
6357
|
+
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
6358
|
+
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
6359
|
+
check_type(argname="argument domain_name", value=domain_name, expected_type=type_hints["domain_name"])
|
|
6360
|
+
return typing.cast(IDomainRef, jsii.sinvoke(cls, "fromDomainName", [scope, id, domain_name]))
|
|
6361
|
+
|
|
6320
6362
|
@jsii.member(jsii_name="inspect")
|
|
6321
6363
|
def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
|
|
6322
6364
|
'''Examines the CloudFormation resource and discloses attributes.
|
|
@@ -11204,6 +11246,22 @@ def _typecheckingstub__6fcd2545392b3f48f314c640881e38e167b5936f1165d2eb1ce21766d
|
|
|
11204
11246
|
"""Type checking stubs"""
|
|
11205
11247
|
pass
|
|
11206
11248
|
|
|
11249
|
+
def _typecheckingstub__b2708216d2638c9e5c5bcbeda7fafaa1058fab53ab235b1e6a6387d5d705d8d1(
|
|
11250
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
11251
|
+
id: builtins.str,
|
|
11252
|
+
arn: builtins.str,
|
|
11253
|
+
) -> None:
|
|
11254
|
+
"""Type checking stubs"""
|
|
11255
|
+
pass
|
|
11256
|
+
|
|
11257
|
+
def _typecheckingstub__8aef0b900a2703d083f24bd9797f860fe581d2375f4aa106d0ea25803fd3d1d4(
|
|
11258
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
11259
|
+
id: builtins.str,
|
|
11260
|
+
domain_name: builtins.str,
|
|
11261
|
+
) -> None:
|
|
11262
|
+
"""Type checking stubs"""
|
|
11263
|
+
pass
|
|
11264
|
+
|
|
11207
11265
|
def _typecheckingstub__36055c1f3a4932ba1e8f0542c29f5149d636738c30a3d9d1bdafb864d00f2e64(
|
|
11208
11266
|
inspector: _TreeInspector_488e0dd5,
|
|
11209
11267
|
) -> None:
|
|
@@ -732,27 +732,6 @@ class CfnServer(
|
|
|
732
732
|
|
|
733
733
|
jsii.create(self.__class__, self, [scope, id, props])
|
|
734
734
|
|
|
735
|
-
@jsii.member(jsii_name="fromServerArn")
|
|
736
|
-
@builtins.classmethod
|
|
737
|
-
def from_server_arn(
|
|
738
|
-
cls,
|
|
739
|
-
scope: _constructs_77d1e7e8.Construct,
|
|
740
|
-
id: builtins.str,
|
|
741
|
-
arn: builtins.str,
|
|
742
|
-
) -> IServerRef:
|
|
743
|
-
'''Creates a new IServerRef from an ARN.
|
|
744
|
-
|
|
745
|
-
:param scope: -
|
|
746
|
-
:param id: -
|
|
747
|
-
:param arn: -
|
|
748
|
-
'''
|
|
749
|
-
if __debug__:
|
|
750
|
-
type_hints = typing.get_type_hints(_typecheckingstub__1d015a80f8f16aa8ba5d63ce994cedf39306d66b43a1e47d630e4643e245bda7)
|
|
751
|
-
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
752
|
-
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
753
|
-
check_type(argname="argument arn", value=arn, expected_type=type_hints["arn"])
|
|
754
|
-
return typing.cast(IServerRef, jsii.sinvoke(cls, "fromServerArn", [scope, id, arn]))
|
|
755
|
-
|
|
756
735
|
@jsii.member(jsii_name="inspect")
|
|
757
736
|
def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
|
|
758
737
|
'''Examines the CloudFormation resource and discloses attributes.
|
|
@@ -1276,14 +1255,6 @@ def _typecheckingstub__4fcf3005231c62e7682797d2e25d33ceb0c0b9602a2f2ffe6a7c3dabf
|
|
|
1276
1255
|
"""Type checking stubs"""
|
|
1277
1256
|
pass
|
|
1278
1257
|
|
|
1279
|
-
def _typecheckingstub__1d015a80f8f16aa8ba5d63ce994cedf39306d66b43a1e47d630e4643e245bda7(
|
|
1280
|
-
scope: _constructs_77d1e7e8.Construct,
|
|
1281
|
-
id: builtins.str,
|
|
1282
|
-
arn: builtins.str,
|
|
1283
|
-
) -> None:
|
|
1284
|
-
"""Type checking stubs"""
|
|
1285
|
-
pass
|
|
1286
|
-
|
|
1287
1258
|
def _typecheckingstub__19f2feeaf9088052d1e3d91318248757951a8853d230fb27b822589707fba494(
|
|
1288
1259
|
inspector: _TreeInspector_488e0dd5,
|
|
1289
1260
|
) -> None:
|
|
@@ -471,6 +471,7 @@ class CfnCustomPermissionsProps:
|
|
|
471
471
|
# the properties below are optional
|
|
472
472
|
capabilities=quicksight.CfnCustomPermissions.CapabilitiesProperty(
|
|
473
473
|
add_or_run_anomaly_detection_for_analyses="addOrRunAnomalyDetectionForAnalyses",
|
|
474
|
+
analysis="analysis",
|
|
474
475
|
create_and_update_dashboard_email_reports="createAndUpdateDashboardEmailReports",
|
|
475
476
|
create_and_update_datasets="createAndUpdateDatasets",
|
|
476
477
|
create_and_update_data_sources="createAndUpdateDataSources",
|
|
@@ -478,6 +479,7 @@ class CfnCustomPermissionsProps:
|
|
|
478
479
|
create_and_update_threshold_alerts="createAndUpdateThresholdAlerts",
|
|
479
480
|
create_shared_folders="createSharedFolders",
|
|
480
481
|
create_spice_dataset="createSpiceDataset",
|
|
482
|
+
dashboard="dashboard",
|
|
481
483
|
export_to_csv="exportToCsv",
|
|
482
484
|
export_to_csv_in_scheduled_reports="exportToCsvInScheduledReports",
|
|
483
485
|
export_to_excel="exportToExcel",
|
|
@@ -74615,6 +74617,7 @@ class CfnCustomPermissions(
|
|
|
74615
74617
|
# the properties below are optional
|
|
74616
74618
|
capabilities=quicksight.CfnCustomPermissions.CapabilitiesProperty(
|
|
74617
74619
|
add_or_run_anomaly_detection_for_analyses="addOrRunAnomalyDetectionForAnalyses",
|
|
74620
|
+
analysis="analysis",
|
|
74618
74621
|
create_and_update_dashboard_email_reports="createAndUpdateDashboardEmailReports",
|
|
74619
74622
|
create_and_update_datasets="createAndUpdateDatasets",
|
|
74620
74623
|
create_and_update_data_sources="createAndUpdateDataSources",
|
|
@@ -74622,6 +74625,7 @@ class CfnCustomPermissions(
|
|
|
74622
74625
|
create_and_update_threshold_alerts="createAndUpdateThresholdAlerts",
|
|
74623
74626
|
create_shared_folders="createSharedFolders",
|
|
74624
74627
|
create_spice_dataset="createSpiceDataset",
|
|
74628
|
+
dashboard="dashboard",
|
|
74625
74629
|
export_to_csv="exportToCsv",
|
|
74626
74630
|
export_to_csv_in_scheduled_reports="exportToCsvInScheduledReports",
|
|
74627
74631
|
export_to_excel="exportToExcel",
|
|
@@ -74794,6 +74798,7 @@ class CfnCustomPermissions(
|
|
|
74794
74798
|
jsii_struct_bases=[],
|
|
74795
74799
|
name_mapping={
|
|
74796
74800
|
"add_or_run_anomaly_detection_for_analyses": "addOrRunAnomalyDetectionForAnalyses",
|
|
74801
|
+
"analysis": "analysis",
|
|
74797
74802
|
"create_and_update_dashboard_email_reports": "createAndUpdateDashboardEmailReports",
|
|
74798
74803
|
"create_and_update_datasets": "createAndUpdateDatasets",
|
|
74799
74804
|
"create_and_update_data_sources": "createAndUpdateDataSources",
|
|
@@ -74801,6 +74806,7 @@ class CfnCustomPermissions(
|
|
|
74801
74806
|
"create_and_update_threshold_alerts": "createAndUpdateThresholdAlerts",
|
|
74802
74807
|
"create_shared_folders": "createSharedFolders",
|
|
74803
74808
|
"create_spice_dataset": "createSpiceDataset",
|
|
74809
|
+
"dashboard": "dashboard",
|
|
74804
74810
|
"export_to_csv": "exportToCsv",
|
|
74805
74811
|
"export_to_csv_in_scheduled_reports": "exportToCsvInScheduledReports",
|
|
74806
74812
|
"export_to_excel": "exportToExcel",
|
|
@@ -74823,6 +74829,7 @@ class CfnCustomPermissions(
|
|
|
74823
74829
|
self,
|
|
74824
74830
|
*,
|
|
74825
74831
|
add_or_run_anomaly_detection_for_analyses: typing.Optional[builtins.str] = None,
|
|
74832
|
+
analysis: typing.Optional[builtins.str] = None,
|
|
74826
74833
|
create_and_update_dashboard_email_reports: typing.Optional[builtins.str] = None,
|
|
74827
74834
|
create_and_update_datasets: typing.Optional[builtins.str] = None,
|
|
74828
74835
|
create_and_update_data_sources: typing.Optional[builtins.str] = None,
|
|
@@ -74830,6 +74837,7 @@ class CfnCustomPermissions(
|
|
|
74830
74837
|
create_and_update_threshold_alerts: typing.Optional[builtins.str] = None,
|
|
74831
74838
|
create_shared_folders: typing.Optional[builtins.str] = None,
|
|
74832
74839
|
create_spice_dataset: typing.Optional[builtins.str] = None,
|
|
74840
|
+
dashboard: typing.Optional[builtins.str] = None,
|
|
74833
74841
|
export_to_csv: typing.Optional[builtins.str] = None,
|
|
74834
74842
|
export_to_csv_in_scheduled_reports: typing.Optional[builtins.str] = None,
|
|
74835
74843
|
export_to_excel: typing.Optional[builtins.str] = None,
|
|
@@ -74849,6 +74857,7 @@ class CfnCustomPermissions(
|
|
|
74849
74857
|
'''A set of actions that correspond to Amazon QuickSight permissions.
|
|
74850
74858
|
|
|
74851
74859
|
:param add_or_run_anomaly_detection_for_analyses: The ability to add or run anomaly detection.
|
|
74860
|
+
:param analysis: The ability to perform analysis-related actions.
|
|
74852
74861
|
:param create_and_update_dashboard_email_reports: The ability to create and update email reports.
|
|
74853
74862
|
:param create_and_update_datasets: The ability to create and update datasets.
|
|
74854
74863
|
:param create_and_update_data_sources: The ability to create and update data sources.
|
|
@@ -74856,6 +74865,7 @@ class CfnCustomPermissions(
|
|
|
74856
74865
|
:param create_and_update_threshold_alerts: The ability to create and update threshold alerts.
|
|
74857
74866
|
:param create_shared_folders: The ability to create shared folders.
|
|
74858
74867
|
:param create_spice_dataset: The ability to create a SPICE dataset.
|
|
74868
|
+
:param dashboard: The ability to perform dashboard-related actions.
|
|
74859
74869
|
:param export_to_csv: The ability to export to CSV files from the UI.
|
|
74860
74870
|
:param export_to_csv_in_scheduled_reports: The ability to export to CSV files in scheduled email reports.
|
|
74861
74871
|
:param export_to_excel: The ability to export to Excel files from the UI.
|
|
@@ -74883,6 +74893,7 @@ class CfnCustomPermissions(
|
|
|
74883
74893
|
|
|
74884
74894
|
capabilities_property = quicksight.CfnCustomPermissions.CapabilitiesProperty(
|
|
74885
74895
|
add_or_run_anomaly_detection_for_analyses="addOrRunAnomalyDetectionForAnalyses",
|
|
74896
|
+
analysis="analysis",
|
|
74886
74897
|
create_and_update_dashboard_email_reports="createAndUpdateDashboardEmailReports",
|
|
74887
74898
|
create_and_update_datasets="createAndUpdateDatasets",
|
|
74888
74899
|
create_and_update_data_sources="createAndUpdateDataSources",
|
|
@@ -74890,6 +74901,7 @@ class CfnCustomPermissions(
|
|
|
74890
74901
|
create_and_update_threshold_alerts="createAndUpdateThresholdAlerts",
|
|
74891
74902
|
create_shared_folders="createSharedFolders",
|
|
74892
74903
|
create_spice_dataset="createSpiceDataset",
|
|
74904
|
+
dashboard="dashboard",
|
|
74893
74905
|
export_to_csv="exportToCsv",
|
|
74894
74906
|
export_to_csv_in_scheduled_reports="exportToCsvInScheduledReports",
|
|
74895
74907
|
export_to_excel="exportToExcel",
|
|
@@ -74910,6 +74922,7 @@ class CfnCustomPermissions(
|
|
|
74910
74922
|
if __debug__:
|
|
74911
74923
|
type_hints = typing.get_type_hints(_typecheckingstub__009751171d18f139beacd68aa2642defd546c981229603196499b5afa98ee605)
|
|
74912
74924
|
check_type(argname="argument add_or_run_anomaly_detection_for_analyses", value=add_or_run_anomaly_detection_for_analyses, expected_type=type_hints["add_or_run_anomaly_detection_for_analyses"])
|
|
74925
|
+
check_type(argname="argument analysis", value=analysis, expected_type=type_hints["analysis"])
|
|
74913
74926
|
check_type(argname="argument create_and_update_dashboard_email_reports", value=create_and_update_dashboard_email_reports, expected_type=type_hints["create_and_update_dashboard_email_reports"])
|
|
74914
74927
|
check_type(argname="argument create_and_update_datasets", value=create_and_update_datasets, expected_type=type_hints["create_and_update_datasets"])
|
|
74915
74928
|
check_type(argname="argument create_and_update_data_sources", value=create_and_update_data_sources, expected_type=type_hints["create_and_update_data_sources"])
|
|
@@ -74917,6 +74930,7 @@ class CfnCustomPermissions(
|
|
|
74917
74930
|
check_type(argname="argument create_and_update_threshold_alerts", value=create_and_update_threshold_alerts, expected_type=type_hints["create_and_update_threshold_alerts"])
|
|
74918
74931
|
check_type(argname="argument create_shared_folders", value=create_shared_folders, expected_type=type_hints["create_shared_folders"])
|
|
74919
74932
|
check_type(argname="argument create_spice_dataset", value=create_spice_dataset, expected_type=type_hints["create_spice_dataset"])
|
|
74933
|
+
check_type(argname="argument dashboard", value=dashboard, expected_type=type_hints["dashboard"])
|
|
74920
74934
|
check_type(argname="argument export_to_csv", value=export_to_csv, expected_type=type_hints["export_to_csv"])
|
|
74921
74935
|
check_type(argname="argument export_to_csv_in_scheduled_reports", value=export_to_csv_in_scheduled_reports, expected_type=type_hints["export_to_csv_in_scheduled_reports"])
|
|
74922
74936
|
check_type(argname="argument export_to_excel", value=export_to_excel, expected_type=type_hints["export_to_excel"])
|
|
@@ -74935,6 +74949,8 @@ class CfnCustomPermissions(
|
|
|
74935
74949
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
74936
74950
|
if add_or_run_anomaly_detection_for_analyses is not None:
|
|
74937
74951
|
self._values["add_or_run_anomaly_detection_for_analyses"] = add_or_run_anomaly_detection_for_analyses
|
|
74952
|
+
if analysis is not None:
|
|
74953
|
+
self._values["analysis"] = analysis
|
|
74938
74954
|
if create_and_update_dashboard_email_reports is not None:
|
|
74939
74955
|
self._values["create_and_update_dashboard_email_reports"] = create_and_update_dashboard_email_reports
|
|
74940
74956
|
if create_and_update_datasets is not None:
|
|
@@ -74949,6 +74965,8 @@ class CfnCustomPermissions(
|
|
|
74949
74965
|
self._values["create_shared_folders"] = create_shared_folders
|
|
74950
74966
|
if create_spice_dataset is not None:
|
|
74951
74967
|
self._values["create_spice_dataset"] = create_spice_dataset
|
|
74968
|
+
if dashboard is not None:
|
|
74969
|
+
self._values["dashboard"] = dashboard
|
|
74952
74970
|
if export_to_csv is not None:
|
|
74953
74971
|
self._values["export_to_csv"] = export_to_csv
|
|
74954
74972
|
if export_to_csv_in_scheduled_reports is not None:
|
|
@@ -74991,6 +75009,15 @@ class CfnCustomPermissions(
|
|
|
74991
75009
|
result = self._values.get("add_or_run_anomaly_detection_for_analyses")
|
|
74992
75010
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
74993
75011
|
|
|
75012
|
+
@builtins.property
|
|
75013
|
+
def analysis(self) -> typing.Optional[builtins.str]:
|
|
75014
|
+
'''The ability to perform analysis-related actions.
|
|
75015
|
+
|
|
75016
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-custompermissions-capabilities.html#cfn-quicksight-custompermissions-capabilities-analysis
|
|
75017
|
+
'''
|
|
75018
|
+
result = self._values.get("analysis")
|
|
75019
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
75020
|
+
|
|
74994
75021
|
@builtins.property
|
|
74995
75022
|
def create_and_update_dashboard_email_reports(
|
|
74996
75023
|
self,
|
|
@@ -75056,6 +75083,15 @@ class CfnCustomPermissions(
|
|
|
75056
75083
|
result = self._values.get("create_spice_dataset")
|
|
75057
75084
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
75058
75085
|
|
|
75086
|
+
@builtins.property
|
|
75087
|
+
def dashboard(self) -> typing.Optional[builtins.str]:
|
|
75088
|
+
'''The ability to perform dashboard-related actions.
|
|
75089
|
+
|
|
75090
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-custompermissions-capabilities.html#cfn-quicksight-custompermissions-capabilities-dashboard
|
|
75091
|
+
'''
|
|
75092
|
+
result = self._values.get("dashboard")
|
|
75093
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
75094
|
+
|
|
75059
75095
|
@builtins.property
|
|
75060
75096
|
def export_to_csv(self) -> typing.Optional[builtins.str]:
|
|
75061
75097
|
'''The ability to export to CSV files from the UI.
|
|
@@ -235044,6 +235080,7 @@ def _typecheckingstub__2c3791481dfdcd564a45d78c43b58bdd8ec947943a4aa69ad8740ed70
|
|
|
235044
235080
|
def _typecheckingstub__009751171d18f139beacd68aa2642defd546c981229603196499b5afa98ee605(
|
|
235045
235081
|
*,
|
|
235046
235082
|
add_or_run_anomaly_detection_for_analyses: typing.Optional[builtins.str] = None,
|
|
235083
|
+
analysis: typing.Optional[builtins.str] = None,
|
|
235047
235084
|
create_and_update_dashboard_email_reports: typing.Optional[builtins.str] = None,
|
|
235048
235085
|
create_and_update_datasets: typing.Optional[builtins.str] = None,
|
|
235049
235086
|
create_and_update_data_sources: typing.Optional[builtins.str] = None,
|
|
@@ -235051,6 +235088,7 @@ def _typecheckingstub__009751171d18f139beacd68aa2642defd546c981229603196499b5afa
|
|
|
235051
235088
|
create_and_update_threshold_alerts: typing.Optional[builtins.str] = None,
|
|
235052
235089
|
create_shared_folders: typing.Optional[builtins.str] = None,
|
|
235053
235090
|
create_spice_dataset: typing.Optional[builtins.str] = None,
|
|
235091
|
+
dashboard: typing.Optional[builtins.str] = None,
|
|
235054
235092
|
export_to_csv: typing.Optional[builtins.str] = None,
|
|
235055
235093
|
export_to_csv_in_scheduled_reports: typing.Optional[builtins.str] = None,
|
|
235056
235094
|
export_to_excel: typing.Optional[builtins.str] = None,
|