aws-cdk-lib 2.172.0__py3-none-any.whl → 2.173.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of aws-cdk-lib might be problematic. Click here for more details.
- aws_cdk/__init__.py +57 -0
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.172.0.jsii.tgz → aws-cdk-lib@2.173.1.jsii.tgz} +0 -0
- aws_cdk/aws_amazonmq/__init__.py +40 -40
- aws_cdk/aws_apigateway/__init__.py +111 -64
- aws_cdk/aws_applicationautoscaling/__init__.py +141 -66
- aws_cdk/aws_appsync/__init__.py +4 -3
- aws_cdk/aws_autoscaling/__init__.py +15 -6
- aws_cdk/aws_bedrock/__init__.py +32 -44
- aws_cdk/aws_chatbot/__init__.py +72 -46
- aws_cdk/aws_cleanrooms/__init__.py +4 -6
- aws_cdk/aws_cloudfront/__init__.py +4 -2
- aws_cdk/aws_cloudtrail/__init__.py +104 -68
- aws_cdk/aws_cloudwatch/__init__.py +51 -14
- aws_cdk/aws_codebuild/__init__.py +39 -0
- aws_cdk/aws_codepipeline/__init__.py +4 -4
- aws_cdk/aws_cognito/__init__.py +221 -53
- aws_cdk/aws_config/__init__.py +13 -10
- aws_cdk/aws_connect/__init__.py +25 -23
- aws_cdk/aws_connectcampaignsv2/__init__.py +187 -176
- aws_cdk/aws_docdb/__init__.py +128 -0
- aws_cdk/aws_dynamodb/__init__.py +256 -0
- aws_cdk/aws_ec2/__init__.py +130 -48
- aws_cdk/aws_ecs/__init__.py +25 -13
- aws_cdk/aws_eks/__init__.py +86 -24
- aws_cdk/aws_elasticache/__init__.py +22 -22
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +138 -128
- aws_cdk/aws_events/__init__.py +39 -26
- aws_cdk/aws_fsx/__init__.py +134 -10
- aws_cdk/aws_imagebuilder/__init__.py +8 -8
- aws_cdk/aws_invoicing/__init__.py +651 -0
- aws_cdk/aws_iot/__init__.py +28 -22
- aws_cdk/aws_iotfleetwise/__init__.py +473 -332
- aws_cdk/aws_iotsitewise/__init__.py +6 -4
- aws_cdk/aws_ivs/__init__.py +43 -31
- aws_cdk/aws_kendra/__init__.py +4 -0
- aws_cdk/aws_lakeformation/__init__.py +2 -1
- aws_cdk/aws_lambda/__init__.py +258 -156
- aws_cdk/aws_logs/__init__.py +532 -0
- aws_cdk/aws_m2/__init__.py +15 -15
- aws_cdk/aws_mediaconnect/__init__.py +24 -14
- aws_cdk/aws_medialive/__init__.py +2359 -5
- aws_cdk/aws_mediapackage/__init__.py +3 -9
- aws_cdk/aws_mediapackagev2/__init__.py +19 -17
- aws_cdk/aws_memorydb/__init__.py +664 -4
- aws_cdk/aws_qbusiness/__init__.py +2018 -66
- aws_cdk/aws_rds/__init__.py +30 -0
- aws_cdk/aws_resourcegroups/__init__.py +26 -17
- aws_cdk/aws_route53/__init__.py +1177 -10
- aws_cdk/aws_route53_targets/__init__.py +224 -100
- aws_cdk/aws_route53resolver/__init__.py +4 -2
- aws_cdk/aws_s3/__init__.py +4 -4
- aws_cdk/aws_s3express/__init__.py +30 -19
- aws_cdk/aws_sagemaker/__init__.py +783 -9
- aws_cdk/aws_secretsmanager/__init__.py +20 -6
- aws_cdk/aws_securityhub/__init__.py +64 -32
- aws_cdk/aws_servicediscovery/__init__.py +43 -0
- aws_cdk/aws_ses/__init__.py +109 -0
- aws_cdk/aws_stepfunctions_tasks/__init__.py +190 -35
- aws_cdk/aws_synthetics/__init__.py +7 -5
- aws_cdk/aws_vpclattice/__init__.py +1479 -122
- aws_cdk/aws_wisdom/__init__.py +2698 -232
- aws_cdk/aws_workspacesweb/__init__.py +118 -61
- {aws_cdk_lib-2.172.0.dist-info → aws_cdk_lib-2.173.1.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.172.0.dist-info → aws_cdk_lib-2.173.1.dist-info}/RECORD +69 -68
- {aws_cdk_lib-2.172.0.dist-info → aws_cdk_lib-2.173.1.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.172.0.dist-info → aws_cdk_lib-2.173.1.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.172.0.dist-info → aws_cdk_lib-2.173.1.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.172.0.dist-info → aws_cdk_lib-2.173.1.dist-info}/top_level.txt +0 -0
|
@@ -132,6 +132,9 @@ class CfnApplication(
|
|
|
132
132
|
q_apps_configuration=qbusiness.CfnApplication.QAppsConfigurationProperty(
|
|
133
133
|
q_apps_control_mode="qAppsControlMode"
|
|
134
134
|
),
|
|
135
|
+
quick_sight_configuration=qbusiness.CfnApplication.QuickSightConfigurationProperty(
|
|
136
|
+
client_namespace="clientNamespace"
|
|
137
|
+
),
|
|
135
138
|
role_arn="roleArn",
|
|
136
139
|
tags=[CfnTag(
|
|
137
140
|
key="key",
|
|
@@ -156,6 +159,7 @@ class CfnApplication(
|
|
|
156
159
|
identity_type: typing.Optional[builtins.str] = None,
|
|
157
160
|
personalization_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnApplication.PersonalizationConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
158
161
|
q_apps_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnApplication.QAppsConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
162
|
+
quick_sight_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnApplication.QuickSightConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
159
163
|
role_arn: typing.Optional[builtins.str] = None,
|
|
160
164
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
161
165
|
) -> None:
|
|
@@ -173,6 +177,7 @@ class CfnApplication(
|
|
|
173
177
|
:param identity_type: The authentication type being used by a Amazon Q Business application.
|
|
174
178
|
:param personalization_configuration: Configuration information about chat response personalization. For more information, see `Personalizing chat responses <https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/personalizing-chat-responses.html>`_ .
|
|
175
179
|
:param q_apps_configuration: Configuration information about Amazon Q Apps.
|
|
180
|
+
:param quick_sight_configuration:
|
|
176
181
|
:param role_arn: The Amazon Resource Name (ARN) of an IAM role with permissions to access your Amazon CloudWatch logs and metrics. If this property is not specified, Amazon Q Business will create a `service linked role (SLR) <https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/using-service-linked-roles.html#slr-permissions>`_ and use it as the application's role.
|
|
177
182
|
:param tags: A list of key-value pairs that identify or categorize your Amazon Q Business application. You can also use tags to help control access to the application. Tag keys and values can consist of Unicode letters, digits, white space, and any of the following symbols: _ . : / = + -
|
|
178
183
|
'''
|
|
@@ -192,6 +197,7 @@ class CfnApplication(
|
|
|
192
197
|
identity_type=identity_type,
|
|
193
198
|
personalization_configuration=personalization_configuration,
|
|
194
199
|
q_apps_configuration=q_apps_configuration,
|
|
200
|
+
quick_sight_configuration=quick_sight_configuration,
|
|
195
201
|
role_arn=role_arn,
|
|
196
202
|
tags=tags,
|
|
197
203
|
)
|
|
@@ -468,6 +474,23 @@ class CfnApplication(
|
|
|
468
474
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
469
475
|
jsii.set(self, "qAppsConfiguration", value) # pyright: ignore[reportArgumentType]
|
|
470
476
|
|
|
477
|
+
@builtins.property
|
|
478
|
+
@jsii.member(jsii_name="quickSightConfiguration")
|
|
479
|
+
def quick_sight_configuration(
|
|
480
|
+
self,
|
|
481
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnApplication.QuickSightConfigurationProperty"]]:
|
|
482
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnApplication.QuickSightConfigurationProperty"]], jsii.get(self, "quickSightConfiguration"))
|
|
483
|
+
|
|
484
|
+
@quick_sight_configuration.setter
|
|
485
|
+
def quick_sight_configuration(
|
|
486
|
+
self,
|
|
487
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnApplication.QuickSightConfigurationProperty"]],
|
|
488
|
+
) -> None:
|
|
489
|
+
if __debug__:
|
|
490
|
+
type_hints = typing.get_type_hints(_typecheckingstub__289094e649887b05a6dfd8fdfb09369f7df0be2c7c7ede77435c953ed16f9d97)
|
|
491
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
492
|
+
jsii.set(self, "quickSightConfiguration", value) # pyright: ignore[reportArgumentType]
|
|
493
|
+
|
|
471
494
|
@builtins.property
|
|
472
495
|
@jsii.member(jsii_name="roleArn")
|
|
473
496
|
def role_arn(self) -> typing.Optional[builtins.str]:
|
|
@@ -785,6 +808,56 @@ class CfnApplication(
|
|
|
785
808
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
786
809
|
)
|
|
787
810
|
|
|
811
|
+
@jsii.data_type(
|
|
812
|
+
jsii_type="aws-cdk-lib.aws_qbusiness.CfnApplication.QuickSightConfigurationProperty",
|
|
813
|
+
jsii_struct_bases=[],
|
|
814
|
+
name_mapping={"client_namespace": "clientNamespace"},
|
|
815
|
+
)
|
|
816
|
+
class QuickSightConfigurationProperty:
|
|
817
|
+
def __init__(self, *, client_namespace: builtins.str) -> None:
|
|
818
|
+
'''
|
|
819
|
+
:param client_namespace:
|
|
820
|
+
|
|
821
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-application-quicksightconfiguration.html
|
|
822
|
+
:exampleMetadata: fixture=_generated
|
|
823
|
+
|
|
824
|
+
Example::
|
|
825
|
+
|
|
826
|
+
# The code below shows an example of how to instantiate this type.
|
|
827
|
+
# The values are placeholders you should change.
|
|
828
|
+
from aws_cdk import aws_qbusiness as qbusiness
|
|
829
|
+
|
|
830
|
+
quick_sight_configuration_property = qbusiness.CfnApplication.QuickSightConfigurationProperty(
|
|
831
|
+
client_namespace="clientNamespace"
|
|
832
|
+
)
|
|
833
|
+
'''
|
|
834
|
+
if __debug__:
|
|
835
|
+
type_hints = typing.get_type_hints(_typecheckingstub__2a553c98b052035d7e975a15cd8521cc9a275d10bf22d783650de9883bdd715a)
|
|
836
|
+
check_type(argname="argument client_namespace", value=client_namespace, expected_type=type_hints["client_namespace"])
|
|
837
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
838
|
+
"client_namespace": client_namespace,
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
@builtins.property
|
|
842
|
+
def client_namespace(self) -> builtins.str:
|
|
843
|
+
'''
|
|
844
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-application-quicksightconfiguration.html#cfn-qbusiness-application-quicksightconfiguration-clientnamespace
|
|
845
|
+
'''
|
|
846
|
+
result = self._values.get("client_namespace")
|
|
847
|
+
assert result is not None, "Required property 'client_namespace' is missing"
|
|
848
|
+
return typing.cast(builtins.str, result)
|
|
849
|
+
|
|
850
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
851
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
852
|
+
|
|
853
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
854
|
+
return not (rhs == self)
|
|
855
|
+
|
|
856
|
+
def __repr__(self) -> str:
|
|
857
|
+
return "QuickSightConfigurationProperty(%s)" % ", ".join(
|
|
858
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
859
|
+
)
|
|
860
|
+
|
|
788
861
|
|
|
789
862
|
@jsii.data_type(
|
|
790
863
|
jsii_type="aws-cdk-lib.aws_qbusiness.CfnApplicationProps",
|
|
@@ -801,6 +874,7 @@ class CfnApplication(
|
|
|
801
874
|
"identity_type": "identityType",
|
|
802
875
|
"personalization_configuration": "personalizationConfiguration",
|
|
803
876
|
"q_apps_configuration": "qAppsConfiguration",
|
|
877
|
+
"quick_sight_configuration": "quickSightConfiguration",
|
|
804
878
|
"role_arn": "roleArn",
|
|
805
879
|
"tags": "tags",
|
|
806
880
|
},
|
|
@@ -820,6 +894,7 @@ class CfnApplicationProps:
|
|
|
820
894
|
identity_type: typing.Optional[builtins.str] = None,
|
|
821
895
|
personalization_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnApplication.PersonalizationConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
822
896
|
q_apps_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnApplication.QAppsConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
897
|
+
quick_sight_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnApplication.QuickSightConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
823
898
|
role_arn: typing.Optional[builtins.str] = None,
|
|
824
899
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
825
900
|
) -> None:
|
|
@@ -836,6 +911,7 @@ class CfnApplicationProps:
|
|
|
836
911
|
:param identity_type: The authentication type being used by a Amazon Q Business application.
|
|
837
912
|
:param personalization_configuration: Configuration information about chat response personalization. For more information, see `Personalizing chat responses <https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/personalizing-chat-responses.html>`_ .
|
|
838
913
|
:param q_apps_configuration: Configuration information about Amazon Q Apps.
|
|
914
|
+
:param quick_sight_configuration:
|
|
839
915
|
:param role_arn: The Amazon Resource Name (ARN) of an IAM role with permissions to access your Amazon CloudWatch logs and metrics. If this property is not specified, Amazon Q Business will create a `service linked role (SLR) <https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/using-service-linked-roles.html#slr-permissions>`_ and use it as the application's role.
|
|
840
916
|
:param tags: A list of key-value pairs that identify or categorize your Amazon Q Business application. You can also use tags to help control access to the application. Tag keys and values can consist of Unicode letters, digits, white space, and any of the following symbols: _ . : / = + -
|
|
841
917
|
|
|
@@ -875,6 +951,9 @@ class CfnApplicationProps:
|
|
|
875
951
|
q_apps_configuration=qbusiness.CfnApplication.QAppsConfigurationProperty(
|
|
876
952
|
q_apps_control_mode="qAppsControlMode"
|
|
877
953
|
),
|
|
954
|
+
quick_sight_configuration=qbusiness.CfnApplication.QuickSightConfigurationProperty(
|
|
955
|
+
client_namespace="clientNamespace"
|
|
956
|
+
),
|
|
878
957
|
role_arn="roleArn",
|
|
879
958
|
tags=[CfnTag(
|
|
880
959
|
key="key",
|
|
@@ -895,6 +974,7 @@ class CfnApplicationProps:
|
|
|
895
974
|
check_type(argname="argument identity_type", value=identity_type, expected_type=type_hints["identity_type"])
|
|
896
975
|
check_type(argname="argument personalization_configuration", value=personalization_configuration, expected_type=type_hints["personalization_configuration"])
|
|
897
976
|
check_type(argname="argument q_apps_configuration", value=q_apps_configuration, expected_type=type_hints["q_apps_configuration"])
|
|
977
|
+
check_type(argname="argument quick_sight_configuration", value=quick_sight_configuration, expected_type=type_hints["quick_sight_configuration"])
|
|
898
978
|
check_type(argname="argument role_arn", value=role_arn, expected_type=type_hints["role_arn"])
|
|
899
979
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
900
980
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
@@ -920,6 +1000,8 @@ class CfnApplicationProps:
|
|
|
920
1000
|
self._values["personalization_configuration"] = personalization_configuration
|
|
921
1001
|
if q_apps_configuration is not None:
|
|
922
1002
|
self._values["q_apps_configuration"] = q_apps_configuration
|
|
1003
|
+
if quick_sight_configuration is not None:
|
|
1004
|
+
self._values["quick_sight_configuration"] = quick_sight_configuration
|
|
923
1005
|
if role_arn is not None:
|
|
924
1006
|
self._values["role_arn"] = role_arn
|
|
925
1007
|
if tags is not None:
|
|
@@ -1030,35 +1112,1249 @@ class CfnApplicationProps:
|
|
|
1030
1112
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnApplication.PersonalizationConfigurationProperty]], result)
|
|
1031
1113
|
|
|
1032
1114
|
@builtins.property
|
|
1033
|
-
def q_apps_configuration(
|
|
1115
|
+
def q_apps_configuration(
|
|
1116
|
+
self,
|
|
1117
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnApplication.QAppsConfigurationProperty]]:
|
|
1118
|
+
'''Configuration information about Amazon Q Apps.
|
|
1119
|
+
|
|
1120
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-application.html#cfn-qbusiness-application-qappsconfiguration
|
|
1121
|
+
'''
|
|
1122
|
+
result = self._values.get("q_apps_configuration")
|
|
1123
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnApplication.QAppsConfigurationProperty]], result)
|
|
1124
|
+
|
|
1125
|
+
@builtins.property
|
|
1126
|
+
def quick_sight_configuration(
|
|
1127
|
+
self,
|
|
1128
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnApplication.QuickSightConfigurationProperty]]:
|
|
1129
|
+
'''
|
|
1130
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-application.html#cfn-qbusiness-application-quicksightconfiguration
|
|
1131
|
+
'''
|
|
1132
|
+
result = self._values.get("quick_sight_configuration")
|
|
1133
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnApplication.QuickSightConfigurationProperty]], result)
|
|
1134
|
+
|
|
1135
|
+
@builtins.property
|
|
1136
|
+
def role_arn(self) -> typing.Optional[builtins.str]:
|
|
1137
|
+
'''The Amazon Resource Name (ARN) of an IAM role with permissions to access your Amazon CloudWatch logs and metrics.
|
|
1138
|
+
|
|
1139
|
+
If this property is not specified, Amazon Q Business will create a `service linked role (SLR) <https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/using-service-linked-roles.html#slr-permissions>`_ and use it as the application's role.
|
|
1140
|
+
|
|
1141
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-application.html#cfn-qbusiness-application-rolearn
|
|
1142
|
+
'''
|
|
1143
|
+
result = self._values.get("role_arn")
|
|
1144
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1145
|
+
|
|
1146
|
+
@builtins.property
|
|
1147
|
+
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
1148
|
+
'''A list of key-value pairs that identify or categorize your Amazon Q Business application.
|
|
1149
|
+
|
|
1150
|
+
You can also use tags to help control access to the application. Tag keys and values can consist of Unicode letters, digits, white space, and any of the following symbols: _ . : / = + -
|
|
1151
|
+
|
|
1152
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-application.html#cfn-qbusiness-application-tags
|
|
1153
|
+
:: .
|
|
1154
|
+
'''
|
|
1155
|
+
result = self._values.get("tags")
|
|
1156
|
+
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], result)
|
|
1157
|
+
|
|
1158
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
1159
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
1160
|
+
|
|
1161
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
1162
|
+
return not (rhs == self)
|
|
1163
|
+
|
|
1164
|
+
def __repr__(self) -> str:
|
|
1165
|
+
return "CfnApplicationProps(%s)" % ", ".join(
|
|
1166
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
1167
|
+
)
|
|
1168
|
+
|
|
1169
|
+
|
|
1170
|
+
@jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
|
|
1171
|
+
class CfnDataAccessor(
|
|
1172
|
+
_CfnResource_9df397a6,
|
|
1173
|
+
metaclass=jsii.JSIIMeta,
|
|
1174
|
+
jsii_type="aws-cdk-lib.aws_qbusiness.CfnDataAccessor",
|
|
1175
|
+
):
|
|
1176
|
+
'''Definition of AWS::QBusiness::DataAccessor Resource Type.
|
|
1177
|
+
|
|
1178
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-dataaccessor.html
|
|
1179
|
+
:cloudformationResource: AWS::QBusiness::DataAccessor
|
|
1180
|
+
:exampleMetadata: fixture=_generated
|
|
1181
|
+
|
|
1182
|
+
Example::
|
|
1183
|
+
|
|
1184
|
+
# The code below shows an example of how to instantiate this type.
|
|
1185
|
+
# The values are placeholders you should change.
|
|
1186
|
+
from aws_cdk import aws_qbusiness as qbusiness
|
|
1187
|
+
|
|
1188
|
+
# attribute_filter_property_: qbusiness.CfnDataAccessor.AttributeFilterProperty
|
|
1189
|
+
|
|
1190
|
+
cfn_data_accessor = qbusiness.CfnDataAccessor(self, "MyCfnDataAccessor",
|
|
1191
|
+
action_configurations=[qbusiness.CfnDataAccessor.ActionConfigurationProperty(
|
|
1192
|
+
action="action",
|
|
1193
|
+
|
|
1194
|
+
# the properties below are optional
|
|
1195
|
+
filter_configuration=qbusiness.CfnDataAccessor.ActionFilterConfigurationProperty(
|
|
1196
|
+
document_attribute_filter=qbusiness.CfnDataAccessor.AttributeFilterProperty(
|
|
1197
|
+
and_all_filters=[attribute_filter_property_],
|
|
1198
|
+
contains_all=qbusiness.CfnDataAccessor.DocumentAttributeProperty(
|
|
1199
|
+
name="name",
|
|
1200
|
+
value=qbusiness.CfnDataAccessor.DocumentAttributeValueProperty(
|
|
1201
|
+
date_value="dateValue",
|
|
1202
|
+
long_value=123,
|
|
1203
|
+
string_list_value=["stringListValue"],
|
|
1204
|
+
string_value="stringValue"
|
|
1205
|
+
)
|
|
1206
|
+
),
|
|
1207
|
+
contains_any=qbusiness.CfnDataAccessor.DocumentAttributeProperty(
|
|
1208
|
+
name="name",
|
|
1209
|
+
value=qbusiness.CfnDataAccessor.DocumentAttributeValueProperty(
|
|
1210
|
+
date_value="dateValue",
|
|
1211
|
+
long_value=123,
|
|
1212
|
+
string_list_value=["stringListValue"],
|
|
1213
|
+
string_value="stringValue"
|
|
1214
|
+
)
|
|
1215
|
+
),
|
|
1216
|
+
equals_to=qbusiness.CfnDataAccessor.DocumentAttributeProperty(
|
|
1217
|
+
name="name",
|
|
1218
|
+
value=qbusiness.CfnDataAccessor.DocumentAttributeValueProperty(
|
|
1219
|
+
date_value="dateValue",
|
|
1220
|
+
long_value=123,
|
|
1221
|
+
string_list_value=["stringListValue"],
|
|
1222
|
+
string_value="stringValue"
|
|
1223
|
+
)
|
|
1224
|
+
),
|
|
1225
|
+
greater_than=qbusiness.CfnDataAccessor.DocumentAttributeProperty(
|
|
1226
|
+
name="name",
|
|
1227
|
+
value=qbusiness.CfnDataAccessor.DocumentAttributeValueProperty(
|
|
1228
|
+
date_value="dateValue",
|
|
1229
|
+
long_value=123,
|
|
1230
|
+
string_list_value=["stringListValue"],
|
|
1231
|
+
string_value="stringValue"
|
|
1232
|
+
)
|
|
1233
|
+
),
|
|
1234
|
+
greater_than_or_equals=qbusiness.CfnDataAccessor.DocumentAttributeProperty(
|
|
1235
|
+
name="name",
|
|
1236
|
+
value=qbusiness.CfnDataAccessor.DocumentAttributeValueProperty(
|
|
1237
|
+
date_value="dateValue",
|
|
1238
|
+
long_value=123,
|
|
1239
|
+
string_list_value=["stringListValue"],
|
|
1240
|
+
string_value="stringValue"
|
|
1241
|
+
)
|
|
1242
|
+
),
|
|
1243
|
+
less_than=qbusiness.CfnDataAccessor.DocumentAttributeProperty(
|
|
1244
|
+
name="name",
|
|
1245
|
+
value=qbusiness.CfnDataAccessor.DocumentAttributeValueProperty(
|
|
1246
|
+
date_value="dateValue",
|
|
1247
|
+
long_value=123,
|
|
1248
|
+
string_list_value=["stringListValue"],
|
|
1249
|
+
string_value="stringValue"
|
|
1250
|
+
)
|
|
1251
|
+
),
|
|
1252
|
+
less_than_or_equals=qbusiness.CfnDataAccessor.DocumentAttributeProperty(
|
|
1253
|
+
name="name",
|
|
1254
|
+
value=qbusiness.CfnDataAccessor.DocumentAttributeValueProperty(
|
|
1255
|
+
date_value="dateValue",
|
|
1256
|
+
long_value=123,
|
|
1257
|
+
string_list_value=["stringListValue"],
|
|
1258
|
+
string_value="stringValue"
|
|
1259
|
+
)
|
|
1260
|
+
),
|
|
1261
|
+
not_filter=attribute_filter_property_,
|
|
1262
|
+
or_all_filters=[attribute_filter_property_]
|
|
1263
|
+
)
|
|
1264
|
+
)
|
|
1265
|
+
)],
|
|
1266
|
+
display_name="displayName",
|
|
1267
|
+
principal="principal",
|
|
1268
|
+
|
|
1269
|
+
# the properties below are optional
|
|
1270
|
+
application_id="applicationId",
|
|
1271
|
+
tags=[CfnTag(
|
|
1272
|
+
key="key",
|
|
1273
|
+
value="value"
|
|
1274
|
+
)]
|
|
1275
|
+
)
|
|
1276
|
+
'''
|
|
1277
|
+
|
|
1278
|
+
def __init__(
|
|
1279
|
+
self,
|
|
1280
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
1281
|
+
id: builtins.str,
|
|
1282
|
+
*,
|
|
1283
|
+
action_configurations: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAccessor.ActionConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]]],
|
|
1284
|
+
display_name: builtins.str,
|
|
1285
|
+
principal: builtins.str,
|
|
1286
|
+
application_id: typing.Optional[builtins.str] = None,
|
|
1287
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1288
|
+
) -> None:
|
|
1289
|
+
'''
|
|
1290
|
+
:param scope: Scope in which this resource is defined.
|
|
1291
|
+
:param id: Construct identifier for this resource (unique in its scope).
|
|
1292
|
+
:param action_configurations:
|
|
1293
|
+
:param display_name:
|
|
1294
|
+
:param principal:
|
|
1295
|
+
:param application_id:
|
|
1296
|
+
:param tags:
|
|
1297
|
+
'''
|
|
1298
|
+
if __debug__:
|
|
1299
|
+
type_hints = typing.get_type_hints(_typecheckingstub__32b7ecf69912e25edcd2354b3e0497931ea6bf042b1aabc881c8677d2f9be633)
|
|
1300
|
+
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
1301
|
+
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
1302
|
+
props = CfnDataAccessorProps(
|
|
1303
|
+
action_configurations=action_configurations,
|
|
1304
|
+
display_name=display_name,
|
|
1305
|
+
principal=principal,
|
|
1306
|
+
application_id=application_id,
|
|
1307
|
+
tags=tags,
|
|
1308
|
+
)
|
|
1309
|
+
|
|
1310
|
+
jsii.create(self.__class__, self, [scope, id, props])
|
|
1311
|
+
|
|
1312
|
+
@jsii.member(jsii_name="inspect")
|
|
1313
|
+
def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
|
|
1314
|
+
'''Examines the CloudFormation resource and discloses attributes.
|
|
1315
|
+
|
|
1316
|
+
:param inspector: tree inspector to collect and process attributes.
|
|
1317
|
+
'''
|
|
1318
|
+
if __debug__:
|
|
1319
|
+
type_hints = typing.get_type_hints(_typecheckingstub__ff90302eca1e0f24b3ab926881bc0099a551d74c3a71debb214f222b63ff0ee4)
|
|
1320
|
+
check_type(argname="argument inspector", value=inspector, expected_type=type_hints["inspector"])
|
|
1321
|
+
return typing.cast(None, jsii.invoke(self, "inspect", [inspector]))
|
|
1322
|
+
|
|
1323
|
+
@jsii.member(jsii_name="renderProperties")
|
|
1324
|
+
def _render_properties(
|
|
1325
|
+
self,
|
|
1326
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
1327
|
+
) -> typing.Mapping[builtins.str, typing.Any]:
|
|
1328
|
+
'''
|
|
1329
|
+
:param props: -
|
|
1330
|
+
'''
|
|
1331
|
+
if __debug__:
|
|
1332
|
+
type_hints = typing.get_type_hints(_typecheckingstub__75e79c605177a09c4ca1c1253b30113e8f2b7e023dafa75d6583c9b993c3a905)
|
|
1333
|
+
check_type(argname="argument props", value=props, expected_type=type_hints["props"])
|
|
1334
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "renderProperties", [props]))
|
|
1335
|
+
|
|
1336
|
+
@jsii.python.classproperty
|
|
1337
|
+
@jsii.member(jsii_name="CFN_RESOURCE_TYPE_NAME")
|
|
1338
|
+
def CFN_RESOURCE_TYPE_NAME(cls) -> builtins.str:
|
|
1339
|
+
'''The CloudFormation resource type name for this resource class.'''
|
|
1340
|
+
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
1341
|
+
|
|
1342
|
+
@builtins.property
|
|
1343
|
+
@jsii.member(jsii_name="attrCreatedAt")
|
|
1344
|
+
def attr_created_at(self) -> builtins.str:
|
|
1345
|
+
'''
|
|
1346
|
+
:cloudformationAttribute: CreatedAt
|
|
1347
|
+
'''
|
|
1348
|
+
return typing.cast(builtins.str, jsii.get(self, "attrCreatedAt"))
|
|
1349
|
+
|
|
1350
|
+
@builtins.property
|
|
1351
|
+
@jsii.member(jsii_name="attrDataAccessorArn")
|
|
1352
|
+
def attr_data_accessor_arn(self) -> builtins.str:
|
|
1353
|
+
'''
|
|
1354
|
+
:cloudformationAttribute: DataAccessorArn
|
|
1355
|
+
'''
|
|
1356
|
+
return typing.cast(builtins.str, jsii.get(self, "attrDataAccessorArn"))
|
|
1357
|
+
|
|
1358
|
+
@builtins.property
|
|
1359
|
+
@jsii.member(jsii_name="attrDataAccessorId")
|
|
1360
|
+
def attr_data_accessor_id(self) -> builtins.str:
|
|
1361
|
+
'''
|
|
1362
|
+
:cloudformationAttribute: DataAccessorId
|
|
1363
|
+
'''
|
|
1364
|
+
return typing.cast(builtins.str, jsii.get(self, "attrDataAccessorId"))
|
|
1365
|
+
|
|
1366
|
+
@builtins.property
|
|
1367
|
+
@jsii.member(jsii_name="attrIdcApplicationArn")
|
|
1368
|
+
def attr_idc_application_arn(self) -> builtins.str:
|
|
1369
|
+
'''
|
|
1370
|
+
:cloudformationAttribute: IdcApplicationArn
|
|
1371
|
+
'''
|
|
1372
|
+
return typing.cast(builtins.str, jsii.get(self, "attrIdcApplicationArn"))
|
|
1373
|
+
|
|
1374
|
+
@builtins.property
|
|
1375
|
+
@jsii.member(jsii_name="attrUpdatedAt")
|
|
1376
|
+
def attr_updated_at(self) -> builtins.str:
|
|
1377
|
+
'''
|
|
1378
|
+
:cloudformationAttribute: UpdatedAt
|
|
1379
|
+
'''
|
|
1380
|
+
return typing.cast(builtins.str, jsii.get(self, "attrUpdatedAt"))
|
|
1381
|
+
|
|
1382
|
+
@builtins.property
|
|
1383
|
+
@jsii.member(jsii_name="cdkTagManager")
|
|
1384
|
+
def cdk_tag_manager(self) -> _TagManager_0a598cb3:
|
|
1385
|
+
'''Tag Manager which manages the tags for this resource.'''
|
|
1386
|
+
return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
|
|
1387
|
+
|
|
1388
|
+
@builtins.property
|
|
1389
|
+
@jsii.member(jsii_name="cfnProperties")
|
|
1390
|
+
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
1391
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
|
|
1392
|
+
|
|
1393
|
+
@builtins.property
|
|
1394
|
+
@jsii.member(jsii_name="actionConfigurations")
|
|
1395
|
+
def action_configurations(
|
|
1396
|
+
self,
|
|
1397
|
+
) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDataAccessor.ActionConfigurationProperty"]]]:
|
|
1398
|
+
return typing.cast(typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDataAccessor.ActionConfigurationProperty"]]], jsii.get(self, "actionConfigurations"))
|
|
1399
|
+
|
|
1400
|
+
@action_configurations.setter
|
|
1401
|
+
def action_configurations(
|
|
1402
|
+
self,
|
|
1403
|
+
value: typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDataAccessor.ActionConfigurationProperty"]]],
|
|
1404
|
+
) -> None:
|
|
1405
|
+
if __debug__:
|
|
1406
|
+
type_hints = typing.get_type_hints(_typecheckingstub__a27c05d04ed77ea1630a00c4575933bd29a7548e12cd5406b1a703d094f618f7)
|
|
1407
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1408
|
+
jsii.set(self, "actionConfigurations", value) # pyright: ignore[reportArgumentType]
|
|
1409
|
+
|
|
1410
|
+
@builtins.property
|
|
1411
|
+
@jsii.member(jsii_name="displayName")
|
|
1412
|
+
def display_name(self) -> builtins.str:
|
|
1413
|
+
return typing.cast(builtins.str, jsii.get(self, "displayName"))
|
|
1414
|
+
|
|
1415
|
+
@display_name.setter
|
|
1416
|
+
def display_name(self, value: builtins.str) -> None:
|
|
1417
|
+
if __debug__:
|
|
1418
|
+
type_hints = typing.get_type_hints(_typecheckingstub__d24d4191af1a9b63f7ef66ae53cd5e78c9587db0b3d4e54adc5863415cdec9f0)
|
|
1419
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1420
|
+
jsii.set(self, "displayName", value) # pyright: ignore[reportArgumentType]
|
|
1421
|
+
|
|
1422
|
+
@builtins.property
|
|
1423
|
+
@jsii.member(jsii_name="principal")
|
|
1424
|
+
def principal(self) -> builtins.str:
|
|
1425
|
+
return typing.cast(builtins.str, jsii.get(self, "principal"))
|
|
1426
|
+
|
|
1427
|
+
@principal.setter
|
|
1428
|
+
def principal(self, value: builtins.str) -> None:
|
|
1429
|
+
if __debug__:
|
|
1430
|
+
type_hints = typing.get_type_hints(_typecheckingstub__fd64ede16f385d2990fa12fa363564c55f359fed279a75365018e42cd6e63fff)
|
|
1431
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1432
|
+
jsii.set(self, "principal", value) # pyright: ignore[reportArgumentType]
|
|
1433
|
+
|
|
1434
|
+
@builtins.property
|
|
1435
|
+
@jsii.member(jsii_name="applicationId")
|
|
1436
|
+
def application_id(self) -> typing.Optional[builtins.str]:
|
|
1437
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "applicationId"))
|
|
1438
|
+
|
|
1439
|
+
@application_id.setter
|
|
1440
|
+
def application_id(self, value: typing.Optional[builtins.str]) -> None:
|
|
1441
|
+
if __debug__:
|
|
1442
|
+
type_hints = typing.get_type_hints(_typecheckingstub__d51b8675a76ff8aa3cd324d2a65da776f4afb1d4600f74839c262998a87adb06)
|
|
1443
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1444
|
+
jsii.set(self, "applicationId", value) # pyright: ignore[reportArgumentType]
|
|
1445
|
+
|
|
1446
|
+
@builtins.property
|
|
1447
|
+
@jsii.member(jsii_name="tags")
|
|
1448
|
+
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
1449
|
+
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
|
|
1450
|
+
|
|
1451
|
+
@tags.setter
|
|
1452
|
+
def tags(self, value: typing.Optional[typing.List[_CfnTag_f6864754]]) -> None:
|
|
1453
|
+
if __debug__:
|
|
1454
|
+
type_hints = typing.get_type_hints(_typecheckingstub__17fcd903858daed5111fdf34ce66e12720cfa6fd9e1712eb5744a4b8c06fb1fe)
|
|
1455
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1456
|
+
jsii.set(self, "tags", value) # pyright: ignore[reportArgumentType]
|
|
1457
|
+
|
|
1458
|
+
@jsii.data_type(
|
|
1459
|
+
jsii_type="aws-cdk-lib.aws_qbusiness.CfnDataAccessor.ActionConfigurationProperty",
|
|
1460
|
+
jsii_struct_bases=[],
|
|
1461
|
+
name_mapping={
|
|
1462
|
+
"action": "action",
|
|
1463
|
+
"filter_configuration": "filterConfiguration",
|
|
1464
|
+
},
|
|
1465
|
+
)
|
|
1466
|
+
class ActionConfigurationProperty:
|
|
1467
|
+
def __init__(
|
|
1468
|
+
self,
|
|
1469
|
+
*,
|
|
1470
|
+
action: builtins.str,
|
|
1471
|
+
filter_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAccessor.ActionFilterConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1472
|
+
) -> None:
|
|
1473
|
+
'''
|
|
1474
|
+
:param action:
|
|
1475
|
+
:param filter_configuration:
|
|
1476
|
+
|
|
1477
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-dataaccessor-actionconfiguration.html
|
|
1478
|
+
:exampleMetadata: fixture=_generated
|
|
1479
|
+
|
|
1480
|
+
Example::
|
|
1481
|
+
|
|
1482
|
+
# The code below shows an example of how to instantiate this type.
|
|
1483
|
+
# The values are placeholders you should change.
|
|
1484
|
+
from aws_cdk import aws_qbusiness as qbusiness
|
|
1485
|
+
|
|
1486
|
+
# attribute_filter_property_: qbusiness.CfnDataAccessor.AttributeFilterProperty
|
|
1487
|
+
|
|
1488
|
+
action_configuration_property = qbusiness.CfnDataAccessor.ActionConfigurationProperty(
|
|
1489
|
+
action="action",
|
|
1490
|
+
|
|
1491
|
+
# the properties below are optional
|
|
1492
|
+
filter_configuration=qbusiness.CfnDataAccessor.ActionFilterConfigurationProperty(
|
|
1493
|
+
document_attribute_filter=qbusiness.CfnDataAccessor.AttributeFilterProperty(
|
|
1494
|
+
and_all_filters=[attribute_filter_property_],
|
|
1495
|
+
contains_all=qbusiness.CfnDataAccessor.DocumentAttributeProperty(
|
|
1496
|
+
name="name",
|
|
1497
|
+
value=qbusiness.CfnDataAccessor.DocumentAttributeValueProperty(
|
|
1498
|
+
date_value="dateValue",
|
|
1499
|
+
long_value=123,
|
|
1500
|
+
string_list_value=["stringListValue"],
|
|
1501
|
+
string_value="stringValue"
|
|
1502
|
+
)
|
|
1503
|
+
),
|
|
1504
|
+
contains_any=qbusiness.CfnDataAccessor.DocumentAttributeProperty(
|
|
1505
|
+
name="name",
|
|
1506
|
+
value=qbusiness.CfnDataAccessor.DocumentAttributeValueProperty(
|
|
1507
|
+
date_value="dateValue",
|
|
1508
|
+
long_value=123,
|
|
1509
|
+
string_list_value=["stringListValue"],
|
|
1510
|
+
string_value="stringValue"
|
|
1511
|
+
)
|
|
1512
|
+
),
|
|
1513
|
+
equals_to=qbusiness.CfnDataAccessor.DocumentAttributeProperty(
|
|
1514
|
+
name="name",
|
|
1515
|
+
value=qbusiness.CfnDataAccessor.DocumentAttributeValueProperty(
|
|
1516
|
+
date_value="dateValue",
|
|
1517
|
+
long_value=123,
|
|
1518
|
+
string_list_value=["stringListValue"],
|
|
1519
|
+
string_value="stringValue"
|
|
1520
|
+
)
|
|
1521
|
+
),
|
|
1522
|
+
greater_than=qbusiness.CfnDataAccessor.DocumentAttributeProperty(
|
|
1523
|
+
name="name",
|
|
1524
|
+
value=qbusiness.CfnDataAccessor.DocumentAttributeValueProperty(
|
|
1525
|
+
date_value="dateValue",
|
|
1526
|
+
long_value=123,
|
|
1527
|
+
string_list_value=["stringListValue"],
|
|
1528
|
+
string_value="stringValue"
|
|
1529
|
+
)
|
|
1530
|
+
),
|
|
1531
|
+
greater_than_or_equals=qbusiness.CfnDataAccessor.DocumentAttributeProperty(
|
|
1532
|
+
name="name",
|
|
1533
|
+
value=qbusiness.CfnDataAccessor.DocumentAttributeValueProperty(
|
|
1534
|
+
date_value="dateValue",
|
|
1535
|
+
long_value=123,
|
|
1536
|
+
string_list_value=["stringListValue"],
|
|
1537
|
+
string_value="stringValue"
|
|
1538
|
+
)
|
|
1539
|
+
),
|
|
1540
|
+
less_than=qbusiness.CfnDataAccessor.DocumentAttributeProperty(
|
|
1541
|
+
name="name",
|
|
1542
|
+
value=qbusiness.CfnDataAccessor.DocumentAttributeValueProperty(
|
|
1543
|
+
date_value="dateValue",
|
|
1544
|
+
long_value=123,
|
|
1545
|
+
string_list_value=["stringListValue"],
|
|
1546
|
+
string_value="stringValue"
|
|
1547
|
+
)
|
|
1548
|
+
),
|
|
1549
|
+
less_than_or_equals=qbusiness.CfnDataAccessor.DocumentAttributeProperty(
|
|
1550
|
+
name="name",
|
|
1551
|
+
value=qbusiness.CfnDataAccessor.DocumentAttributeValueProperty(
|
|
1552
|
+
date_value="dateValue",
|
|
1553
|
+
long_value=123,
|
|
1554
|
+
string_list_value=["stringListValue"],
|
|
1555
|
+
string_value="stringValue"
|
|
1556
|
+
)
|
|
1557
|
+
),
|
|
1558
|
+
not_filter=attribute_filter_property_,
|
|
1559
|
+
or_all_filters=[attribute_filter_property_]
|
|
1560
|
+
)
|
|
1561
|
+
)
|
|
1562
|
+
)
|
|
1563
|
+
'''
|
|
1564
|
+
if __debug__:
|
|
1565
|
+
type_hints = typing.get_type_hints(_typecheckingstub__070f31842bf80fdbf737bccdee5b0121eca70d5c6c0d69c119f4d283e3dc8f0f)
|
|
1566
|
+
check_type(argname="argument action", value=action, expected_type=type_hints["action"])
|
|
1567
|
+
check_type(argname="argument filter_configuration", value=filter_configuration, expected_type=type_hints["filter_configuration"])
|
|
1568
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
1569
|
+
"action": action,
|
|
1570
|
+
}
|
|
1571
|
+
if filter_configuration is not None:
|
|
1572
|
+
self._values["filter_configuration"] = filter_configuration
|
|
1573
|
+
|
|
1574
|
+
@builtins.property
|
|
1575
|
+
def action(self) -> builtins.str:
|
|
1576
|
+
'''
|
|
1577
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-dataaccessor-actionconfiguration.html#cfn-qbusiness-dataaccessor-actionconfiguration-action
|
|
1578
|
+
'''
|
|
1579
|
+
result = self._values.get("action")
|
|
1580
|
+
assert result is not None, "Required property 'action' is missing"
|
|
1581
|
+
return typing.cast(builtins.str, result)
|
|
1582
|
+
|
|
1583
|
+
@builtins.property
|
|
1584
|
+
def filter_configuration(
|
|
1585
|
+
self,
|
|
1586
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAccessor.ActionFilterConfigurationProperty"]]:
|
|
1587
|
+
'''
|
|
1588
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-dataaccessor-actionconfiguration.html#cfn-qbusiness-dataaccessor-actionconfiguration-filterconfiguration
|
|
1589
|
+
'''
|
|
1590
|
+
result = self._values.get("filter_configuration")
|
|
1591
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAccessor.ActionFilterConfigurationProperty"]], result)
|
|
1592
|
+
|
|
1593
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
1594
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
1595
|
+
|
|
1596
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
1597
|
+
return not (rhs == self)
|
|
1598
|
+
|
|
1599
|
+
def __repr__(self) -> str:
|
|
1600
|
+
return "ActionConfigurationProperty(%s)" % ", ".join(
|
|
1601
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
1602
|
+
)
|
|
1603
|
+
|
|
1604
|
+
@jsii.data_type(
|
|
1605
|
+
jsii_type="aws-cdk-lib.aws_qbusiness.CfnDataAccessor.ActionFilterConfigurationProperty",
|
|
1606
|
+
jsii_struct_bases=[],
|
|
1607
|
+
name_mapping={"document_attribute_filter": "documentAttributeFilter"},
|
|
1608
|
+
)
|
|
1609
|
+
class ActionFilterConfigurationProperty:
|
|
1610
|
+
def __init__(
|
|
1611
|
+
self,
|
|
1612
|
+
*,
|
|
1613
|
+
document_attribute_filter: typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAccessor.AttributeFilterProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
1614
|
+
) -> None:
|
|
1615
|
+
'''
|
|
1616
|
+
:param document_attribute_filter:
|
|
1617
|
+
|
|
1618
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-dataaccessor-actionfilterconfiguration.html
|
|
1619
|
+
:exampleMetadata: fixture=_generated
|
|
1620
|
+
|
|
1621
|
+
Example::
|
|
1622
|
+
|
|
1623
|
+
# The code below shows an example of how to instantiate this type.
|
|
1624
|
+
# The values are placeholders you should change.
|
|
1625
|
+
from aws_cdk import aws_qbusiness as qbusiness
|
|
1626
|
+
|
|
1627
|
+
# attribute_filter_property_: qbusiness.CfnDataAccessor.AttributeFilterProperty
|
|
1628
|
+
|
|
1629
|
+
action_filter_configuration_property = qbusiness.CfnDataAccessor.ActionFilterConfigurationProperty(
|
|
1630
|
+
document_attribute_filter=qbusiness.CfnDataAccessor.AttributeFilterProperty(
|
|
1631
|
+
and_all_filters=[attribute_filter_property_],
|
|
1632
|
+
contains_all=qbusiness.CfnDataAccessor.DocumentAttributeProperty(
|
|
1633
|
+
name="name",
|
|
1634
|
+
value=qbusiness.CfnDataAccessor.DocumentAttributeValueProperty(
|
|
1635
|
+
date_value="dateValue",
|
|
1636
|
+
long_value=123,
|
|
1637
|
+
string_list_value=["stringListValue"],
|
|
1638
|
+
string_value="stringValue"
|
|
1639
|
+
)
|
|
1640
|
+
),
|
|
1641
|
+
contains_any=qbusiness.CfnDataAccessor.DocumentAttributeProperty(
|
|
1642
|
+
name="name",
|
|
1643
|
+
value=qbusiness.CfnDataAccessor.DocumentAttributeValueProperty(
|
|
1644
|
+
date_value="dateValue",
|
|
1645
|
+
long_value=123,
|
|
1646
|
+
string_list_value=["stringListValue"],
|
|
1647
|
+
string_value="stringValue"
|
|
1648
|
+
)
|
|
1649
|
+
),
|
|
1650
|
+
equals_to=qbusiness.CfnDataAccessor.DocumentAttributeProperty(
|
|
1651
|
+
name="name",
|
|
1652
|
+
value=qbusiness.CfnDataAccessor.DocumentAttributeValueProperty(
|
|
1653
|
+
date_value="dateValue",
|
|
1654
|
+
long_value=123,
|
|
1655
|
+
string_list_value=["stringListValue"],
|
|
1656
|
+
string_value="stringValue"
|
|
1657
|
+
)
|
|
1658
|
+
),
|
|
1659
|
+
greater_than=qbusiness.CfnDataAccessor.DocumentAttributeProperty(
|
|
1660
|
+
name="name",
|
|
1661
|
+
value=qbusiness.CfnDataAccessor.DocumentAttributeValueProperty(
|
|
1662
|
+
date_value="dateValue",
|
|
1663
|
+
long_value=123,
|
|
1664
|
+
string_list_value=["stringListValue"],
|
|
1665
|
+
string_value="stringValue"
|
|
1666
|
+
)
|
|
1667
|
+
),
|
|
1668
|
+
greater_than_or_equals=qbusiness.CfnDataAccessor.DocumentAttributeProperty(
|
|
1669
|
+
name="name",
|
|
1670
|
+
value=qbusiness.CfnDataAccessor.DocumentAttributeValueProperty(
|
|
1671
|
+
date_value="dateValue",
|
|
1672
|
+
long_value=123,
|
|
1673
|
+
string_list_value=["stringListValue"],
|
|
1674
|
+
string_value="stringValue"
|
|
1675
|
+
)
|
|
1676
|
+
),
|
|
1677
|
+
less_than=qbusiness.CfnDataAccessor.DocumentAttributeProperty(
|
|
1678
|
+
name="name",
|
|
1679
|
+
value=qbusiness.CfnDataAccessor.DocumentAttributeValueProperty(
|
|
1680
|
+
date_value="dateValue",
|
|
1681
|
+
long_value=123,
|
|
1682
|
+
string_list_value=["stringListValue"],
|
|
1683
|
+
string_value="stringValue"
|
|
1684
|
+
)
|
|
1685
|
+
),
|
|
1686
|
+
less_than_or_equals=qbusiness.CfnDataAccessor.DocumentAttributeProperty(
|
|
1687
|
+
name="name",
|
|
1688
|
+
value=qbusiness.CfnDataAccessor.DocumentAttributeValueProperty(
|
|
1689
|
+
date_value="dateValue",
|
|
1690
|
+
long_value=123,
|
|
1691
|
+
string_list_value=["stringListValue"],
|
|
1692
|
+
string_value="stringValue"
|
|
1693
|
+
)
|
|
1694
|
+
),
|
|
1695
|
+
not_filter=attribute_filter_property_,
|
|
1696
|
+
or_all_filters=[attribute_filter_property_]
|
|
1697
|
+
)
|
|
1698
|
+
)
|
|
1699
|
+
'''
|
|
1700
|
+
if __debug__:
|
|
1701
|
+
type_hints = typing.get_type_hints(_typecheckingstub__d8fdd75aa62747889da79fe0b8ab1526d92b0a13360be1d371fd7ca34ee6894e)
|
|
1702
|
+
check_type(argname="argument document_attribute_filter", value=document_attribute_filter, expected_type=type_hints["document_attribute_filter"])
|
|
1703
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
1704
|
+
"document_attribute_filter": document_attribute_filter,
|
|
1705
|
+
}
|
|
1706
|
+
|
|
1707
|
+
@builtins.property
|
|
1708
|
+
def document_attribute_filter(
|
|
1709
|
+
self,
|
|
1710
|
+
) -> typing.Union[_IResolvable_da3f097b, "CfnDataAccessor.AttributeFilterProperty"]:
|
|
1711
|
+
'''
|
|
1712
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-dataaccessor-actionfilterconfiguration.html#cfn-qbusiness-dataaccessor-actionfilterconfiguration-documentattributefilter
|
|
1713
|
+
'''
|
|
1714
|
+
result = self._values.get("document_attribute_filter")
|
|
1715
|
+
assert result is not None, "Required property 'document_attribute_filter' is missing"
|
|
1716
|
+
return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnDataAccessor.AttributeFilterProperty"], result)
|
|
1717
|
+
|
|
1718
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
1719
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
1720
|
+
|
|
1721
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
1722
|
+
return not (rhs == self)
|
|
1723
|
+
|
|
1724
|
+
def __repr__(self) -> str:
|
|
1725
|
+
return "ActionFilterConfigurationProperty(%s)" % ", ".join(
|
|
1726
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
1727
|
+
)
|
|
1728
|
+
|
|
1729
|
+
@jsii.data_type(
|
|
1730
|
+
jsii_type="aws-cdk-lib.aws_qbusiness.CfnDataAccessor.AttributeFilterProperty",
|
|
1731
|
+
jsii_struct_bases=[],
|
|
1732
|
+
name_mapping={
|
|
1733
|
+
"and_all_filters": "andAllFilters",
|
|
1734
|
+
"contains_all": "containsAll",
|
|
1735
|
+
"contains_any": "containsAny",
|
|
1736
|
+
"equals_to": "equalsTo",
|
|
1737
|
+
"greater_than": "greaterThan",
|
|
1738
|
+
"greater_than_or_equals": "greaterThanOrEquals",
|
|
1739
|
+
"less_than": "lessThan",
|
|
1740
|
+
"less_than_or_equals": "lessThanOrEquals",
|
|
1741
|
+
"not_filter": "notFilter",
|
|
1742
|
+
"or_all_filters": "orAllFilters",
|
|
1743
|
+
},
|
|
1744
|
+
)
|
|
1745
|
+
class AttributeFilterProperty:
|
|
1746
|
+
def __init__(
|
|
1747
|
+
self,
|
|
1748
|
+
*,
|
|
1749
|
+
and_all_filters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAccessor.AttributeFilterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1750
|
+
contains_all: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAccessor.DocumentAttributeProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1751
|
+
contains_any: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAccessor.DocumentAttributeProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1752
|
+
equals_to: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAccessor.DocumentAttributeProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1753
|
+
greater_than: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAccessor.DocumentAttributeProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1754
|
+
greater_than_or_equals: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAccessor.DocumentAttributeProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1755
|
+
less_than: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAccessor.DocumentAttributeProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1756
|
+
less_than_or_equals: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAccessor.DocumentAttributeProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1757
|
+
not_filter: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAccessor.AttributeFilterProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1758
|
+
or_all_filters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAccessor.AttributeFilterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1759
|
+
) -> None:
|
|
1760
|
+
'''
|
|
1761
|
+
:param and_all_filters:
|
|
1762
|
+
:param contains_all:
|
|
1763
|
+
:param contains_any:
|
|
1764
|
+
:param equals_to:
|
|
1765
|
+
:param greater_than:
|
|
1766
|
+
:param greater_than_or_equals:
|
|
1767
|
+
:param less_than:
|
|
1768
|
+
:param less_than_or_equals:
|
|
1769
|
+
:param not_filter:
|
|
1770
|
+
:param or_all_filters:
|
|
1771
|
+
|
|
1772
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-dataaccessor-attributefilter.html
|
|
1773
|
+
:exampleMetadata: fixture=_generated
|
|
1774
|
+
|
|
1775
|
+
Example::
|
|
1776
|
+
|
|
1777
|
+
# The code below shows an example of how to instantiate this type.
|
|
1778
|
+
# The values are placeholders you should change.
|
|
1779
|
+
from aws_cdk import aws_qbusiness as qbusiness
|
|
1780
|
+
|
|
1781
|
+
# attribute_filter_property_: qbusiness.CfnDataAccessor.AttributeFilterProperty
|
|
1782
|
+
|
|
1783
|
+
attribute_filter_property = qbusiness.CfnDataAccessor.AttributeFilterProperty(
|
|
1784
|
+
and_all_filters=[attribute_filter_property_],
|
|
1785
|
+
contains_all=qbusiness.CfnDataAccessor.DocumentAttributeProperty(
|
|
1786
|
+
name="name",
|
|
1787
|
+
value=qbusiness.CfnDataAccessor.DocumentAttributeValueProperty(
|
|
1788
|
+
date_value="dateValue",
|
|
1789
|
+
long_value=123,
|
|
1790
|
+
string_list_value=["stringListValue"],
|
|
1791
|
+
string_value="stringValue"
|
|
1792
|
+
)
|
|
1793
|
+
),
|
|
1794
|
+
contains_any=qbusiness.CfnDataAccessor.DocumentAttributeProperty(
|
|
1795
|
+
name="name",
|
|
1796
|
+
value=qbusiness.CfnDataAccessor.DocumentAttributeValueProperty(
|
|
1797
|
+
date_value="dateValue",
|
|
1798
|
+
long_value=123,
|
|
1799
|
+
string_list_value=["stringListValue"],
|
|
1800
|
+
string_value="stringValue"
|
|
1801
|
+
)
|
|
1802
|
+
),
|
|
1803
|
+
equals_to=qbusiness.CfnDataAccessor.DocumentAttributeProperty(
|
|
1804
|
+
name="name",
|
|
1805
|
+
value=qbusiness.CfnDataAccessor.DocumentAttributeValueProperty(
|
|
1806
|
+
date_value="dateValue",
|
|
1807
|
+
long_value=123,
|
|
1808
|
+
string_list_value=["stringListValue"],
|
|
1809
|
+
string_value="stringValue"
|
|
1810
|
+
)
|
|
1811
|
+
),
|
|
1812
|
+
greater_than=qbusiness.CfnDataAccessor.DocumentAttributeProperty(
|
|
1813
|
+
name="name",
|
|
1814
|
+
value=qbusiness.CfnDataAccessor.DocumentAttributeValueProperty(
|
|
1815
|
+
date_value="dateValue",
|
|
1816
|
+
long_value=123,
|
|
1817
|
+
string_list_value=["stringListValue"],
|
|
1818
|
+
string_value="stringValue"
|
|
1819
|
+
)
|
|
1820
|
+
),
|
|
1821
|
+
greater_than_or_equals=qbusiness.CfnDataAccessor.DocumentAttributeProperty(
|
|
1822
|
+
name="name",
|
|
1823
|
+
value=qbusiness.CfnDataAccessor.DocumentAttributeValueProperty(
|
|
1824
|
+
date_value="dateValue",
|
|
1825
|
+
long_value=123,
|
|
1826
|
+
string_list_value=["stringListValue"],
|
|
1827
|
+
string_value="stringValue"
|
|
1828
|
+
)
|
|
1829
|
+
),
|
|
1830
|
+
less_than=qbusiness.CfnDataAccessor.DocumentAttributeProperty(
|
|
1831
|
+
name="name",
|
|
1832
|
+
value=qbusiness.CfnDataAccessor.DocumentAttributeValueProperty(
|
|
1833
|
+
date_value="dateValue",
|
|
1834
|
+
long_value=123,
|
|
1835
|
+
string_list_value=["stringListValue"],
|
|
1836
|
+
string_value="stringValue"
|
|
1837
|
+
)
|
|
1838
|
+
),
|
|
1839
|
+
less_than_or_equals=qbusiness.CfnDataAccessor.DocumentAttributeProperty(
|
|
1840
|
+
name="name",
|
|
1841
|
+
value=qbusiness.CfnDataAccessor.DocumentAttributeValueProperty(
|
|
1842
|
+
date_value="dateValue",
|
|
1843
|
+
long_value=123,
|
|
1844
|
+
string_list_value=["stringListValue"],
|
|
1845
|
+
string_value="stringValue"
|
|
1846
|
+
)
|
|
1847
|
+
),
|
|
1848
|
+
not_filter=attribute_filter_property_,
|
|
1849
|
+
or_all_filters=[attribute_filter_property_]
|
|
1850
|
+
)
|
|
1851
|
+
'''
|
|
1852
|
+
if __debug__:
|
|
1853
|
+
type_hints = typing.get_type_hints(_typecheckingstub__e0944dd9fc73c38902199011a9a1b06a552398d255157793794e769d86581ed7)
|
|
1854
|
+
check_type(argname="argument and_all_filters", value=and_all_filters, expected_type=type_hints["and_all_filters"])
|
|
1855
|
+
check_type(argname="argument contains_all", value=contains_all, expected_type=type_hints["contains_all"])
|
|
1856
|
+
check_type(argname="argument contains_any", value=contains_any, expected_type=type_hints["contains_any"])
|
|
1857
|
+
check_type(argname="argument equals_to", value=equals_to, expected_type=type_hints["equals_to"])
|
|
1858
|
+
check_type(argname="argument greater_than", value=greater_than, expected_type=type_hints["greater_than"])
|
|
1859
|
+
check_type(argname="argument greater_than_or_equals", value=greater_than_or_equals, expected_type=type_hints["greater_than_or_equals"])
|
|
1860
|
+
check_type(argname="argument less_than", value=less_than, expected_type=type_hints["less_than"])
|
|
1861
|
+
check_type(argname="argument less_than_or_equals", value=less_than_or_equals, expected_type=type_hints["less_than_or_equals"])
|
|
1862
|
+
check_type(argname="argument not_filter", value=not_filter, expected_type=type_hints["not_filter"])
|
|
1863
|
+
check_type(argname="argument or_all_filters", value=or_all_filters, expected_type=type_hints["or_all_filters"])
|
|
1864
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
1865
|
+
if and_all_filters is not None:
|
|
1866
|
+
self._values["and_all_filters"] = and_all_filters
|
|
1867
|
+
if contains_all is not None:
|
|
1868
|
+
self._values["contains_all"] = contains_all
|
|
1869
|
+
if contains_any is not None:
|
|
1870
|
+
self._values["contains_any"] = contains_any
|
|
1871
|
+
if equals_to is not None:
|
|
1872
|
+
self._values["equals_to"] = equals_to
|
|
1873
|
+
if greater_than is not None:
|
|
1874
|
+
self._values["greater_than"] = greater_than
|
|
1875
|
+
if greater_than_or_equals is not None:
|
|
1876
|
+
self._values["greater_than_or_equals"] = greater_than_or_equals
|
|
1877
|
+
if less_than is not None:
|
|
1878
|
+
self._values["less_than"] = less_than
|
|
1879
|
+
if less_than_or_equals is not None:
|
|
1880
|
+
self._values["less_than_or_equals"] = less_than_or_equals
|
|
1881
|
+
if not_filter is not None:
|
|
1882
|
+
self._values["not_filter"] = not_filter
|
|
1883
|
+
if or_all_filters is not None:
|
|
1884
|
+
self._values["or_all_filters"] = or_all_filters
|
|
1885
|
+
|
|
1886
|
+
@builtins.property
|
|
1887
|
+
def and_all_filters(
|
|
1888
|
+
self,
|
|
1889
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDataAccessor.AttributeFilterProperty"]]]]:
|
|
1890
|
+
'''
|
|
1891
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-dataaccessor-attributefilter.html#cfn-qbusiness-dataaccessor-attributefilter-andallfilters
|
|
1892
|
+
'''
|
|
1893
|
+
result = self._values.get("and_all_filters")
|
|
1894
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDataAccessor.AttributeFilterProperty"]]]], result)
|
|
1895
|
+
|
|
1896
|
+
@builtins.property
|
|
1897
|
+
def contains_all(
|
|
1898
|
+
self,
|
|
1899
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAccessor.DocumentAttributeProperty"]]:
|
|
1900
|
+
'''
|
|
1901
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-dataaccessor-attributefilter.html#cfn-qbusiness-dataaccessor-attributefilter-containsall
|
|
1902
|
+
'''
|
|
1903
|
+
result = self._values.get("contains_all")
|
|
1904
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAccessor.DocumentAttributeProperty"]], result)
|
|
1905
|
+
|
|
1906
|
+
@builtins.property
|
|
1907
|
+
def contains_any(
|
|
1908
|
+
self,
|
|
1909
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAccessor.DocumentAttributeProperty"]]:
|
|
1910
|
+
'''
|
|
1911
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-dataaccessor-attributefilter.html#cfn-qbusiness-dataaccessor-attributefilter-containsany
|
|
1912
|
+
'''
|
|
1913
|
+
result = self._values.get("contains_any")
|
|
1914
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAccessor.DocumentAttributeProperty"]], result)
|
|
1915
|
+
|
|
1916
|
+
@builtins.property
|
|
1917
|
+
def equals_to(
|
|
1918
|
+
self,
|
|
1919
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAccessor.DocumentAttributeProperty"]]:
|
|
1920
|
+
'''
|
|
1921
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-dataaccessor-attributefilter.html#cfn-qbusiness-dataaccessor-attributefilter-equalsto
|
|
1922
|
+
'''
|
|
1923
|
+
result = self._values.get("equals_to")
|
|
1924
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAccessor.DocumentAttributeProperty"]], result)
|
|
1925
|
+
|
|
1926
|
+
@builtins.property
|
|
1927
|
+
def greater_than(
|
|
1928
|
+
self,
|
|
1929
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAccessor.DocumentAttributeProperty"]]:
|
|
1930
|
+
'''
|
|
1931
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-dataaccessor-attributefilter.html#cfn-qbusiness-dataaccessor-attributefilter-greaterthan
|
|
1932
|
+
'''
|
|
1933
|
+
result = self._values.get("greater_than")
|
|
1934
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAccessor.DocumentAttributeProperty"]], result)
|
|
1935
|
+
|
|
1936
|
+
@builtins.property
|
|
1937
|
+
def greater_than_or_equals(
|
|
1938
|
+
self,
|
|
1939
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAccessor.DocumentAttributeProperty"]]:
|
|
1940
|
+
'''
|
|
1941
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-dataaccessor-attributefilter.html#cfn-qbusiness-dataaccessor-attributefilter-greaterthanorequals
|
|
1942
|
+
'''
|
|
1943
|
+
result = self._values.get("greater_than_or_equals")
|
|
1944
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAccessor.DocumentAttributeProperty"]], result)
|
|
1945
|
+
|
|
1946
|
+
@builtins.property
|
|
1947
|
+
def less_than(
|
|
1948
|
+
self,
|
|
1949
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAccessor.DocumentAttributeProperty"]]:
|
|
1950
|
+
'''
|
|
1951
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-dataaccessor-attributefilter.html#cfn-qbusiness-dataaccessor-attributefilter-lessthan
|
|
1952
|
+
'''
|
|
1953
|
+
result = self._values.get("less_than")
|
|
1954
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAccessor.DocumentAttributeProperty"]], result)
|
|
1955
|
+
|
|
1956
|
+
@builtins.property
|
|
1957
|
+
def less_than_or_equals(
|
|
1958
|
+
self,
|
|
1959
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAccessor.DocumentAttributeProperty"]]:
|
|
1960
|
+
'''
|
|
1961
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-dataaccessor-attributefilter.html#cfn-qbusiness-dataaccessor-attributefilter-lessthanorequals
|
|
1962
|
+
'''
|
|
1963
|
+
result = self._values.get("less_than_or_equals")
|
|
1964
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAccessor.DocumentAttributeProperty"]], result)
|
|
1965
|
+
|
|
1966
|
+
@builtins.property
|
|
1967
|
+
def not_filter(
|
|
1968
|
+
self,
|
|
1969
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAccessor.AttributeFilterProperty"]]:
|
|
1970
|
+
'''
|
|
1971
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-dataaccessor-attributefilter.html#cfn-qbusiness-dataaccessor-attributefilter-notfilter
|
|
1972
|
+
'''
|
|
1973
|
+
result = self._values.get("not_filter")
|
|
1974
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAccessor.AttributeFilterProperty"]], result)
|
|
1975
|
+
|
|
1976
|
+
@builtins.property
|
|
1977
|
+
def or_all_filters(
|
|
1978
|
+
self,
|
|
1979
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDataAccessor.AttributeFilterProperty"]]]]:
|
|
1980
|
+
'''
|
|
1981
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-dataaccessor-attributefilter.html#cfn-qbusiness-dataaccessor-attributefilter-orallfilters
|
|
1982
|
+
'''
|
|
1983
|
+
result = self._values.get("or_all_filters")
|
|
1984
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDataAccessor.AttributeFilterProperty"]]]], result)
|
|
1985
|
+
|
|
1986
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
1987
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
1988
|
+
|
|
1989
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
1990
|
+
return not (rhs == self)
|
|
1991
|
+
|
|
1992
|
+
def __repr__(self) -> str:
|
|
1993
|
+
return "AttributeFilterProperty(%s)" % ", ".join(
|
|
1994
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
1995
|
+
)
|
|
1996
|
+
|
|
1997
|
+
@jsii.data_type(
|
|
1998
|
+
jsii_type="aws-cdk-lib.aws_qbusiness.CfnDataAccessor.DocumentAttributeProperty",
|
|
1999
|
+
jsii_struct_bases=[],
|
|
2000
|
+
name_mapping={"name": "name", "value": "value"},
|
|
2001
|
+
)
|
|
2002
|
+
class DocumentAttributeProperty:
|
|
2003
|
+
def __init__(
|
|
2004
|
+
self,
|
|
2005
|
+
*,
|
|
2006
|
+
name: builtins.str,
|
|
2007
|
+
value: typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAccessor.DocumentAttributeValueProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
2008
|
+
) -> None:
|
|
2009
|
+
'''
|
|
2010
|
+
:param name:
|
|
2011
|
+
:param value:
|
|
2012
|
+
|
|
2013
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-dataaccessor-documentattribute.html
|
|
2014
|
+
:exampleMetadata: fixture=_generated
|
|
2015
|
+
|
|
2016
|
+
Example::
|
|
2017
|
+
|
|
2018
|
+
# The code below shows an example of how to instantiate this type.
|
|
2019
|
+
# The values are placeholders you should change.
|
|
2020
|
+
from aws_cdk import aws_qbusiness as qbusiness
|
|
2021
|
+
|
|
2022
|
+
document_attribute_property = qbusiness.CfnDataAccessor.DocumentAttributeProperty(
|
|
2023
|
+
name="name",
|
|
2024
|
+
value=qbusiness.CfnDataAccessor.DocumentAttributeValueProperty(
|
|
2025
|
+
date_value="dateValue",
|
|
2026
|
+
long_value=123,
|
|
2027
|
+
string_list_value=["stringListValue"],
|
|
2028
|
+
string_value="stringValue"
|
|
2029
|
+
)
|
|
2030
|
+
)
|
|
2031
|
+
'''
|
|
2032
|
+
if __debug__:
|
|
2033
|
+
type_hints = typing.get_type_hints(_typecheckingstub__fc877a8d06303e2294e4f8e5813534f57082fb9476b669bafe4451af29bb5979)
|
|
2034
|
+
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
2035
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2036
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
2037
|
+
"name": name,
|
|
2038
|
+
"value": value,
|
|
2039
|
+
}
|
|
2040
|
+
|
|
2041
|
+
@builtins.property
|
|
2042
|
+
def name(self) -> builtins.str:
|
|
2043
|
+
'''
|
|
2044
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-dataaccessor-documentattribute.html#cfn-qbusiness-dataaccessor-documentattribute-name
|
|
2045
|
+
'''
|
|
2046
|
+
result = self._values.get("name")
|
|
2047
|
+
assert result is not None, "Required property 'name' is missing"
|
|
2048
|
+
return typing.cast(builtins.str, result)
|
|
2049
|
+
|
|
2050
|
+
@builtins.property
|
|
2051
|
+
def value(
|
|
2052
|
+
self,
|
|
2053
|
+
) -> typing.Union[_IResolvable_da3f097b, "CfnDataAccessor.DocumentAttributeValueProperty"]:
|
|
2054
|
+
'''
|
|
2055
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-dataaccessor-documentattribute.html#cfn-qbusiness-dataaccessor-documentattribute-value
|
|
2056
|
+
'''
|
|
2057
|
+
result = self._values.get("value")
|
|
2058
|
+
assert result is not None, "Required property 'value' is missing"
|
|
2059
|
+
return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnDataAccessor.DocumentAttributeValueProperty"], result)
|
|
2060
|
+
|
|
2061
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
2062
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
2063
|
+
|
|
2064
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
2065
|
+
return not (rhs == self)
|
|
2066
|
+
|
|
2067
|
+
def __repr__(self) -> str:
|
|
2068
|
+
return "DocumentAttributeProperty(%s)" % ", ".join(
|
|
2069
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
2070
|
+
)
|
|
2071
|
+
|
|
2072
|
+
@jsii.data_type(
|
|
2073
|
+
jsii_type="aws-cdk-lib.aws_qbusiness.CfnDataAccessor.DocumentAttributeValueProperty",
|
|
2074
|
+
jsii_struct_bases=[],
|
|
2075
|
+
name_mapping={
|
|
2076
|
+
"date_value": "dateValue",
|
|
2077
|
+
"long_value": "longValue",
|
|
2078
|
+
"string_list_value": "stringListValue",
|
|
2079
|
+
"string_value": "stringValue",
|
|
2080
|
+
},
|
|
2081
|
+
)
|
|
2082
|
+
class DocumentAttributeValueProperty:
|
|
2083
|
+
def __init__(
|
|
2084
|
+
self,
|
|
2085
|
+
*,
|
|
2086
|
+
date_value: typing.Optional[builtins.str] = None,
|
|
2087
|
+
long_value: typing.Optional[jsii.Number] = None,
|
|
2088
|
+
string_list_value: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
2089
|
+
string_value: typing.Optional[builtins.str] = None,
|
|
2090
|
+
) -> None:
|
|
2091
|
+
'''
|
|
2092
|
+
:param date_value:
|
|
2093
|
+
:param long_value:
|
|
2094
|
+
:param string_list_value:
|
|
2095
|
+
:param string_value:
|
|
2096
|
+
|
|
2097
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-dataaccessor-documentattributevalue.html
|
|
2098
|
+
:exampleMetadata: fixture=_generated
|
|
2099
|
+
|
|
2100
|
+
Example::
|
|
2101
|
+
|
|
2102
|
+
# The code below shows an example of how to instantiate this type.
|
|
2103
|
+
# The values are placeholders you should change.
|
|
2104
|
+
from aws_cdk import aws_qbusiness as qbusiness
|
|
2105
|
+
|
|
2106
|
+
document_attribute_value_property = qbusiness.CfnDataAccessor.DocumentAttributeValueProperty(
|
|
2107
|
+
date_value="dateValue",
|
|
2108
|
+
long_value=123,
|
|
2109
|
+
string_list_value=["stringListValue"],
|
|
2110
|
+
string_value="stringValue"
|
|
2111
|
+
)
|
|
2112
|
+
'''
|
|
2113
|
+
if __debug__:
|
|
2114
|
+
type_hints = typing.get_type_hints(_typecheckingstub__edee8eec89905fde650437fb2fcf2bc7ddeaecc251be16c2ca1d64d79b7eb5a5)
|
|
2115
|
+
check_type(argname="argument date_value", value=date_value, expected_type=type_hints["date_value"])
|
|
2116
|
+
check_type(argname="argument long_value", value=long_value, expected_type=type_hints["long_value"])
|
|
2117
|
+
check_type(argname="argument string_list_value", value=string_list_value, expected_type=type_hints["string_list_value"])
|
|
2118
|
+
check_type(argname="argument string_value", value=string_value, expected_type=type_hints["string_value"])
|
|
2119
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
2120
|
+
if date_value is not None:
|
|
2121
|
+
self._values["date_value"] = date_value
|
|
2122
|
+
if long_value is not None:
|
|
2123
|
+
self._values["long_value"] = long_value
|
|
2124
|
+
if string_list_value is not None:
|
|
2125
|
+
self._values["string_list_value"] = string_list_value
|
|
2126
|
+
if string_value is not None:
|
|
2127
|
+
self._values["string_value"] = string_value
|
|
2128
|
+
|
|
2129
|
+
@builtins.property
|
|
2130
|
+
def date_value(self) -> typing.Optional[builtins.str]:
|
|
2131
|
+
'''
|
|
2132
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-dataaccessor-documentattributevalue.html#cfn-qbusiness-dataaccessor-documentattributevalue-datevalue
|
|
2133
|
+
'''
|
|
2134
|
+
result = self._values.get("date_value")
|
|
2135
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
2136
|
+
|
|
2137
|
+
@builtins.property
|
|
2138
|
+
def long_value(self) -> typing.Optional[jsii.Number]:
|
|
2139
|
+
'''
|
|
2140
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-dataaccessor-documentattributevalue.html#cfn-qbusiness-dataaccessor-documentattributevalue-longvalue
|
|
2141
|
+
'''
|
|
2142
|
+
result = self._values.get("long_value")
|
|
2143
|
+
return typing.cast(typing.Optional[jsii.Number], result)
|
|
2144
|
+
|
|
2145
|
+
@builtins.property
|
|
2146
|
+
def string_list_value(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
2147
|
+
'''
|
|
2148
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-dataaccessor-documentattributevalue.html#cfn-qbusiness-dataaccessor-documentattributevalue-stringlistvalue
|
|
2149
|
+
'''
|
|
2150
|
+
result = self._values.get("string_list_value")
|
|
2151
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
2152
|
+
|
|
2153
|
+
@builtins.property
|
|
2154
|
+
def string_value(self) -> typing.Optional[builtins.str]:
|
|
2155
|
+
'''
|
|
2156
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-dataaccessor-documentattributevalue.html#cfn-qbusiness-dataaccessor-documentattributevalue-stringvalue
|
|
2157
|
+
'''
|
|
2158
|
+
result = self._values.get("string_value")
|
|
2159
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
2160
|
+
|
|
2161
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
2162
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
2163
|
+
|
|
2164
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
2165
|
+
return not (rhs == self)
|
|
2166
|
+
|
|
2167
|
+
def __repr__(self) -> str:
|
|
2168
|
+
return "DocumentAttributeValueProperty(%s)" % ", ".join(
|
|
2169
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
2170
|
+
)
|
|
2171
|
+
|
|
2172
|
+
|
|
2173
|
+
@jsii.data_type(
|
|
2174
|
+
jsii_type="aws-cdk-lib.aws_qbusiness.CfnDataAccessorProps",
|
|
2175
|
+
jsii_struct_bases=[],
|
|
2176
|
+
name_mapping={
|
|
2177
|
+
"action_configurations": "actionConfigurations",
|
|
2178
|
+
"display_name": "displayName",
|
|
2179
|
+
"principal": "principal",
|
|
2180
|
+
"application_id": "applicationId",
|
|
2181
|
+
"tags": "tags",
|
|
2182
|
+
},
|
|
2183
|
+
)
|
|
2184
|
+
class CfnDataAccessorProps:
|
|
2185
|
+
def __init__(
|
|
2186
|
+
self,
|
|
2187
|
+
*,
|
|
2188
|
+
action_configurations: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataAccessor.ActionConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]],
|
|
2189
|
+
display_name: builtins.str,
|
|
2190
|
+
principal: builtins.str,
|
|
2191
|
+
application_id: typing.Optional[builtins.str] = None,
|
|
2192
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2193
|
+
) -> None:
|
|
2194
|
+
'''Properties for defining a ``CfnDataAccessor``.
|
|
2195
|
+
|
|
2196
|
+
:param action_configurations:
|
|
2197
|
+
:param display_name:
|
|
2198
|
+
:param principal:
|
|
2199
|
+
:param application_id:
|
|
2200
|
+
:param tags:
|
|
2201
|
+
|
|
2202
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-dataaccessor.html
|
|
2203
|
+
:exampleMetadata: fixture=_generated
|
|
2204
|
+
|
|
2205
|
+
Example::
|
|
2206
|
+
|
|
2207
|
+
# The code below shows an example of how to instantiate this type.
|
|
2208
|
+
# The values are placeholders you should change.
|
|
2209
|
+
from aws_cdk import aws_qbusiness as qbusiness
|
|
2210
|
+
|
|
2211
|
+
# attribute_filter_property_: qbusiness.CfnDataAccessor.AttributeFilterProperty
|
|
2212
|
+
|
|
2213
|
+
cfn_data_accessor_props = qbusiness.CfnDataAccessorProps(
|
|
2214
|
+
action_configurations=[qbusiness.CfnDataAccessor.ActionConfigurationProperty(
|
|
2215
|
+
action="action",
|
|
2216
|
+
|
|
2217
|
+
# the properties below are optional
|
|
2218
|
+
filter_configuration=qbusiness.CfnDataAccessor.ActionFilterConfigurationProperty(
|
|
2219
|
+
document_attribute_filter=qbusiness.CfnDataAccessor.AttributeFilterProperty(
|
|
2220
|
+
and_all_filters=[attribute_filter_property_],
|
|
2221
|
+
contains_all=qbusiness.CfnDataAccessor.DocumentAttributeProperty(
|
|
2222
|
+
name="name",
|
|
2223
|
+
value=qbusiness.CfnDataAccessor.DocumentAttributeValueProperty(
|
|
2224
|
+
date_value="dateValue",
|
|
2225
|
+
long_value=123,
|
|
2226
|
+
string_list_value=["stringListValue"],
|
|
2227
|
+
string_value="stringValue"
|
|
2228
|
+
)
|
|
2229
|
+
),
|
|
2230
|
+
contains_any=qbusiness.CfnDataAccessor.DocumentAttributeProperty(
|
|
2231
|
+
name="name",
|
|
2232
|
+
value=qbusiness.CfnDataAccessor.DocumentAttributeValueProperty(
|
|
2233
|
+
date_value="dateValue",
|
|
2234
|
+
long_value=123,
|
|
2235
|
+
string_list_value=["stringListValue"],
|
|
2236
|
+
string_value="stringValue"
|
|
2237
|
+
)
|
|
2238
|
+
),
|
|
2239
|
+
equals_to=qbusiness.CfnDataAccessor.DocumentAttributeProperty(
|
|
2240
|
+
name="name",
|
|
2241
|
+
value=qbusiness.CfnDataAccessor.DocumentAttributeValueProperty(
|
|
2242
|
+
date_value="dateValue",
|
|
2243
|
+
long_value=123,
|
|
2244
|
+
string_list_value=["stringListValue"],
|
|
2245
|
+
string_value="stringValue"
|
|
2246
|
+
)
|
|
2247
|
+
),
|
|
2248
|
+
greater_than=qbusiness.CfnDataAccessor.DocumentAttributeProperty(
|
|
2249
|
+
name="name",
|
|
2250
|
+
value=qbusiness.CfnDataAccessor.DocumentAttributeValueProperty(
|
|
2251
|
+
date_value="dateValue",
|
|
2252
|
+
long_value=123,
|
|
2253
|
+
string_list_value=["stringListValue"],
|
|
2254
|
+
string_value="stringValue"
|
|
2255
|
+
)
|
|
2256
|
+
),
|
|
2257
|
+
greater_than_or_equals=qbusiness.CfnDataAccessor.DocumentAttributeProperty(
|
|
2258
|
+
name="name",
|
|
2259
|
+
value=qbusiness.CfnDataAccessor.DocumentAttributeValueProperty(
|
|
2260
|
+
date_value="dateValue",
|
|
2261
|
+
long_value=123,
|
|
2262
|
+
string_list_value=["stringListValue"],
|
|
2263
|
+
string_value="stringValue"
|
|
2264
|
+
)
|
|
2265
|
+
),
|
|
2266
|
+
less_than=qbusiness.CfnDataAccessor.DocumentAttributeProperty(
|
|
2267
|
+
name="name",
|
|
2268
|
+
value=qbusiness.CfnDataAccessor.DocumentAttributeValueProperty(
|
|
2269
|
+
date_value="dateValue",
|
|
2270
|
+
long_value=123,
|
|
2271
|
+
string_list_value=["stringListValue"],
|
|
2272
|
+
string_value="stringValue"
|
|
2273
|
+
)
|
|
2274
|
+
),
|
|
2275
|
+
less_than_or_equals=qbusiness.CfnDataAccessor.DocumentAttributeProperty(
|
|
2276
|
+
name="name",
|
|
2277
|
+
value=qbusiness.CfnDataAccessor.DocumentAttributeValueProperty(
|
|
2278
|
+
date_value="dateValue",
|
|
2279
|
+
long_value=123,
|
|
2280
|
+
string_list_value=["stringListValue"],
|
|
2281
|
+
string_value="stringValue"
|
|
2282
|
+
)
|
|
2283
|
+
),
|
|
2284
|
+
not_filter=attribute_filter_property_,
|
|
2285
|
+
or_all_filters=[attribute_filter_property_]
|
|
2286
|
+
)
|
|
2287
|
+
)
|
|
2288
|
+
)],
|
|
2289
|
+
display_name="displayName",
|
|
2290
|
+
principal="principal",
|
|
2291
|
+
|
|
2292
|
+
# the properties below are optional
|
|
2293
|
+
application_id="applicationId",
|
|
2294
|
+
tags=[CfnTag(
|
|
2295
|
+
key="key",
|
|
2296
|
+
value="value"
|
|
2297
|
+
)]
|
|
2298
|
+
)
|
|
2299
|
+
'''
|
|
2300
|
+
if __debug__:
|
|
2301
|
+
type_hints = typing.get_type_hints(_typecheckingstub__4dfde2d4c17793fa3cb9793a9171b9042ac55727b3f0c3a17f1606cab5545458)
|
|
2302
|
+
check_type(argname="argument action_configurations", value=action_configurations, expected_type=type_hints["action_configurations"])
|
|
2303
|
+
check_type(argname="argument display_name", value=display_name, expected_type=type_hints["display_name"])
|
|
2304
|
+
check_type(argname="argument principal", value=principal, expected_type=type_hints["principal"])
|
|
2305
|
+
check_type(argname="argument application_id", value=application_id, expected_type=type_hints["application_id"])
|
|
2306
|
+
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
2307
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
2308
|
+
"action_configurations": action_configurations,
|
|
2309
|
+
"display_name": display_name,
|
|
2310
|
+
"principal": principal,
|
|
2311
|
+
}
|
|
2312
|
+
if application_id is not None:
|
|
2313
|
+
self._values["application_id"] = application_id
|
|
2314
|
+
if tags is not None:
|
|
2315
|
+
self._values["tags"] = tags
|
|
2316
|
+
|
|
2317
|
+
@builtins.property
|
|
2318
|
+
def action_configurations(
|
|
1034
2319
|
self,
|
|
1035
|
-
) -> typing.
|
|
1036
|
-
'''Configuration information about Amazon Q Apps.
|
|
1037
|
-
|
|
1038
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-application.html#cfn-qbusiness-application-qappsconfiguration
|
|
2320
|
+
) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnDataAccessor.ActionConfigurationProperty]]]:
|
|
1039
2321
|
'''
|
|
1040
|
-
|
|
1041
|
-
|
|
2322
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-dataaccessor.html#cfn-qbusiness-dataaccessor-actionconfigurations
|
|
2323
|
+
'''
|
|
2324
|
+
result = self._values.get("action_configurations")
|
|
2325
|
+
assert result is not None, "Required property 'action_configurations' is missing"
|
|
2326
|
+
return typing.cast(typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnDataAccessor.ActionConfigurationProperty]]], result)
|
|
1042
2327
|
|
|
1043
2328
|
@builtins.property
|
|
1044
|
-
def
|
|
1045
|
-
'''
|
|
2329
|
+
def display_name(self) -> builtins.str:
|
|
2330
|
+
'''
|
|
2331
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-dataaccessor.html#cfn-qbusiness-dataaccessor-displayname
|
|
2332
|
+
'''
|
|
2333
|
+
result = self._values.get("display_name")
|
|
2334
|
+
assert result is not None, "Required property 'display_name' is missing"
|
|
2335
|
+
return typing.cast(builtins.str, result)
|
|
1046
2336
|
|
|
1047
|
-
|
|
2337
|
+
@builtins.property
|
|
2338
|
+
def principal(self) -> builtins.str:
|
|
2339
|
+
'''
|
|
2340
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-dataaccessor.html#cfn-qbusiness-dataaccessor-principal
|
|
2341
|
+
'''
|
|
2342
|
+
result = self._values.get("principal")
|
|
2343
|
+
assert result is not None, "Required property 'principal' is missing"
|
|
2344
|
+
return typing.cast(builtins.str, result)
|
|
1048
2345
|
|
|
1049
|
-
|
|
2346
|
+
@builtins.property
|
|
2347
|
+
def application_id(self) -> typing.Optional[builtins.str]:
|
|
1050
2348
|
'''
|
|
1051
|
-
|
|
2349
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-dataaccessor.html#cfn-qbusiness-dataaccessor-applicationid
|
|
2350
|
+
'''
|
|
2351
|
+
result = self._values.get("application_id")
|
|
1052
2352
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
1053
2353
|
|
|
1054
2354
|
@builtins.property
|
|
1055
2355
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
1056
|
-
'''
|
|
1057
|
-
|
|
1058
|
-
You can also use tags to help control access to the application. Tag keys and values can consist of Unicode letters, digits, white space, and any of the following symbols: _ . : / = + -
|
|
1059
|
-
|
|
1060
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-application.html#cfn-qbusiness-application-tags
|
|
1061
|
-
:: .
|
|
2356
|
+
'''
|
|
2357
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-dataaccessor.html#cfn-qbusiness-dataaccessor-tags
|
|
1062
2358
|
'''
|
|
1063
2359
|
result = self._values.get("tags")
|
|
1064
2360
|
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], result)
|
|
@@ -1070,7 +2366,7 @@ class CfnApplicationProps:
|
|
|
1070
2366
|
return not (rhs == self)
|
|
1071
2367
|
|
|
1072
2368
|
def __repr__(self) -> str:
|
|
1073
|
-
return "
|
|
2369
|
+
return "CfnDataAccessorProps(%s)" % ", ".join(
|
|
1074
2370
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
1075
2371
|
)
|
|
1076
2372
|
|
|
@@ -3325,6 +4621,250 @@ class CfnIndexProps:
|
|
|
3325
4621
|
)
|
|
3326
4622
|
|
|
3327
4623
|
|
|
4624
|
+
@jsii.implements(_IInspectable_c2943556)
|
|
4625
|
+
class CfnPermission(
|
|
4626
|
+
_CfnResource_9df397a6,
|
|
4627
|
+
metaclass=jsii.JSIIMeta,
|
|
4628
|
+
jsii_type="aws-cdk-lib.aws_qbusiness.CfnPermission",
|
|
4629
|
+
):
|
|
4630
|
+
'''Definition of AWS::QBusiness::Permission Resource Type.
|
|
4631
|
+
|
|
4632
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-permission.html
|
|
4633
|
+
:cloudformationResource: AWS::QBusiness::Permission
|
|
4634
|
+
:exampleMetadata: fixture=_generated
|
|
4635
|
+
|
|
4636
|
+
Example::
|
|
4637
|
+
|
|
4638
|
+
# The code below shows an example of how to instantiate this type.
|
|
4639
|
+
# The values are placeholders you should change.
|
|
4640
|
+
from aws_cdk import aws_qbusiness as qbusiness
|
|
4641
|
+
|
|
4642
|
+
cfn_permission = qbusiness.CfnPermission(self, "MyCfnPermission",
|
|
4643
|
+
actions=["actions"],
|
|
4644
|
+
application_id="applicationId",
|
|
4645
|
+
principal="principal",
|
|
4646
|
+
statement_id="statementId"
|
|
4647
|
+
)
|
|
4648
|
+
'''
|
|
4649
|
+
|
|
4650
|
+
def __init__(
|
|
4651
|
+
self,
|
|
4652
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
4653
|
+
id: builtins.str,
|
|
4654
|
+
*,
|
|
4655
|
+
actions: typing.Sequence[builtins.str],
|
|
4656
|
+
application_id: builtins.str,
|
|
4657
|
+
principal: builtins.str,
|
|
4658
|
+
statement_id: builtins.str,
|
|
4659
|
+
) -> None:
|
|
4660
|
+
'''
|
|
4661
|
+
:param scope: Scope in which this resource is defined.
|
|
4662
|
+
:param id: Construct identifier for this resource (unique in its scope).
|
|
4663
|
+
:param actions:
|
|
4664
|
+
:param application_id:
|
|
4665
|
+
:param principal:
|
|
4666
|
+
:param statement_id:
|
|
4667
|
+
'''
|
|
4668
|
+
if __debug__:
|
|
4669
|
+
type_hints = typing.get_type_hints(_typecheckingstub__aa8b9992ffebedf4dda280be4bd0aa5dade8d62a6c092d850b1b1bb8df042ee8)
|
|
4670
|
+
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
4671
|
+
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
4672
|
+
props = CfnPermissionProps(
|
|
4673
|
+
actions=actions,
|
|
4674
|
+
application_id=application_id,
|
|
4675
|
+
principal=principal,
|
|
4676
|
+
statement_id=statement_id,
|
|
4677
|
+
)
|
|
4678
|
+
|
|
4679
|
+
jsii.create(self.__class__, self, [scope, id, props])
|
|
4680
|
+
|
|
4681
|
+
@jsii.member(jsii_name="inspect")
|
|
4682
|
+
def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
|
|
4683
|
+
'''Examines the CloudFormation resource and discloses attributes.
|
|
4684
|
+
|
|
4685
|
+
:param inspector: tree inspector to collect and process attributes.
|
|
4686
|
+
'''
|
|
4687
|
+
if __debug__:
|
|
4688
|
+
type_hints = typing.get_type_hints(_typecheckingstub__486d860cba58c25ad8a704d89ac04d1c97b77e0a8335b95ea6b91e0055822d82)
|
|
4689
|
+
check_type(argname="argument inspector", value=inspector, expected_type=type_hints["inspector"])
|
|
4690
|
+
return typing.cast(None, jsii.invoke(self, "inspect", [inspector]))
|
|
4691
|
+
|
|
4692
|
+
@jsii.member(jsii_name="renderProperties")
|
|
4693
|
+
def _render_properties(
|
|
4694
|
+
self,
|
|
4695
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
4696
|
+
) -> typing.Mapping[builtins.str, typing.Any]:
|
|
4697
|
+
'''
|
|
4698
|
+
:param props: -
|
|
4699
|
+
'''
|
|
4700
|
+
if __debug__:
|
|
4701
|
+
type_hints = typing.get_type_hints(_typecheckingstub__0b04db3dd9150fe212749577b23464a861914114372d66de4e94f86f0c249312)
|
|
4702
|
+
check_type(argname="argument props", value=props, expected_type=type_hints["props"])
|
|
4703
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "renderProperties", [props]))
|
|
4704
|
+
|
|
4705
|
+
@jsii.python.classproperty
|
|
4706
|
+
@jsii.member(jsii_name="CFN_RESOURCE_TYPE_NAME")
|
|
4707
|
+
def CFN_RESOURCE_TYPE_NAME(cls) -> builtins.str:
|
|
4708
|
+
'''The CloudFormation resource type name for this resource class.'''
|
|
4709
|
+
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
4710
|
+
|
|
4711
|
+
@builtins.property
|
|
4712
|
+
@jsii.member(jsii_name="cfnProperties")
|
|
4713
|
+
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
4714
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
|
|
4715
|
+
|
|
4716
|
+
@builtins.property
|
|
4717
|
+
@jsii.member(jsii_name="actions")
|
|
4718
|
+
def actions(self) -> typing.List[builtins.str]:
|
|
4719
|
+
return typing.cast(typing.List[builtins.str], jsii.get(self, "actions"))
|
|
4720
|
+
|
|
4721
|
+
@actions.setter
|
|
4722
|
+
def actions(self, value: typing.List[builtins.str]) -> None:
|
|
4723
|
+
if __debug__:
|
|
4724
|
+
type_hints = typing.get_type_hints(_typecheckingstub__39d8a75c9a38f2eedadc1f546593db77ee47e4125872cb57b22cf5548b71f021)
|
|
4725
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4726
|
+
jsii.set(self, "actions", value) # pyright: ignore[reportArgumentType]
|
|
4727
|
+
|
|
4728
|
+
@builtins.property
|
|
4729
|
+
@jsii.member(jsii_name="applicationId")
|
|
4730
|
+
def application_id(self) -> builtins.str:
|
|
4731
|
+
return typing.cast(builtins.str, jsii.get(self, "applicationId"))
|
|
4732
|
+
|
|
4733
|
+
@application_id.setter
|
|
4734
|
+
def application_id(self, value: builtins.str) -> None:
|
|
4735
|
+
if __debug__:
|
|
4736
|
+
type_hints = typing.get_type_hints(_typecheckingstub__c8fe48822501c0010e5b09bf79b5fbff369d246e10a55c9aa06207fb883b9011)
|
|
4737
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4738
|
+
jsii.set(self, "applicationId", value) # pyright: ignore[reportArgumentType]
|
|
4739
|
+
|
|
4740
|
+
@builtins.property
|
|
4741
|
+
@jsii.member(jsii_name="principal")
|
|
4742
|
+
def principal(self) -> builtins.str:
|
|
4743
|
+
return typing.cast(builtins.str, jsii.get(self, "principal"))
|
|
4744
|
+
|
|
4745
|
+
@principal.setter
|
|
4746
|
+
def principal(self, value: builtins.str) -> None:
|
|
4747
|
+
if __debug__:
|
|
4748
|
+
type_hints = typing.get_type_hints(_typecheckingstub__0006a2c0010c9479f601e5c854918c05afd29c14583b90821fa3cec8abe28068)
|
|
4749
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4750
|
+
jsii.set(self, "principal", value) # pyright: ignore[reportArgumentType]
|
|
4751
|
+
|
|
4752
|
+
@builtins.property
|
|
4753
|
+
@jsii.member(jsii_name="statementId")
|
|
4754
|
+
def statement_id(self) -> builtins.str:
|
|
4755
|
+
return typing.cast(builtins.str, jsii.get(self, "statementId"))
|
|
4756
|
+
|
|
4757
|
+
@statement_id.setter
|
|
4758
|
+
def statement_id(self, value: builtins.str) -> None:
|
|
4759
|
+
if __debug__:
|
|
4760
|
+
type_hints = typing.get_type_hints(_typecheckingstub__5bf1e79f20a58bfbabb1ce356f12e0ce01131844f0c50f11db4e0f82f47f71e7)
|
|
4761
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4762
|
+
jsii.set(self, "statementId", value) # pyright: ignore[reportArgumentType]
|
|
4763
|
+
|
|
4764
|
+
|
|
4765
|
+
@jsii.data_type(
|
|
4766
|
+
jsii_type="aws-cdk-lib.aws_qbusiness.CfnPermissionProps",
|
|
4767
|
+
jsii_struct_bases=[],
|
|
4768
|
+
name_mapping={
|
|
4769
|
+
"actions": "actions",
|
|
4770
|
+
"application_id": "applicationId",
|
|
4771
|
+
"principal": "principal",
|
|
4772
|
+
"statement_id": "statementId",
|
|
4773
|
+
},
|
|
4774
|
+
)
|
|
4775
|
+
class CfnPermissionProps:
|
|
4776
|
+
def __init__(
|
|
4777
|
+
self,
|
|
4778
|
+
*,
|
|
4779
|
+
actions: typing.Sequence[builtins.str],
|
|
4780
|
+
application_id: builtins.str,
|
|
4781
|
+
principal: builtins.str,
|
|
4782
|
+
statement_id: builtins.str,
|
|
4783
|
+
) -> None:
|
|
4784
|
+
'''Properties for defining a ``CfnPermission``.
|
|
4785
|
+
|
|
4786
|
+
:param actions:
|
|
4787
|
+
:param application_id:
|
|
4788
|
+
:param principal:
|
|
4789
|
+
:param statement_id:
|
|
4790
|
+
|
|
4791
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-permission.html
|
|
4792
|
+
:exampleMetadata: fixture=_generated
|
|
4793
|
+
|
|
4794
|
+
Example::
|
|
4795
|
+
|
|
4796
|
+
# The code below shows an example of how to instantiate this type.
|
|
4797
|
+
# The values are placeholders you should change.
|
|
4798
|
+
from aws_cdk import aws_qbusiness as qbusiness
|
|
4799
|
+
|
|
4800
|
+
cfn_permission_props = qbusiness.CfnPermissionProps(
|
|
4801
|
+
actions=["actions"],
|
|
4802
|
+
application_id="applicationId",
|
|
4803
|
+
principal="principal",
|
|
4804
|
+
statement_id="statementId"
|
|
4805
|
+
)
|
|
4806
|
+
'''
|
|
4807
|
+
if __debug__:
|
|
4808
|
+
type_hints = typing.get_type_hints(_typecheckingstub__7ea87fcda68d4a26468f5e5d1c394a46d117b80b00274f61bbd36b0329a0a8c4)
|
|
4809
|
+
check_type(argname="argument actions", value=actions, expected_type=type_hints["actions"])
|
|
4810
|
+
check_type(argname="argument application_id", value=application_id, expected_type=type_hints["application_id"])
|
|
4811
|
+
check_type(argname="argument principal", value=principal, expected_type=type_hints["principal"])
|
|
4812
|
+
check_type(argname="argument statement_id", value=statement_id, expected_type=type_hints["statement_id"])
|
|
4813
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
4814
|
+
"actions": actions,
|
|
4815
|
+
"application_id": application_id,
|
|
4816
|
+
"principal": principal,
|
|
4817
|
+
"statement_id": statement_id,
|
|
4818
|
+
}
|
|
4819
|
+
|
|
4820
|
+
@builtins.property
|
|
4821
|
+
def actions(self) -> typing.List[builtins.str]:
|
|
4822
|
+
'''
|
|
4823
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-permission.html#cfn-qbusiness-permission-actions
|
|
4824
|
+
'''
|
|
4825
|
+
result = self._values.get("actions")
|
|
4826
|
+
assert result is not None, "Required property 'actions' is missing"
|
|
4827
|
+
return typing.cast(typing.List[builtins.str], result)
|
|
4828
|
+
|
|
4829
|
+
@builtins.property
|
|
4830
|
+
def application_id(self) -> builtins.str:
|
|
4831
|
+
'''
|
|
4832
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-permission.html#cfn-qbusiness-permission-applicationid
|
|
4833
|
+
'''
|
|
4834
|
+
result = self._values.get("application_id")
|
|
4835
|
+
assert result is not None, "Required property 'application_id' is missing"
|
|
4836
|
+
return typing.cast(builtins.str, result)
|
|
4837
|
+
|
|
4838
|
+
@builtins.property
|
|
4839
|
+
def principal(self) -> builtins.str:
|
|
4840
|
+
'''
|
|
4841
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-permission.html#cfn-qbusiness-permission-principal
|
|
4842
|
+
'''
|
|
4843
|
+
result = self._values.get("principal")
|
|
4844
|
+
assert result is not None, "Required property 'principal' is missing"
|
|
4845
|
+
return typing.cast(builtins.str, result)
|
|
4846
|
+
|
|
4847
|
+
@builtins.property
|
|
4848
|
+
def statement_id(self) -> builtins.str:
|
|
4849
|
+
'''
|
|
4850
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-permission.html#cfn-qbusiness-permission-statementid
|
|
4851
|
+
'''
|
|
4852
|
+
result = self._values.get("statement_id")
|
|
4853
|
+
assert result is not None, "Required property 'statement_id' is missing"
|
|
4854
|
+
return typing.cast(builtins.str, result)
|
|
4855
|
+
|
|
4856
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
4857
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
4858
|
+
|
|
4859
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
4860
|
+
return not (rhs == self)
|
|
4861
|
+
|
|
4862
|
+
def __repr__(self) -> str:
|
|
4863
|
+
return "CfnPermissionProps(%s)" % ", ".join(
|
|
4864
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
4865
|
+
)
|
|
4866
|
+
|
|
4867
|
+
|
|
3328
4868
|
@jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
|
|
3329
4869
|
class CfnPlugin(
|
|
3330
4870
|
_CfnResource_9df397a6,
|
|
@@ -3346,7 +4886,6 @@ class CfnPlugin(
|
|
|
3346
4886
|
# no_auth_configuration: Any
|
|
3347
4887
|
|
|
3348
4888
|
cfn_plugin = qbusiness.CfnPlugin(self, "MyCfnPlugin",
|
|
3349
|
-
application_id="applicationId",
|
|
3350
4889
|
auth_configuration=qbusiness.CfnPlugin.PluginAuthConfigurationProperty(
|
|
3351
4890
|
basic_auth_configuration=qbusiness.CfnPlugin.BasicAuthConfigurationProperty(
|
|
3352
4891
|
role_arn="roleArn",
|
|
@@ -3355,13 +4894,18 @@ class CfnPlugin(
|
|
|
3355
4894
|
no_auth_configuration=no_auth_configuration,
|
|
3356
4895
|
o_auth2_client_credential_configuration=qbusiness.CfnPlugin.OAuth2ClientCredentialConfigurationProperty(
|
|
3357
4896
|
role_arn="roleArn",
|
|
3358
|
-
secret_arn="secretArn"
|
|
4897
|
+
secret_arn="secretArn",
|
|
4898
|
+
|
|
4899
|
+
# the properties below are optional
|
|
4900
|
+
authorization_url="authorizationUrl",
|
|
4901
|
+
token_url="tokenUrl"
|
|
3359
4902
|
)
|
|
3360
4903
|
),
|
|
3361
4904
|
display_name="displayName",
|
|
3362
4905
|
type="type",
|
|
3363
4906
|
|
|
3364
4907
|
# the properties below are optional
|
|
4908
|
+
application_id="applicationId",
|
|
3365
4909
|
custom_plugin_configuration=qbusiness.CfnPlugin.CustomPluginConfigurationProperty(
|
|
3366
4910
|
api_schema=qbusiness.CfnPlugin.APISchemaProperty(
|
|
3367
4911
|
payload="payload",
|
|
@@ -3387,10 +4931,10 @@ class CfnPlugin(
|
|
|
3387
4931
|
scope: _constructs_77d1e7e8.Construct,
|
|
3388
4932
|
id: builtins.str,
|
|
3389
4933
|
*,
|
|
3390
|
-
application_id: builtins.str,
|
|
3391
4934
|
auth_configuration: typing.Union[_IResolvable_da3f097b, typing.Union["CfnPlugin.PluginAuthConfigurationProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
3392
4935
|
display_name: builtins.str,
|
|
3393
4936
|
type: builtins.str,
|
|
4937
|
+
application_id: typing.Optional[builtins.str] = None,
|
|
3394
4938
|
custom_plugin_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPlugin.CustomPluginConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3395
4939
|
server_url: typing.Optional[builtins.str] = None,
|
|
3396
4940
|
state: typing.Optional[builtins.str] = None,
|
|
@@ -3399,10 +4943,10 @@ class CfnPlugin(
|
|
|
3399
4943
|
'''
|
|
3400
4944
|
:param scope: Scope in which this resource is defined.
|
|
3401
4945
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
3402
|
-
:param application_id: The identifier of the application that will contain the plugin.
|
|
3403
4946
|
:param auth_configuration: Authentication configuration information for an Amazon Q Business plugin.
|
|
3404
4947
|
:param display_name: The name of the plugin.
|
|
3405
4948
|
:param type: The type of the plugin.
|
|
4949
|
+
:param application_id: The identifier of the application that will contain the plugin.
|
|
3406
4950
|
:param custom_plugin_configuration: Configuration information required to create a custom plugin.
|
|
3407
4951
|
:param server_url: The plugin server URL used for configuration.
|
|
3408
4952
|
:param state: The current status of the plugin.
|
|
@@ -3413,10 +4957,10 @@ class CfnPlugin(
|
|
|
3413
4957
|
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
3414
4958
|
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
3415
4959
|
props = CfnPluginProps(
|
|
3416
|
-
application_id=application_id,
|
|
3417
4960
|
auth_configuration=auth_configuration,
|
|
3418
4961
|
display_name=display_name,
|
|
3419
4962
|
type=type,
|
|
4963
|
+
application_id=application_id,
|
|
3420
4964
|
custom_plugin_configuration=custom_plugin_configuration,
|
|
3421
4965
|
server_url=server_url,
|
|
3422
4966
|
state=state,
|
|
@@ -3513,19 +5057,6 @@ class CfnPlugin(
|
|
|
3513
5057
|
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
3514
5058
|
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
|
|
3515
5059
|
|
|
3516
|
-
@builtins.property
|
|
3517
|
-
@jsii.member(jsii_name="applicationId")
|
|
3518
|
-
def application_id(self) -> builtins.str:
|
|
3519
|
-
'''The identifier of the application that will contain the plugin.'''
|
|
3520
|
-
return typing.cast(builtins.str, jsii.get(self, "applicationId"))
|
|
3521
|
-
|
|
3522
|
-
@application_id.setter
|
|
3523
|
-
def application_id(self, value: builtins.str) -> None:
|
|
3524
|
-
if __debug__:
|
|
3525
|
-
type_hints = typing.get_type_hints(_typecheckingstub__b30e993c552d6b7b2897c130ead401b972163585b579b8261fba5f11c45ea7f5)
|
|
3526
|
-
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
3527
|
-
jsii.set(self, "applicationId", value) # pyright: ignore[reportArgumentType]
|
|
3528
|
-
|
|
3529
5060
|
@builtins.property
|
|
3530
5061
|
@jsii.member(jsii_name="authConfiguration")
|
|
3531
5062
|
def auth_configuration(
|
|
@@ -3570,6 +5101,19 @@ class CfnPlugin(
|
|
|
3570
5101
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
3571
5102
|
jsii.set(self, "type", value) # pyright: ignore[reportArgumentType]
|
|
3572
5103
|
|
|
5104
|
+
@builtins.property
|
|
5105
|
+
@jsii.member(jsii_name="applicationId")
|
|
5106
|
+
def application_id(self) -> typing.Optional[builtins.str]:
|
|
5107
|
+
'''The identifier of the application that will contain the plugin.'''
|
|
5108
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "applicationId"))
|
|
5109
|
+
|
|
5110
|
+
@application_id.setter
|
|
5111
|
+
def application_id(self, value: typing.Optional[builtins.str]) -> None:
|
|
5112
|
+
if __debug__:
|
|
5113
|
+
type_hints = typing.get_type_hints(_typecheckingstub__b30e993c552d6b7b2897c130ead401b972163585b579b8261fba5f11c45ea7f5)
|
|
5114
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5115
|
+
jsii.set(self, "applicationId", value) # pyright: ignore[reportArgumentType]
|
|
5116
|
+
|
|
3573
5117
|
@builtins.property
|
|
3574
5118
|
@jsii.member(jsii_name="customPluginConfiguration")
|
|
3575
5119
|
def custom_plugin_configuration(
|
|
@@ -3873,14 +5417,28 @@ class CfnPlugin(
|
|
|
3873
5417
|
@jsii.data_type(
|
|
3874
5418
|
jsii_type="aws-cdk-lib.aws_qbusiness.CfnPlugin.OAuth2ClientCredentialConfigurationProperty",
|
|
3875
5419
|
jsii_struct_bases=[],
|
|
3876
|
-
name_mapping={
|
|
5420
|
+
name_mapping={
|
|
5421
|
+
"role_arn": "roleArn",
|
|
5422
|
+
"secret_arn": "secretArn",
|
|
5423
|
+
"authorization_url": "authorizationUrl",
|
|
5424
|
+
"token_url": "tokenUrl",
|
|
5425
|
+
},
|
|
3877
5426
|
)
|
|
3878
5427
|
class OAuth2ClientCredentialConfigurationProperty:
|
|
3879
|
-
def __init__(
|
|
5428
|
+
def __init__(
|
|
5429
|
+
self,
|
|
5430
|
+
*,
|
|
5431
|
+
role_arn: builtins.str,
|
|
5432
|
+
secret_arn: builtins.str,
|
|
5433
|
+
authorization_url: typing.Optional[builtins.str] = None,
|
|
5434
|
+
token_url: typing.Optional[builtins.str] = None,
|
|
5435
|
+
) -> None:
|
|
3880
5436
|
'''Information about the OAuth 2.0 authentication credential/token used to configure a plugin.
|
|
3881
5437
|
|
|
3882
5438
|
:param role_arn: The ARN of an IAM role used by Amazon Q Business to access the OAuth 2.0 authentication credentials stored in a Secrets Manager secret.
|
|
3883
5439
|
:param secret_arn: The ARN of the Secrets Manager secret that stores the OAuth 2.0 credentials/token used for plugin configuration.
|
|
5440
|
+
:param authorization_url:
|
|
5441
|
+
:param token_url:
|
|
3884
5442
|
|
|
3885
5443
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-plugin-oauth2clientcredentialconfiguration.html
|
|
3886
5444
|
:exampleMetadata: fixture=_generated
|
|
@@ -3893,17 +5451,27 @@ class CfnPlugin(
|
|
|
3893
5451
|
|
|
3894
5452
|
o_auth2_client_credential_configuration_property = qbusiness.CfnPlugin.OAuth2ClientCredentialConfigurationProperty(
|
|
3895
5453
|
role_arn="roleArn",
|
|
3896
|
-
secret_arn="secretArn"
|
|
5454
|
+
secret_arn="secretArn",
|
|
5455
|
+
|
|
5456
|
+
# the properties below are optional
|
|
5457
|
+
authorization_url="authorizationUrl",
|
|
5458
|
+
token_url="tokenUrl"
|
|
3897
5459
|
)
|
|
3898
5460
|
'''
|
|
3899
5461
|
if __debug__:
|
|
3900
5462
|
type_hints = typing.get_type_hints(_typecheckingstub__5bc6d1d65b9c1e5c3607318c662a2a393df7ecf909b2d2ef7437364ade744000)
|
|
3901
5463
|
check_type(argname="argument role_arn", value=role_arn, expected_type=type_hints["role_arn"])
|
|
3902
5464
|
check_type(argname="argument secret_arn", value=secret_arn, expected_type=type_hints["secret_arn"])
|
|
5465
|
+
check_type(argname="argument authorization_url", value=authorization_url, expected_type=type_hints["authorization_url"])
|
|
5466
|
+
check_type(argname="argument token_url", value=token_url, expected_type=type_hints["token_url"])
|
|
3903
5467
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
3904
5468
|
"role_arn": role_arn,
|
|
3905
5469
|
"secret_arn": secret_arn,
|
|
3906
5470
|
}
|
|
5471
|
+
if authorization_url is not None:
|
|
5472
|
+
self._values["authorization_url"] = authorization_url
|
|
5473
|
+
if token_url is not None:
|
|
5474
|
+
self._values["token_url"] = token_url
|
|
3907
5475
|
|
|
3908
5476
|
@builtins.property
|
|
3909
5477
|
def role_arn(self) -> builtins.str:
|
|
@@ -3925,6 +5493,22 @@ class CfnPlugin(
|
|
|
3925
5493
|
assert result is not None, "Required property 'secret_arn' is missing"
|
|
3926
5494
|
return typing.cast(builtins.str, result)
|
|
3927
5495
|
|
|
5496
|
+
@builtins.property
|
|
5497
|
+
def authorization_url(self) -> typing.Optional[builtins.str]:
|
|
5498
|
+
'''
|
|
5499
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-plugin-oauth2clientcredentialconfiguration.html#cfn-qbusiness-plugin-oauth2clientcredentialconfiguration-authorizationurl
|
|
5500
|
+
'''
|
|
5501
|
+
result = self._values.get("authorization_url")
|
|
5502
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
5503
|
+
|
|
5504
|
+
@builtins.property
|
|
5505
|
+
def token_url(self) -> typing.Optional[builtins.str]:
|
|
5506
|
+
'''
|
|
5507
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-plugin-oauth2clientcredentialconfiguration.html#cfn-qbusiness-plugin-oauth2clientcredentialconfiguration-tokenurl
|
|
5508
|
+
'''
|
|
5509
|
+
result = self._values.get("token_url")
|
|
5510
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
5511
|
+
|
|
3928
5512
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
3929
5513
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
3930
5514
|
|
|
@@ -3978,7 +5562,11 @@ class CfnPlugin(
|
|
|
3978
5562
|
no_auth_configuration=no_auth_configuration,
|
|
3979
5563
|
o_auth2_client_credential_configuration=qbusiness.CfnPlugin.OAuth2ClientCredentialConfigurationProperty(
|
|
3980
5564
|
role_arn="roleArn",
|
|
3981
|
-
secret_arn="secretArn"
|
|
5565
|
+
secret_arn="secretArn",
|
|
5566
|
+
|
|
5567
|
+
# the properties below are optional
|
|
5568
|
+
authorization_url="authorizationUrl",
|
|
5569
|
+
token_url="tokenUrl"
|
|
3982
5570
|
)
|
|
3983
5571
|
)
|
|
3984
5572
|
'''
|
|
@@ -4108,10 +5696,10 @@ class CfnPlugin(
|
|
|
4108
5696
|
jsii_type="aws-cdk-lib.aws_qbusiness.CfnPluginProps",
|
|
4109
5697
|
jsii_struct_bases=[],
|
|
4110
5698
|
name_mapping={
|
|
4111
|
-
"application_id": "applicationId",
|
|
4112
5699
|
"auth_configuration": "authConfiguration",
|
|
4113
5700
|
"display_name": "displayName",
|
|
4114
5701
|
"type": "type",
|
|
5702
|
+
"application_id": "applicationId",
|
|
4115
5703
|
"custom_plugin_configuration": "customPluginConfiguration",
|
|
4116
5704
|
"server_url": "serverUrl",
|
|
4117
5705
|
"state": "state",
|
|
@@ -4122,10 +5710,10 @@ class CfnPluginProps:
|
|
|
4122
5710
|
def __init__(
|
|
4123
5711
|
self,
|
|
4124
5712
|
*,
|
|
4125
|
-
application_id: builtins.str,
|
|
4126
5713
|
auth_configuration: typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlugin.PluginAuthConfigurationProperty, typing.Dict[builtins.str, typing.Any]]],
|
|
4127
5714
|
display_name: builtins.str,
|
|
4128
5715
|
type: builtins.str,
|
|
5716
|
+
application_id: typing.Optional[builtins.str] = None,
|
|
4129
5717
|
custom_plugin_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlugin.CustomPluginConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4130
5718
|
server_url: typing.Optional[builtins.str] = None,
|
|
4131
5719
|
state: typing.Optional[builtins.str] = None,
|
|
@@ -4133,10 +5721,10 @@ class CfnPluginProps:
|
|
|
4133
5721
|
) -> None:
|
|
4134
5722
|
'''Properties for defining a ``CfnPlugin``.
|
|
4135
5723
|
|
|
4136
|
-
:param application_id: The identifier of the application that will contain the plugin.
|
|
4137
5724
|
:param auth_configuration: Authentication configuration information for an Amazon Q Business plugin.
|
|
4138
5725
|
:param display_name: The name of the plugin.
|
|
4139
5726
|
:param type: The type of the plugin.
|
|
5727
|
+
:param application_id: The identifier of the application that will contain the plugin.
|
|
4140
5728
|
:param custom_plugin_configuration: Configuration information required to create a custom plugin.
|
|
4141
5729
|
:param server_url: The plugin server URL used for configuration.
|
|
4142
5730
|
:param state: The current status of the plugin.
|
|
@@ -4154,7 +5742,6 @@ class CfnPluginProps:
|
|
|
4154
5742
|
# no_auth_configuration: Any
|
|
4155
5743
|
|
|
4156
5744
|
cfn_plugin_props = qbusiness.CfnPluginProps(
|
|
4157
|
-
application_id="applicationId",
|
|
4158
5745
|
auth_configuration=qbusiness.CfnPlugin.PluginAuthConfigurationProperty(
|
|
4159
5746
|
basic_auth_configuration=qbusiness.CfnPlugin.BasicAuthConfigurationProperty(
|
|
4160
5747
|
role_arn="roleArn",
|
|
@@ -4163,13 +5750,18 @@ class CfnPluginProps:
|
|
|
4163
5750
|
no_auth_configuration=no_auth_configuration,
|
|
4164
5751
|
o_auth2_client_credential_configuration=qbusiness.CfnPlugin.OAuth2ClientCredentialConfigurationProperty(
|
|
4165
5752
|
role_arn="roleArn",
|
|
4166
|
-
secret_arn="secretArn"
|
|
5753
|
+
secret_arn="secretArn",
|
|
5754
|
+
|
|
5755
|
+
# the properties below are optional
|
|
5756
|
+
authorization_url="authorizationUrl",
|
|
5757
|
+
token_url="tokenUrl"
|
|
4167
5758
|
)
|
|
4168
5759
|
),
|
|
4169
5760
|
display_name="displayName",
|
|
4170
5761
|
type="type",
|
|
4171
5762
|
|
|
4172
5763
|
# the properties below are optional
|
|
5764
|
+
application_id="applicationId",
|
|
4173
5765
|
custom_plugin_configuration=qbusiness.CfnPlugin.CustomPluginConfigurationProperty(
|
|
4174
5766
|
api_schema=qbusiness.CfnPlugin.APISchemaProperty(
|
|
4175
5767
|
payload="payload",
|
|
@@ -4191,20 +5783,21 @@ class CfnPluginProps:
|
|
|
4191
5783
|
'''
|
|
4192
5784
|
if __debug__:
|
|
4193
5785
|
type_hints = typing.get_type_hints(_typecheckingstub__84b206da5d8532987dc555e3bb32deb781317bbd9702ad893387d9a51e07b05f)
|
|
4194
|
-
check_type(argname="argument application_id", value=application_id, expected_type=type_hints["application_id"])
|
|
4195
5786
|
check_type(argname="argument auth_configuration", value=auth_configuration, expected_type=type_hints["auth_configuration"])
|
|
4196
5787
|
check_type(argname="argument display_name", value=display_name, expected_type=type_hints["display_name"])
|
|
4197
5788
|
check_type(argname="argument type", value=type, expected_type=type_hints["type"])
|
|
5789
|
+
check_type(argname="argument application_id", value=application_id, expected_type=type_hints["application_id"])
|
|
4198
5790
|
check_type(argname="argument custom_plugin_configuration", value=custom_plugin_configuration, expected_type=type_hints["custom_plugin_configuration"])
|
|
4199
5791
|
check_type(argname="argument server_url", value=server_url, expected_type=type_hints["server_url"])
|
|
4200
5792
|
check_type(argname="argument state", value=state, expected_type=type_hints["state"])
|
|
4201
5793
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
4202
5794
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
4203
|
-
"application_id": application_id,
|
|
4204
5795
|
"auth_configuration": auth_configuration,
|
|
4205
5796
|
"display_name": display_name,
|
|
4206
5797
|
"type": type,
|
|
4207
5798
|
}
|
|
5799
|
+
if application_id is not None:
|
|
5800
|
+
self._values["application_id"] = application_id
|
|
4208
5801
|
if custom_plugin_configuration is not None:
|
|
4209
5802
|
self._values["custom_plugin_configuration"] = custom_plugin_configuration
|
|
4210
5803
|
if server_url is not None:
|
|
@@ -4214,16 +5807,6 @@ class CfnPluginProps:
|
|
|
4214
5807
|
if tags is not None:
|
|
4215
5808
|
self._values["tags"] = tags
|
|
4216
5809
|
|
|
4217
|
-
@builtins.property
|
|
4218
|
-
def application_id(self) -> builtins.str:
|
|
4219
|
-
'''The identifier of the application that will contain the plugin.
|
|
4220
|
-
|
|
4221
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-plugin.html#cfn-qbusiness-plugin-applicationid
|
|
4222
|
-
'''
|
|
4223
|
-
result = self._values.get("application_id")
|
|
4224
|
-
assert result is not None, "Required property 'application_id' is missing"
|
|
4225
|
-
return typing.cast(builtins.str, result)
|
|
4226
|
-
|
|
4227
5810
|
@builtins.property
|
|
4228
5811
|
def auth_configuration(
|
|
4229
5812
|
self,
|
|
@@ -4256,6 +5839,15 @@ class CfnPluginProps:
|
|
|
4256
5839
|
assert result is not None, "Required property 'type' is missing"
|
|
4257
5840
|
return typing.cast(builtins.str, result)
|
|
4258
5841
|
|
|
5842
|
+
@builtins.property
|
|
5843
|
+
def application_id(self) -> typing.Optional[builtins.str]:
|
|
5844
|
+
'''The identifier of the application that will contain the plugin.
|
|
5845
|
+
|
|
5846
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-plugin.html#cfn-qbusiness-plugin-applicationid
|
|
5847
|
+
'''
|
|
5848
|
+
result = self._values.get("application_id")
|
|
5849
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
5850
|
+
|
|
4259
5851
|
@builtins.property
|
|
4260
5852
|
def custom_plugin_configuration(
|
|
4261
5853
|
self,
|
|
@@ -4919,6 +6511,12 @@ class CfnWebExperience(
|
|
|
4919
6511
|
application_id="applicationId",
|
|
4920
6512
|
|
|
4921
6513
|
# the properties below are optional
|
|
6514
|
+
customization_configuration=qbusiness.CfnWebExperience.CustomizationConfigurationProperty(
|
|
6515
|
+
custom_css_url="customCssUrl",
|
|
6516
|
+
favicon_url="faviconUrl",
|
|
6517
|
+
font_url="fontUrl",
|
|
6518
|
+
logo_url="logoUrl"
|
|
6519
|
+
),
|
|
4922
6520
|
identity_provider_configuration=qbusiness.CfnWebExperience.IdentityProviderConfigurationProperty(
|
|
4923
6521
|
open_id_connect_configuration=qbusiness.CfnWebExperience.OpenIDConnectProviderConfigurationProperty(
|
|
4924
6522
|
secrets_arn="secretsArn",
|
|
@@ -4947,6 +6545,7 @@ class CfnWebExperience(
|
|
|
4947
6545
|
id: builtins.str,
|
|
4948
6546
|
*,
|
|
4949
6547
|
application_id: builtins.str,
|
|
6548
|
+
customization_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnWebExperience.CustomizationConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4950
6549
|
identity_provider_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnWebExperience.IdentityProviderConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4951
6550
|
origins: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
4952
6551
|
role_arn: typing.Optional[builtins.str] = None,
|
|
@@ -4960,6 +6559,7 @@ class CfnWebExperience(
|
|
|
4960
6559
|
:param scope: Scope in which this resource is defined.
|
|
4961
6560
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
4962
6561
|
:param application_id: The identifier of the Amazon Q Business web experience.
|
|
6562
|
+
:param customization_configuration:
|
|
4963
6563
|
:param identity_provider_configuration: Provides information about the identity provider (IdP) used to authenticate end users of an Amazon Q Business web experience.
|
|
4964
6564
|
:param origins: Sets the website domain origins that are allowed to embed the Amazon Q Business web experience. The *domain origin* refers to the base URL for accessing a website including the protocol ( ``http/https`` ), the domain name, and the port number (if specified). .. epigraph:: You must only submit a *base URL* and not a full path. For example, ``https://docs.aws.amazon.com`` .
|
|
4965
6565
|
:param role_arn: The Amazon Resource Name (ARN) of the service role attached to your web experience. .. epigraph:: You must provide this value if you're using IAM Identity Center to manage end user access to your application. If you're using legacy identity management to manage user access, you don't need to provide this value.
|
|
@@ -4975,6 +6575,7 @@ class CfnWebExperience(
|
|
|
4975
6575
|
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
4976
6576
|
props = CfnWebExperienceProps(
|
|
4977
6577
|
application_id=application_id,
|
|
6578
|
+
customization_configuration=customization_configuration,
|
|
4978
6579
|
identity_provider_configuration=identity_provider_configuration,
|
|
4979
6580
|
origins=origins,
|
|
4980
6581
|
role_arn=role_arn,
|
|
@@ -5097,6 +6698,23 @@ class CfnWebExperience(
|
|
|
5097
6698
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5098
6699
|
jsii.set(self, "applicationId", value) # pyright: ignore[reportArgumentType]
|
|
5099
6700
|
|
|
6701
|
+
@builtins.property
|
|
6702
|
+
@jsii.member(jsii_name="customizationConfiguration")
|
|
6703
|
+
def customization_configuration(
|
|
6704
|
+
self,
|
|
6705
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnWebExperience.CustomizationConfigurationProperty"]]:
|
|
6706
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnWebExperience.CustomizationConfigurationProperty"]], jsii.get(self, "customizationConfiguration"))
|
|
6707
|
+
|
|
6708
|
+
@customization_configuration.setter
|
|
6709
|
+
def customization_configuration(
|
|
6710
|
+
self,
|
|
6711
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnWebExperience.CustomizationConfigurationProperty"]],
|
|
6712
|
+
) -> None:
|
|
6713
|
+
if __debug__:
|
|
6714
|
+
type_hints = typing.get_type_hints(_typecheckingstub__cf72d65c47bcc616319908521026308ce2d7a5972c8d440077fbbf82ebb97663)
|
|
6715
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
6716
|
+
jsii.set(self, "customizationConfiguration", value) # pyright: ignore[reportArgumentType]
|
|
6717
|
+
|
|
5100
6718
|
@builtins.property
|
|
5101
6719
|
@jsii.member(jsii_name="identityProviderConfiguration")
|
|
5102
6720
|
def identity_provider_configuration(
|
|
@@ -5206,6 +6824,106 @@ class CfnWebExperience(
|
|
|
5206
6824
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5207
6825
|
jsii.set(self, "welcomeMessage", value) # pyright: ignore[reportArgumentType]
|
|
5208
6826
|
|
|
6827
|
+
@jsii.data_type(
|
|
6828
|
+
jsii_type="aws-cdk-lib.aws_qbusiness.CfnWebExperience.CustomizationConfigurationProperty",
|
|
6829
|
+
jsii_struct_bases=[],
|
|
6830
|
+
name_mapping={
|
|
6831
|
+
"custom_css_url": "customCssUrl",
|
|
6832
|
+
"favicon_url": "faviconUrl",
|
|
6833
|
+
"font_url": "fontUrl",
|
|
6834
|
+
"logo_url": "logoUrl",
|
|
6835
|
+
},
|
|
6836
|
+
)
|
|
6837
|
+
class CustomizationConfigurationProperty:
|
|
6838
|
+
def __init__(
|
|
6839
|
+
self,
|
|
6840
|
+
*,
|
|
6841
|
+
custom_css_url: typing.Optional[builtins.str] = None,
|
|
6842
|
+
favicon_url: typing.Optional[builtins.str] = None,
|
|
6843
|
+
font_url: typing.Optional[builtins.str] = None,
|
|
6844
|
+
logo_url: typing.Optional[builtins.str] = None,
|
|
6845
|
+
) -> None:
|
|
6846
|
+
'''
|
|
6847
|
+
:param custom_css_url:
|
|
6848
|
+
:param favicon_url:
|
|
6849
|
+
:param font_url:
|
|
6850
|
+
:param logo_url:
|
|
6851
|
+
|
|
6852
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-webexperience-customizationconfiguration.html
|
|
6853
|
+
:exampleMetadata: fixture=_generated
|
|
6854
|
+
|
|
6855
|
+
Example::
|
|
6856
|
+
|
|
6857
|
+
# The code below shows an example of how to instantiate this type.
|
|
6858
|
+
# The values are placeholders you should change.
|
|
6859
|
+
from aws_cdk import aws_qbusiness as qbusiness
|
|
6860
|
+
|
|
6861
|
+
customization_configuration_property = qbusiness.CfnWebExperience.CustomizationConfigurationProperty(
|
|
6862
|
+
custom_css_url="customCssUrl",
|
|
6863
|
+
favicon_url="faviconUrl",
|
|
6864
|
+
font_url="fontUrl",
|
|
6865
|
+
logo_url="logoUrl"
|
|
6866
|
+
)
|
|
6867
|
+
'''
|
|
6868
|
+
if __debug__:
|
|
6869
|
+
type_hints = typing.get_type_hints(_typecheckingstub__a0715100f79db57a5a95a4fef0f7ea187376551e20bd796d1d430e1fd8d50a4d)
|
|
6870
|
+
check_type(argname="argument custom_css_url", value=custom_css_url, expected_type=type_hints["custom_css_url"])
|
|
6871
|
+
check_type(argname="argument favicon_url", value=favicon_url, expected_type=type_hints["favicon_url"])
|
|
6872
|
+
check_type(argname="argument font_url", value=font_url, expected_type=type_hints["font_url"])
|
|
6873
|
+
check_type(argname="argument logo_url", value=logo_url, expected_type=type_hints["logo_url"])
|
|
6874
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
6875
|
+
if custom_css_url is not None:
|
|
6876
|
+
self._values["custom_css_url"] = custom_css_url
|
|
6877
|
+
if favicon_url is not None:
|
|
6878
|
+
self._values["favicon_url"] = favicon_url
|
|
6879
|
+
if font_url is not None:
|
|
6880
|
+
self._values["font_url"] = font_url
|
|
6881
|
+
if logo_url is not None:
|
|
6882
|
+
self._values["logo_url"] = logo_url
|
|
6883
|
+
|
|
6884
|
+
@builtins.property
|
|
6885
|
+
def custom_css_url(self) -> typing.Optional[builtins.str]:
|
|
6886
|
+
'''
|
|
6887
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-webexperience-customizationconfiguration.html#cfn-qbusiness-webexperience-customizationconfiguration-customcssurl
|
|
6888
|
+
'''
|
|
6889
|
+
result = self._values.get("custom_css_url")
|
|
6890
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
6891
|
+
|
|
6892
|
+
@builtins.property
|
|
6893
|
+
def favicon_url(self) -> typing.Optional[builtins.str]:
|
|
6894
|
+
'''
|
|
6895
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-webexperience-customizationconfiguration.html#cfn-qbusiness-webexperience-customizationconfiguration-faviconurl
|
|
6896
|
+
'''
|
|
6897
|
+
result = self._values.get("favicon_url")
|
|
6898
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
6899
|
+
|
|
6900
|
+
@builtins.property
|
|
6901
|
+
def font_url(self) -> typing.Optional[builtins.str]:
|
|
6902
|
+
'''
|
|
6903
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-webexperience-customizationconfiguration.html#cfn-qbusiness-webexperience-customizationconfiguration-fonturl
|
|
6904
|
+
'''
|
|
6905
|
+
result = self._values.get("font_url")
|
|
6906
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
6907
|
+
|
|
6908
|
+
@builtins.property
|
|
6909
|
+
def logo_url(self) -> typing.Optional[builtins.str]:
|
|
6910
|
+
'''
|
|
6911
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-webexperience-customizationconfiguration.html#cfn-qbusiness-webexperience-customizationconfiguration-logourl
|
|
6912
|
+
'''
|
|
6913
|
+
result = self._values.get("logo_url")
|
|
6914
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
6915
|
+
|
|
6916
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
6917
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
6918
|
+
|
|
6919
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
6920
|
+
return not (rhs == self)
|
|
6921
|
+
|
|
6922
|
+
def __repr__(self) -> str:
|
|
6923
|
+
return "CustomizationConfigurationProperty(%s)" % ", ".join(
|
|
6924
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
6925
|
+
)
|
|
6926
|
+
|
|
5209
6927
|
@jsii.data_type(
|
|
5210
6928
|
jsii_type="aws-cdk-lib.aws_qbusiness.CfnWebExperience.IdentityProviderConfigurationProperty",
|
|
5211
6929
|
jsii_struct_bases=[],
|
|
@@ -5415,6 +7133,7 @@ class CfnWebExperience(
|
|
|
5415
7133
|
jsii_struct_bases=[],
|
|
5416
7134
|
name_mapping={
|
|
5417
7135
|
"application_id": "applicationId",
|
|
7136
|
+
"customization_configuration": "customizationConfiguration",
|
|
5418
7137
|
"identity_provider_configuration": "identityProviderConfiguration",
|
|
5419
7138
|
"origins": "origins",
|
|
5420
7139
|
"role_arn": "roleArn",
|
|
@@ -5430,6 +7149,7 @@ class CfnWebExperienceProps:
|
|
|
5430
7149
|
self,
|
|
5431
7150
|
*,
|
|
5432
7151
|
application_id: builtins.str,
|
|
7152
|
+
customization_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnWebExperience.CustomizationConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5433
7153
|
identity_provider_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnWebExperience.IdentityProviderConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5434
7154
|
origins: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
5435
7155
|
role_arn: typing.Optional[builtins.str] = None,
|
|
@@ -5442,6 +7162,7 @@ class CfnWebExperienceProps:
|
|
|
5442
7162
|
'''Properties for defining a ``CfnWebExperience``.
|
|
5443
7163
|
|
|
5444
7164
|
:param application_id: The identifier of the Amazon Q Business web experience.
|
|
7165
|
+
:param customization_configuration:
|
|
5445
7166
|
:param identity_provider_configuration: Provides information about the identity provider (IdP) used to authenticate end users of an Amazon Q Business web experience.
|
|
5446
7167
|
:param origins: Sets the website domain origins that are allowed to embed the Amazon Q Business web experience. The *domain origin* refers to the base URL for accessing a website including the protocol ( ``http/https`` ), the domain name, and the port number (if specified). .. epigraph:: You must only submit a *base URL* and not a full path. For example, ``https://docs.aws.amazon.com`` .
|
|
5447
7168
|
:param role_arn: The Amazon Resource Name (ARN) of the service role attached to your web experience. .. epigraph:: You must provide this value if you're using IAM Identity Center to manage end user access to your application. If you're using legacy identity management to manage user access, you don't need to provide this value.
|
|
@@ -5464,6 +7185,12 @@ class CfnWebExperienceProps:
|
|
|
5464
7185
|
application_id="applicationId",
|
|
5465
7186
|
|
|
5466
7187
|
# the properties below are optional
|
|
7188
|
+
customization_configuration=qbusiness.CfnWebExperience.CustomizationConfigurationProperty(
|
|
7189
|
+
custom_css_url="customCssUrl",
|
|
7190
|
+
favicon_url="faviconUrl",
|
|
7191
|
+
font_url="fontUrl",
|
|
7192
|
+
logo_url="logoUrl"
|
|
7193
|
+
),
|
|
5467
7194
|
identity_provider_configuration=qbusiness.CfnWebExperience.IdentityProviderConfigurationProperty(
|
|
5468
7195
|
open_id_connect_configuration=qbusiness.CfnWebExperience.OpenIDConnectProviderConfigurationProperty(
|
|
5469
7196
|
secrets_arn="secretsArn",
|
|
@@ -5488,6 +7215,7 @@ class CfnWebExperienceProps:
|
|
|
5488
7215
|
if __debug__:
|
|
5489
7216
|
type_hints = typing.get_type_hints(_typecheckingstub__58d2b12e60ffd88803f1746b34f5f9b5b77805b460b8074165db15b9de292293)
|
|
5490
7217
|
check_type(argname="argument application_id", value=application_id, expected_type=type_hints["application_id"])
|
|
7218
|
+
check_type(argname="argument customization_configuration", value=customization_configuration, expected_type=type_hints["customization_configuration"])
|
|
5491
7219
|
check_type(argname="argument identity_provider_configuration", value=identity_provider_configuration, expected_type=type_hints["identity_provider_configuration"])
|
|
5492
7220
|
check_type(argname="argument origins", value=origins, expected_type=type_hints["origins"])
|
|
5493
7221
|
check_type(argname="argument role_arn", value=role_arn, expected_type=type_hints["role_arn"])
|
|
@@ -5499,6 +7227,8 @@ class CfnWebExperienceProps:
|
|
|
5499
7227
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
5500
7228
|
"application_id": application_id,
|
|
5501
7229
|
}
|
|
7230
|
+
if customization_configuration is not None:
|
|
7231
|
+
self._values["customization_configuration"] = customization_configuration
|
|
5502
7232
|
if identity_provider_configuration is not None:
|
|
5503
7233
|
self._values["identity_provider_configuration"] = identity_provider_configuration
|
|
5504
7234
|
if origins is not None:
|
|
@@ -5526,6 +7256,16 @@ class CfnWebExperienceProps:
|
|
|
5526
7256
|
assert result is not None, "Required property 'application_id' is missing"
|
|
5527
7257
|
return typing.cast(builtins.str, result)
|
|
5528
7258
|
|
|
7259
|
+
@builtins.property
|
|
7260
|
+
def customization_configuration(
|
|
7261
|
+
self,
|
|
7262
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnWebExperience.CustomizationConfigurationProperty]]:
|
|
7263
|
+
'''
|
|
7264
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-webexperience.html#cfn-qbusiness-webexperience-customizationconfiguration
|
|
7265
|
+
'''
|
|
7266
|
+
result = self._values.get("customization_configuration")
|
|
7267
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnWebExperience.CustomizationConfigurationProperty]], result)
|
|
7268
|
+
|
|
5529
7269
|
@builtins.property
|
|
5530
7270
|
def identity_provider_configuration(
|
|
5531
7271
|
self,
|
|
@@ -5627,10 +7367,14 @@ class CfnWebExperienceProps:
|
|
|
5627
7367
|
__all__ = [
|
|
5628
7368
|
"CfnApplication",
|
|
5629
7369
|
"CfnApplicationProps",
|
|
7370
|
+
"CfnDataAccessor",
|
|
7371
|
+
"CfnDataAccessorProps",
|
|
5630
7372
|
"CfnDataSource",
|
|
5631
7373
|
"CfnDataSourceProps",
|
|
5632
7374
|
"CfnIndex",
|
|
5633
7375
|
"CfnIndexProps",
|
|
7376
|
+
"CfnPermission",
|
|
7377
|
+
"CfnPermissionProps",
|
|
5634
7378
|
"CfnPlugin",
|
|
5635
7379
|
"CfnPluginProps",
|
|
5636
7380
|
"CfnRetriever",
|
|
@@ -5656,6 +7400,7 @@ def _typecheckingstub__e2c95edfee8896187b03149b15ce3604b3a59bfb3b08abd73c5672b7c
|
|
|
5656
7400
|
identity_type: typing.Optional[builtins.str] = None,
|
|
5657
7401
|
personalization_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnApplication.PersonalizationConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5658
7402
|
q_apps_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnApplication.QAppsConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
7403
|
+
quick_sight_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnApplication.QuickSightConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5659
7404
|
role_arn: typing.Optional[builtins.str] = None,
|
|
5660
7405
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5661
7406
|
) -> None:
|
|
@@ -5740,6 +7485,12 @@ def _typecheckingstub__53d92c70961aea8a11ca2bb523fd9f10d2b780d9bda90114e0350e538
|
|
|
5740
7485
|
"""Type checking stubs"""
|
|
5741
7486
|
pass
|
|
5742
7487
|
|
|
7488
|
+
def _typecheckingstub__289094e649887b05a6dfd8fdfb09369f7df0be2c7c7ede77435c953ed16f9d97(
|
|
7489
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnApplication.QuickSightConfigurationProperty]],
|
|
7490
|
+
) -> None:
|
|
7491
|
+
"""Type checking stubs"""
|
|
7492
|
+
pass
|
|
7493
|
+
|
|
5743
7494
|
def _typecheckingstub__1658266e462038ba089b94b22bb7d75b2047bb6b00110e1a3ad8d2941efe4b91(
|
|
5744
7495
|
value: typing.Optional[builtins.str],
|
|
5745
7496
|
) -> None:
|
|
@@ -5788,6 +7539,13 @@ def _typecheckingstub__6b7142160185e09a91c9d85e4a5dafc98a64398c744201a937b09ca7c
|
|
|
5788
7539
|
"""Type checking stubs"""
|
|
5789
7540
|
pass
|
|
5790
7541
|
|
|
7542
|
+
def _typecheckingstub__2a553c98b052035d7e975a15cd8521cc9a275d10bf22d783650de9883bdd715a(
|
|
7543
|
+
*,
|
|
7544
|
+
client_namespace: builtins.str,
|
|
7545
|
+
) -> None:
|
|
7546
|
+
"""Type checking stubs"""
|
|
7547
|
+
pass
|
|
7548
|
+
|
|
5791
7549
|
def _typecheckingstub__cd218bde3aa6ce3304b30e1d4799c501a50db8db5cef8926c28924af066170bb(
|
|
5792
7550
|
*,
|
|
5793
7551
|
display_name: builtins.str,
|
|
@@ -5801,12 +7559,128 @@ def _typecheckingstub__cd218bde3aa6ce3304b30e1d4799c501a50db8db5cef8926c28924af0
|
|
|
5801
7559
|
identity_type: typing.Optional[builtins.str] = None,
|
|
5802
7560
|
personalization_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnApplication.PersonalizationConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5803
7561
|
q_apps_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnApplication.QAppsConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
7562
|
+
quick_sight_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnApplication.QuickSightConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5804
7563
|
role_arn: typing.Optional[builtins.str] = None,
|
|
5805
7564
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5806
7565
|
) -> None:
|
|
5807
7566
|
"""Type checking stubs"""
|
|
5808
7567
|
pass
|
|
5809
7568
|
|
|
7569
|
+
def _typecheckingstub__32b7ecf69912e25edcd2354b3e0497931ea6bf042b1aabc881c8677d2f9be633(
|
|
7570
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
7571
|
+
id: builtins.str,
|
|
7572
|
+
*,
|
|
7573
|
+
action_configurations: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataAccessor.ActionConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]],
|
|
7574
|
+
display_name: builtins.str,
|
|
7575
|
+
principal: builtins.str,
|
|
7576
|
+
application_id: typing.Optional[builtins.str] = None,
|
|
7577
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
7578
|
+
) -> None:
|
|
7579
|
+
"""Type checking stubs"""
|
|
7580
|
+
pass
|
|
7581
|
+
|
|
7582
|
+
def _typecheckingstub__ff90302eca1e0f24b3ab926881bc0099a551d74c3a71debb214f222b63ff0ee4(
|
|
7583
|
+
inspector: _TreeInspector_488e0dd5,
|
|
7584
|
+
) -> None:
|
|
7585
|
+
"""Type checking stubs"""
|
|
7586
|
+
pass
|
|
7587
|
+
|
|
7588
|
+
def _typecheckingstub__75e79c605177a09c4ca1c1253b30113e8f2b7e023dafa75d6583c9b993c3a905(
|
|
7589
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
7590
|
+
) -> None:
|
|
7591
|
+
"""Type checking stubs"""
|
|
7592
|
+
pass
|
|
7593
|
+
|
|
7594
|
+
def _typecheckingstub__a27c05d04ed77ea1630a00c4575933bd29a7548e12cd5406b1a703d094f618f7(
|
|
7595
|
+
value: typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnDataAccessor.ActionConfigurationProperty]]],
|
|
7596
|
+
) -> None:
|
|
7597
|
+
"""Type checking stubs"""
|
|
7598
|
+
pass
|
|
7599
|
+
|
|
7600
|
+
def _typecheckingstub__d24d4191af1a9b63f7ef66ae53cd5e78c9587db0b3d4e54adc5863415cdec9f0(
|
|
7601
|
+
value: builtins.str,
|
|
7602
|
+
) -> None:
|
|
7603
|
+
"""Type checking stubs"""
|
|
7604
|
+
pass
|
|
7605
|
+
|
|
7606
|
+
def _typecheckingstub__fd64ede16f385d2990fa12fa363564c55f359fed279a75365018e42cd6e63fff(
|
|
7607
|
+
value: builtins.str,
|
|
7608
|
+
) -> None:
|
|
7609
|
+
"""Type checking stubs"""
|
|
7610
|
+
pass
|
|
7611
|
+
|
|
7612
|
+
def _typecheckingstub__d51b8675a76ff8aa3cd324d2a65da776f4afb1d4600f74839c262998a87adb06(
|
|
7613
|
+
value: typing.Optional[builtins.str],
|
|
7614
|
+
) -> None:
|
|
7615
|
+
"""Type checking stubs"""
|
|
7616
|
+
pass
|
|
7617
|
+
|
|
7618
|
+
def _typecheckingstub__17fcd903858daed5111fdf34ce66e12720cfa6fd9e1712eb5744a4b8c06fb1fe(
|
|
7619
|
+
value: typing.Optional[typing.List[_CfnTag_f6864754]],
|
|
7620
|
+
) -> None:
|
|
7621
|
+
"""Type checking stubs"""
|
|
7622
|
+
pass
|
|
7623
|
+
|
|
7624
|
+
def _typecheckingstub__070f31842bf80fdbf737bccdee5b0121eca70d5c6c0d69c119f4d283e3dc8f0f(
|
|
7625
|
+
*,
|
|
7626
|
+
action: builtins.str,
|
|
7627
|
+
filter_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataAccessor.ActionFilterConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
7628
|
+
) -> None:
|
|
7629
|
+
"""Type checking stubs"""
|
|
7630
|
+
pass
|
|
7631
|
+
|
|
7632
|
+
def _typecheckingstub__d8fdd75aa62747889da79fe0b8ab1526d92b0a13360be1d371fd7ca34ee6894e(
|
|
7633
|
+
*,
|
|
7634
|
+
document_attribute_filter: typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataAccessor.AttributeFilterProperty, typing.Dict[builtins.str, typing.Any]]],
|
|
7635
|
+
) -> None:
|
|
7636
|
+
"""Type checking stubs"""
|
|
7637
|
+
pass
|
|
7638
|
+
|
|
7639
|
+
def _typecheckingstub__e0944dd9fc73c38902199011a9a1b06a552398d255157793794e769d86581ed7(
|
|
7640
|
+
*,
|
|
7641
|
+
and_all_filters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataAccessor.AttributeFilterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
7642
|
+
contains_all: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataAccessor.DocumentAttributeProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
7643
|
+
contains_any: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataAccessor.DocumentAttributeProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
7644
|
+
equals_to: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataAccessor.DocumentAttributeProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
7645
|
+
greater_than: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataAccessor.DocumentAttributeProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
7646
|
+
greater_than_or_equals: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataAccessor.DocumentAttributeProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
7647
|
+
less_than: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataAccessor.DocumentAttributeProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
7648
|
+
less_than_or_equals: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataAccessor.DocumentAttributeProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
7649
|
+
not_filter: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataAccessor.AttributeFilterProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
7650
|
+
or_all_filters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataAccessor.AttributeFilterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
7651
|
+
) -> None:
|
|
7652
|
+
"""Type checking stubs"""
|
|
7653
|
+
pass
|
|
7654
|
+
|
|
7655
|
+
def _typecheckingstub__fc877a8d06303e2294e4f8e5813534f57082fb9476b669bafe4451af29bb5979(
|
|
7656
|
+
*,
|
|
7657
|
+
name: builtins.str,
|
|
7658
|
+
value: typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataAccessor.DocumentAttributeValueProperty, typing.Dict[builtins.str, typing.Any]]],
|
|
7659
|
+
) -> None:
|
|
7660
|
+
"""Type checking stubs"""
|
|
7661
|
+
pass
|
|
7662
|
+
|
|
7663
|
+
def _typecheckingstub__edee8eec89905fde650437fb2fcf2bc7ddeaecc251be16c2ca1d64d79b7eb5a5(
|
|
7664
|
+
*,
|
|
7665
|
+
date_value: typing.Optional[builtins.str] = None,
|
|
7666
|
+
long_value: typing.Optional[jsii.Number] = None,
|
|
7667
|
+
string_list_value: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
7668
|
+
string_value: typing.Optional[builtins.str] = None,
|
|
7669
|
+
) -> None:
|
|
7670
|
+
"""Type checking stubs"""
|
|
7671
|
+
pass
|
|
7672
|
+
|
|
7673
|
+
def _typecheckingstub__4dfde2d4c17793fa3cb9793a9171b9042ac55727b3f0c3a17f1606cab5545458(
|
|
7674
|
+
*,
|
|
7675
|
+
action_configurations: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataAccessor.ActionConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]],
|
|
7676
|
+
display_name: builtins.str,
|
|
7677
|
+
principal: builtins.str,
|
|
7678
|
+
application_id: typing.Optional[builtins.str] = None,
|
|
7679
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
7680
|
+
) -> None:
|
|
7681
|
+
"""Type checking stubs"""
|
|
7682
|
+
pass
|
|
7683
|
+
|
|
5810
7684
|
def _typecheckingstub__44090f525589bca757ae88a29adc87bbfc36c3149c7964dfd32c2ce59b69db58(
|
|
5811
7685
|
scope: _constructs_77d1e7e8.Construct,
|
|
5812
7686
|
id: builtins.str,
|
|
@@ -6090,14 +7964,72 @@ def _typecheckingstub__92562a229c76d1c1bf48f7735d22def1e598923d94ebef2d66b70a174
|
|
|
6090
7964
|
"""Type checking stubs"""
|
|
6091
7965
|
pass
|
|
6092
7966
|
|
|
6093
|
-
def
|
|
7967
|
+
def _typecheckingstub__aa8b9992ffebedf4dda280be4bd0aa5dade8d62a6c092d850b1b1bb8df042ee8(
|
|
6094
7968
|
scope: _constructs_77d1e7e8.Construct,
|
|
6095
7969
|
id: builtins.str,
|
|
6096
7970
|
*,
|
|
7971
|
+
actions: typing.Sequence[builtins.str],
|
|
7972
|
+
application_id: builtins.str,
|
|
7973
|
+
principal: builtins.str,
|
|
7974
|
+
statement_id: builtins.str,
|
|
7975
|
+
) -> None:
|
|
7976
|
+
"""Type checking stubs"""
|
|
7977
|
+
pass
|
|
7978
|
+
|
|
7979
|
+
def _typecheckingstub__486d860cba58c25ad8a704d89ac04d1c97b77e0a8335b95ea6b91e0055822d82(
|
|
7980
|
+
inspector: _TreeInspector_488e0dd5,
|
|
7981
|
+
) -> None:
|
|
7982
|
+
"""Type checking stubs"""
|
|
7983
|
+
pass
|
|
7984
|
+
|
|
7985
|
+
def _typecheckingstub__0b04db3dd9150fe212749577b23464a861914114372d66de4e94f86f0c249312(
|
|
7986
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
7987
|
+
) -> None:
|
|
7988
|
+
"""Type checking stubs"""
|
|
7989
|
+
pass
|
|
7990
|
+
|
|
7991
|
+
def _typecheckingstub__39d8a75c9a38f2eedadc1f546593db77ee47e4125872cb57b22cf5548b71f021(
|
|
7992
|
+
value: typing.List[builtins.str],
|
|
7993
|
+
) -> None:
|
|
7994
|
+
"""Type checking stubs"""
|
|
7995
|
+
pass
|
|
7996
|
+
|
|
7997
|
+
def _typecheckingstub__c8fe48822501c0010e5b09bf79b5fbff369d246e10a55c9aa06207fb883b9011(
|
|
7998
|
+
value: builtins.str,
|
|
7999
|
+
) -> None:
|
|
8000
|
+
"""Type checking stubs"""
|
|
8001
|
+
pass
|
|
8002
|
+
|
|
8003
|
+
def _typecheckingstub__0006a2c0010c9479f601e5c854918c05afd29c14583b90821fa3cec8abe28068(
|
|
8004
|
+
value: builtins.str,
|
|
8005
|
+
) -> None:
|
|
8006
|
+
"""Type checking stubs"""
|
|
8007
|
+
pass
|
|
8008
|
+
|
|
8009
|
+
def _typecheckingstub__5bf1e79f20a58bfbabb1ce356f12e0ce01131844f0c50f11db4e0f82f47f71e7(
|
|
8010
|
+
value: builtins.str,
|
|
8011
|
+
) -> None:
|
|
8012
|
+
"""Type checking stubs"""
|
|
8013
|
+
pass
|
|
8014
|
+
|
|
8015
|
+
def _typecheckingstub__7ea87fcda68d4a26468f5e5d1c394a46d117b80b00274f61bbd36b0329a0a8c4(
|
|
8016
|
+
*,
|
|
8017
|
+
actions: typing.Sequence[builtins.str],
|
|
6097
8018
|
application_id: builtins.str,
|
|
8019
|
+
principal: builtins.str,
|
|
8020
|
+
statement_id: builtins.str,
|
|
8021
|
+
) -> None:
|
|
8022
|
+
"""Type checking stubs"""
|
|
8023
|
+
pass
|
|
8024
|
+
|
|
8025
|
+
def _typecheckingstub__65b6fb8d65ff428790a22d304932f2713710d70a9f6d789d819489f81a05b6f1(
|
|
8026
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
8027
|
+
id: builtins.str,
|
|
8028
|
+
*,
|
|
6098
8029
|
auth_configuration: typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlugin.PluginAuthConfigurationProperty, typing.Dict[builtins.str, typing.Any]]],
|
|
6099
8030
|
display_name: builtins.str,
|
|
6100
8031
|
type: builtins.str,
|
|
8032
|
+
application_id: typing.Optional[builtins.str] = None,
|
|
6101
8033
|
custom_plugin_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlugin.CustomPluginConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6102
8034
|
server_url: typing.Optional[builtins.str] = None,
|
|
6103
8035
|
state: typing.Optional[builtins.str] = None,
|
|
@@ -6118,12 +8050,6 @@ def _typecheckingstub__cc4e2ac4c2bff624e773994eee3ffed34fc99668cd3dc39ca6b437875
|
|
|
6118
8050
|
"""Type checking stubs"""
|
|
6119
8051
|
pass
|
|
6120
8052
|
|
|
6121
|
-
def _typecheckingstub__b30e993c552d6b7b2897c130ead401b972163585b579b8261fba5f11c45ea7f5(
|
|
6122
|
-
value: builtins.str,
|
|
6123
|
-
) -> None:
|
|
6124
|
-
"""Type checking stubs"""
|
|
6125
|
-
pass
|
|
6126
|
-
|
|
6127
8053
|
def _typecheckingstub__fc09bef25ae0d3b934b9f84632eb962f4421b7e977774cbd9588396218197347(
|
|
6128
8054
|
value: typing.Union[_IResolvable_da3f097b, CfnPlugin.PluginAuthConfigurationProperty],
|
|
6129
8055
|
) -> None:
|
|
@@ -6142,6 +8068,12 @@ def _typecheckingstub__0fb0c242fab3286e70f3bc5d132c40cefb0d3796d14ea543a14437f34
|
|
|
6142
8068
|
"""Type checking stubs"""
|
|
6143
8069
|
pass
|
|
6144
8070
|
|
|
8071
|
+
def _typecheckingstub__b30e993c552d6b7b2897c130ead401b972163585b579b8261fba5f11c45ea7f5(
|
|
8072
|
+
value: typing.Optional[builtins.str],
|
|
8073
|
+
) -> None:
|
|
8074
|
+
"""Type checking stubs"""
|
|
8075
|
+
pass
|
|
8076
|
+
|
|
6145
8077
|
def _typecheckingstub__ca8ebc7a910b53db546c0124994a836ad4abf9624aa8a90b48603c35f2536b6b(
|
|
6146
8078
|
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnPlugin.CustomPluginConfigurationProperty]],
|
|
6147
8079
|
) -> None:
|
|
@@ -6195,6 +8127,8 @@ def _typecheckingstub__5bc6d1d65b9c1e5c3607318c662a2a393df7ecf909b2d2ef7437364ad
|
|
|
6195
8127
|
*,
|
|
6196
8128
|
role_arn: builtins.str,
|
|
6197
8129
|
secret_arn: builtins.str,
|
|
8130
|
+
authorization_url: typing.Optional[builtins.str] = None,
|
|
8131
|
+
token_url: typing.Optional[builtins.str] = None,
|
|
6198
8132
|
) -> None:
|
|
6199
8133
|
"""Type checking stubs"""
|
|
6200
8134
|
pass
|
|
@@ -6218,10 +8152,10 @@ def _typecheckingstub__4f7a033a4dede9d0d05480348522d93d5c1d4a0e27d0009e6612ae5c5
|
|
|
6218
8152
|
|
|
6219
8153
|
def _typecheckingstub__84b206da5d8532987dc555e3bb32deb781317bbd9702ad893387d9a51e07b05f(
|
|
6220
8154
|
*,
|
|
6221
|
-
application_id: builtins.str,
|
|
6222
8155
|
auth_configuration: typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlugin.PluginAuthConfigurationProperty, typing.Dict[builtins.str, typing.Any]]],
|
|
6223
8156
|
display_name: builtins.str,
|
|
6224
8157
|
type: builtins.str,
|
|
8158
|
+
application_id: typing.Optional[builtins.str] = None,
|
|
6225
8159
|
custom_plugin_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPlugin.CustomPluginConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6226
8160
|
server_url: typing.Optional[builtins.str] = None,
|
|
6227
8161
|
state: typing.Optional[builtins.str] = None,
|
|
@@ -6331,6 +8265,7 @@ def _typecheckingstub__357871375e43a0ed6fbb398668ece13df26dff3afca5c98268a56fffd
|
|
|
6331
8265
|
id: builtins.str,
|
|
6332
8266
|
*,
|
|
6333
8267
|
application_id: builtins.str,
|
|
8268
|
+
customization_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnWebExperience.CustomizationConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6334
8269
|
identity_provider_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnWebExperience.IdentityProviderConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6335
8270
|
origins: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
6336
8271
|
role_arn: typing.Optional[builtins.str] = None,
|
|
@@ -6361,6 +8296,12 @@ def _typecheckingstub__994b24302ed92226579fa1ecdeef04d0cb66956019e467efcd9374ab2
|
|
|
6361
8296
|
"""Type checking stubs"""
|
|
6362
8297
|
pass
|
|
6363
8298
|
|
|
8299
|
+
def _typecheckingstub__cf72d65c47bcc616319908521026308ce2d7a5972c8d440077fbbf82ebb97663(
|
|
8300
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnWebExperience.CustomizationConfigurationProperty]],
|
|
8301
|
+
) -> None:
|
|
8302
|
+
"""Type checking stubs"""
|
|
8303
|
+
pass
|
|
8304
|
+
|
|
6364
8305
|
def _typecheckingstub__037151dbe9f2f36da364495e39b2467a261694df042a6b81d84e5c2c34771ac4(
|
|
6365
8306
|
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnWebExperience.IdentityProviderConfigurationProperty]],
|
|
6366
8307
|
) -> None:
|
|
@@ -6409,6 +8350,16 @@ def _typecheckingstub__4dc11f2c0364936c993f550de31ea07513a76ae6f389384341e03770b
|
|
|
6409
8350
|
"""Type checking stubs"""
|
|
6410
8351
|
pass
|
|
6411
8352
|
|
|
8353
|
+
def _typecheckingstub__a0715100f79db57a5a95a4fef0f7ea187376551e20bd796d1d430e1fd8d50a4d(
|
|
8354
|
+
*,
|
|
8355
|
+
custom_css_url: typing.Optional[builtins.str] = None,
|
|
8356
|
+
favicon_url: typing.Optional[builtins.str] = None,
|
|
8357
|
+
font_url: typing.Optional[builtins.str] = None,
|
|
8358
|
+
logo_url: typing.Optional[builtins.str] = None,
|
|
8359
|
+
) -> None:
|
|
8360
|
+
"""Type checking stubs"""
|
|
8361
|
+
pass
|
|
8362
|
+
|
|
6412
8363
|
def _typecheckingstub__f792f47d6a0722e8b808ad22d67aec07629a1e7351865cae0ee890cff9ba5c1a(
|
|
6413
8364
|
*,
|
|
6414
8365
|
open_id_connect_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnWebExperience.OpenIDConnectProviderConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -6435,6 +8386,7 @@ def _typecheckingstub__7f19a9da1f3a1cf2eefff3580476a949609debe65a8fc477af11c893d
|
|
|
6435
8386
|
def _typecheckingstub__58d2b12e60ffd88803f1746b34f5f9b5b77805b460b8074165db15b9de292293(
|
|
6436
8387
|
*,
|
|
6437
8388
|
application_id: builtins.str,
|
|
8389
|
+
customization_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnWebExperience.CustomizationConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6438
8390
|
identity_provider_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnWebExperience.IdentityProviderConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6439
8391
|
origins: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
6440
8392
|
role_arn: typing.Optional[builtins.str] = None,
|