aws-cdk-lib 2.118.0__py3-none-any.whl → 2.119.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of aws-cdk-lib might be problematic. Click here for more details.
- aws_cdk/__init__.py +4 -0
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.118.0.jsii.tgz → aws-cdk-lib@2.119.0.jsii.tgz} +0 -0
- aws_cdk/amzn_sdc/__init__.py +496 -0
- aws_cdk/aws_appsync/__init__.py +23 -9
- aws_cdk/aws_certificatemanager/__init__.py +164 -3
- aws_cdk/aws_cloud9/__init__.py +3 -3
- aws_cdk/aws_cloudfront/__init__.py +105 -5
- aws_cdk/aws_cloudtrail/__init__.py +54 -34
- aws_cdk/aws_cloudwatch_actions/__init__.py +105 -0
- aws_cdk/aws_codebuild/__init__.py +1 -0
- aws_cdk/aws_codecommit/__init__.py +9 -3
- aws_cdk/aws_codetest/__init__.py +788 -0
- aws_cdk/aws_cognito/__init__.py +104 -0
- aws_cdk/aws_connect/__init__.py +626 -78
- aws_cdk/aws_docdb/__init__.py +442 -0
- aws_cdk/aws_dynamodb/__init__.py +14 -0
- aws_cdk/aws_ec2/__init__.py +372 -44
- aws_cdk/aws_emrserverless/__init__.py +20 -13
- aws_cdk/aws_events/__init__.py +90 -1
- aws_cdk/aws_fis/__init__.py +12 -32
- aws_cdk/aws_globalaccelerator/__init__.py +19 -0
- aws_cdk/aws_glue/__init__.py +329 -0
- aws_cdk/aws_iam/__init__.py +30 -24
- aws_cdk/aws_iot/__init__.py +112 -0
- aws_cdk/aws_iotsitewise/__init__.py +4 -4
- aws_cdk/aws_kendra/__init__.py +10 -5
- aws_cdk/aws_kinesisfirehose/__init__.py +111 -0
- aws_cdk/aws_location/__init__.py +1132 -17
- aws_cdk/aws_mediatailor/__init__.py +120 -17
- aws_cdk/aws_networkfirewall/__init__.py +2 -2
- aws_cdk/aws_networkmanager/__init__.py +1 -1
- aws_cdk/aws_omics/__init__.py +4 -4
- aws_cdk/aws_opensearchservice/__init__.py +2 -0
- aws_cdk/aws_pinpoint/__init__.py +14 -6
- aws_cdk/aws_pipes/__init__.py +7 -2
- aws_cdk/aws_rds/__init__.py +15 -9
- aws_cdk/aws_redshift/__init__.py +103 -0
- aws_cdk/aws_route53/__init__.py +68 -20
- aws_cdk/aws_s3/__init__.py +2 -4
- aws_cdk/aws_s3objectlambda/__init__.py +2 -2
- aws_cdk/aws_servicecatalogappregistry/__init__.py +3 -3
- aws_cdk/aws_signer/__init__.py +27 -4
- aws_cdk/aws_ssm/__init__.py +76 -13
- aws_cdk/aws_stepfunctions/__init__.py +110 -5
- aws_cdk/pipelines/__init__.py +136 -37
- {aws_cdk_lib-2.118.0.dist-info → aws_cdk_lib-2.119.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.118.0.dist-info → aws_cdk_lib-2.119.0.dist-info}/RECORD +52 -50
- {aws_cdk_lib-2.118.0.dist-info → aws_cdk_lib-2.119.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.118.0.dist-info → aws_cdk_lib-2.119.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.118.0.dist-info → aws_cdk_lib-2.119.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.118.0.dist-info → aws_cdk_lib-2.119.0.dist-info}/top_level.txt +0 -0
aws_cdk/__init__.py
CHANGED
|
@@ -33766,6 +33766,7 @@ __all__ = [
|
|
|
33766
33766
|
"ValidationResult",
|
|
33767
33767
|
"ValidationResults",
|
|
33768
33768
|
"alexa_ask",
|
|
33769
|
+
"amzn_sdc",
|
|
33769
33770
|
"assertions",
|
|
33770
33771
|
"aws_accessanalyzer",
|
|
33771
33772
|
"aws_acmpca",
|
|
@@ -33823,6 +33824,7 @@ __all__ = [
|
|
|
33823
33824
|
"aws_codestar",
|
|
33824
33825
|
"aws_codestarconnections",
|
|
33825
33826
|
"aws_codestarnotifications",
|
|
33827
|
+
"aws_codetest",
|
|
33826
33828
|
"aws_cognito",
|
|
33827
33829
|
"aws_comprehend",
|
|
33828
33830
|
"aws_config",
|
|
@@ -34040,6 +34042,7 @@ publication.publish()
|
|
|
34040
34042
|
|
|
34041
34043
|
# Loading modules to ensure their types are registered with the jsii runtime library
|
|
34042
34044
|
from . import alexa_ask
|
|
34045
|
+
from . import amzn_sdc
|
|
34043
34046
|
from . import assertions
|
|
34044
34047
|
from . import aws_accessanalyzer
|
|
34045
34048
|
from . import aws_acmpca
|
|
@@ -34097,6 +34100,7 @@ from . import aws_codepipeline_actions
|
|
|
34097
34100
|
from . import aws_codestar
|
|
34098
34101
|
from . import aws_codestarconnections
|
|
34099
34102
|
from . import aws_codestarnotifications
|
|
34103
|
+
from . import aws_codetest
|
|
34100
34104
|
from . import aws_cognito
|
|
34101
34105
|
from . import aws_comprehend
|
|
34102
34106
|
from . import aws_config
|
aws_cdk/_jsii/__init__.py
CHANGED
|
@@ -16,7 +16,7 @@ import aws_cdk.asset_node_proxy_agent_v6._jsii
|
|
|
16
16
|
import constructs._jsii
|
|
17
17
|
|
|
18
18
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
19
|
-
"aws-cdk-lib", "2.
|
|
19
|
+
"aws-cdk-lib", "2.119.0", __name__[0:-6], "aws-cdk-lib@2.119.0.jsii.tgz"
|
|
20
20
|
)
|
|
21
21
|
|
|
22
22
|
__all__ = [
|
|
Binary file
|
|
@@ -0,0 +1,496 @@
|
|
|
1
|
+
'''
|
|
2
|
+
# AMZN::SDC Construct Library
|
|
3
|
+
|
|
4
|
+
<!--BEGIN STABILITY BANNER-->---
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+

|
|
8
|
+
|
|
9
|
+
> All classes with the `Cfn` prefix in this module ([CFN Resources](https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_lib)) are always stable and safe to use.
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
<!--END STABILITY BANNER-->
|
|
13
|
+
|
|
14
|
+
This module is part of the [AWS Cloud Development Kit](https://github.com/aws/aws-cdk) project.
|
|
15
|
+
|
|
16
|
+
```python
|
|
17
|
+
import aws_cdk.amzn_sdc as amzn_sdc
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
<!--BEGIN CFNONLY DISCLAIMER-->
|
|
21
|
+
|
|
22
|
+
There are no official hand-written ([L2](https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_lib)) constructs for this service yet. Here are some suggestions on how to proceed:
|
|
23
|
+
|
|
24
|
+
* Search [Construct Hub for SDC construct libraries](https://constructs.dev/search?q=sdc)
|
|
25
|
+
* Use the automatically generated [L1](https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_l1_using) constructs, in the same way you would use [the CloudFormation AMZN::SDC resources](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AMZN_SDC.html) directly.
|
|
26
|
+
|
|
27
|
+
<!--BEGIN CFNONLY DISCLAIMER-->
|
|
28
|
+
|
|
29
|
+
There are no hand-written ([L2](https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_lib)) constructs for this service yet.
|
|
30
|
+
However, you can still use the automatically generated [L1](https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_l1_using) constructs, and use this service exactly as you would using CloudFormation directly.
|
|
31
|
+
|
|
32
|
+
For more information on the resources and properties available for this service, see the [CloudFormation documentation for AMZN::SDC](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AMZN_SDC.html).
|
|
33
|
+
|
|
34
|
+
(Read the [CDK Contributing Guide](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and submit an RFC if you are interested in contributing to this construct library.)
|
|
35
|
+
|
|
36
|
+
<!--END CFNONLY DISCLAIMER-->
|
|
37
|
+
'''
|
|
38
|
+
import abc
|
|
39
|
+
import builtins
|
|
40
|
+
import datetime
|
|
41
|
+
import enum
|
|
42
|
+
import typing
|
|
43
|
+
|
|
44
|
+
import jsii
|
|
45
|
+
import publication
|
|
46
|
+
import typing_extensions
|
|
47
|
+
|
|
48
|
+
from typeguard import check_type
|
|
49
|
+
|
|
50
|
+
from .._jsii import *
|
|
51
|
+
|
|
52
|
+
import constructs as _constructs_77d1e7e8
|
|
53
|
+
from .. import (
|
|
54
|
+
CfnResource as _CfnResource_9df397a6,
|
|
55
|
+
IInspectable as _IInspectable_c2943556,
|
|
56
|
+
TreeInspector as _TreeInspector_488e0dd5,
|
|
57
|
+
)
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
@jsii.implements(_IInspectable_c2943556)
|
|
61
|
+
class CfnDeployment(
|
|
62
|
+
_CfnResource_9df397a6,
|
|
63
|
+
metaclass=jsii.JSIIMeta,
|
|
64
|
+
jsii_type="aws-cdk-lib.amzn_sdc.CfnDeployment",
|
|
65
|
+
):
|
|
66
|
+
'''Resource Type definition for AMZN::SDC::Deployment.
|
|
67
|
+
|
|
68
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sdc-deployment.html
|
|
69
|
+
:cloudformationResource: AMZN::SDC::Deployment
|
|
70
|
+
:exampleMetadata: fixture=_generated
|
|
71
|
+
|
|
72
|
+
Example::
|
|
73
|
+
|
|
74
|
+
# The code below shows an example of how to instantiate this type.
|
|
75
|
+
# The values are placeholders you should change.
|
|
76
|
+
from aws_cdk import amzn_sdc
|
|
77
|
+
|
|
78
|
+
cfn_deployment = amzn_sdc.CfnDeployment(self, "MyCfnDeployment",
|
|
79
|
+
config_name="configName",
|
|
80
|
+
dimension="dimension",
|
|
81
|
+
s3_bucket="s3Bucket",
|
|
82
|
+
s3_key="s3Key",
|
|
83
|
+
stage="stage",
|
|
84
|
+
|
|
85
|
+
# the properties below are optional
|
|
86
|
+
pipeline_id="pipelineId",
|
|
87
|
+
target_region_override="targetRegionOverride"
|
|
88
|
+
)
|
|
89
|
+
'''
|
|
90
|
+
|
|
91
|
+
def __init__(
|
|
92
|
+
self,
|
|
93
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
94
|
+
id: builtins.str,
|
|
95
|
+
*,
|
|
96
|
+
config_name: builtins.str,
|
|
97
|
+
dimension: builtins.str,
|
|
98
|
+
s3_bucket: builtins.str,
|
|
99
|
+
s3_key: builtins.str,
|
|
100
|
+
stage: builtins.str,
|
|
101
|
+
pipeline_id: typing.Optional[builtins.str] = None,
|
|
102
|
+
target_region_override: typing.Optional[builtins.str] = None,
|
|
103
|
+
) -> None:
|
|
104
|
+
'''
|
|
105
|
+
:param scope: Scope in which this resource is defined.
|
|
106
|
+
:param id: Construct identifier for this resource (unique in its scope).
|
|
107
|
+
:param config_name:
|
|
108
|
+
:param dimension:
|
|
109
|
+
:param s3_bucket:
|
|
110
|
+
:param s3_key:
|
|
111
|
+
:param stage:
|
|
112
|
+
:param pipeline_id:
|
|
113
|
+
:param target_region_override:
|
|
114
|
+
'''
|
|
115
|
+
if __debug__:
|
|
116
|
+
type_hints = typing.get_type_hints(_typecheckingstub__4ed15b27cd3bac1ff152e013e411c40e85c5a4e1b47f1191bffac4eb1dc00a7a)
|
|
117
|
+
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
118
|
+
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
119
|
+
props = CfnDeploymentProps(
|
|
120
|
+
config_name=config_name,
|
|
121
|
+
dimension=dimension,
|
|
122
|
+
s3_bucket=s3_bucket,
|
|
123
|
+
s3_key=s3_key,
|
|
124
|
+
stage=stage,
|
|
125
|
+
pipeline_id=pipeline_id,
|
|
126
|
+
target_region_override=target_region_override,
|
|
127
|
+
)
|
|
128
|
+
|
|
129
|
+
jsii.create(self.__class__, self, [scope, id, props])
|
|
130
|
+
|
|
131
|
+
@jsii.member(jsii_name="inspect")
|
|
132
|
+
def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
|
|
133
|
+
'''Examines the CloudFormation resource and discloses attributes.
|
|
134
|
+
|
|
135
|
+
:param inspector: tree inspector to collect and process attributes.
|
|
136
|
+
'''
|
|
137
|
+
if __debug__:
|
|
138
|
+
type_hints = typing.get_type_hints(_typecheckingstub__7480e3be8419f3add77cdc75e148f12141663545557935b5702edf0033ce3059)
|
|
139
|
+
check_type(argname="argument inspector", value=inspector, expected_type=type_hints["inspector"])
|
|
140
|
+
return typing.cast(None, jsii.invoke(self, "inspect", [inspector]))
|
|
141
|
+
|
|
142
|
+
@jsii.member(jsii_name="renderProperties")
|
|
143
|
+
def _render_properties(
|
|
144
|
+
self,
|
|
145
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
146
|
+
) -> typing.Mapping[builtins.str, typing.Any]:
|
|
147
|
+
'''
|
|
148
|
+
:param props: -
|
|
149
|
+
'''
|
|
150
|
+
if __debug__:
|
|
151
|
+
type_hints = typing.get_type_hints(_typecheckingstub__68739bd722c642a322bc1ee03008e34395f2d2eefba71a0ecd1597de9c029383)
|
|
152
|
+
check_type(argname="argument props", value=props, expected_type=type_hints["props"])
|
|
153
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "renderProperties", [props]))
|
|
154
|
+
|
|
155
|
+
@jsii.python.classproperty
|
|
156
|
+
@jsii.member(jsii_name="CFN_RESOURCE_TYPE_NAME")
|
|
157
|
+
def CFN_RESOURCE_TYPE_NAME(cls) -> builtins.str:
|
|
158
|
+
'''The CloudFormation resource type name for this resource class.'''
|
|
159
|
+
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
160
|
+
|
|
161
|
+
@builtins.property
|
|
162
|
+
@jsii.member(jsii_name="attrId")
|
|
163
|
+
def attr_id(self) -> builtins.str:
|
|
164
|
+
'''
|
|
165
|
+
:cloudformationAttribute: Id
|
|
166
|
+
'''
|
|
167
|
+
return typing.cast(builtins.str, jsii.get(self, "attrId"))
|
|
168
|
+
|
|
169
|
+
@builtins.property
|
|
170
|
+
@jsii.member(jsii_name="cfnProperties")
|
|
171
|
+
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
172
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
|
|
173
|
+
|
|
174
|
+
@builtins.property
|
|
175
|
+
@jsii.member(jsii_name="configName")
|
|
176
|
+
def config_name(self) -> builtins.str:
|
|
177
|
+
return typing.cast(builtins.str, jsii.get(self, "configName"))
|
|
178
|
+
|
|
179
|
+
@config_name.setter
|
|
180
|
+
def config_name(self, value: builtins.str) -> None:
|
|
181
|
+
if __debug__:
|
|
182
|
+
type_hints = typing.get_type_hints(_typecheckingstub__ba645b17830c504393df49766927a379567d35b7e181282dfb05d29e1da7787f)
|
|
183
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
184
|
+
jsii.set(self, "configName", value)
|
|
185
|
+
|
|
186
|
+
@builtins.property
|
|
187
|
+
@jsii.member(jsii_name="dimension")
|
|
188
|
+
def dimension(self) -> builtins.str:
|
|
189
|
+
return typing.cast(builtins.str, jsii.get(self, "dimension"))
|
|
190
|
+
|
|
191
|
+
@dimension.setter
|
|
192
|
+
def dimension(self, value: builtins.str) -> None:
|
|
193
|
+
if __debug__:
|
|
194
|
+
type_hints = typing.get_type_hints(_typecheckingstub__dbc2024d8801bfb0886e2954e85af0ac50d0c16248ca97e9bd5d56a758f40fc5)
|
|
195
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
196
|
+
jsii.set(self, "dimension", value)
|
|
197
|
+
|
|
198
|
+
@builtins.property
|
|
199
|
+
@jsii.member(jsii_name="s3Bucket")
|
|
200
|
+
def s3_bucket(self) -> builtins.str:
|
|
201
|
+
return typing.cast(builtins.str, jsii.get(self, "s3Bucket"))
|
|
202
|
+
|
|
203
|
+
@s3_bucket.setter
|
|
204
|
+
def s3_bucket(self, value: builtins.str) -> None:
|
|
205
|
+
if __debug__:
|
|
206
|
+
type_hints = typing.get_type_hints(_typecheckingstub__1247316131c5cfc2ee92db06405e0aff51e01239f3819dad5be15d04f81cf520)
|
|
207
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
208
|
+
jsii.set(self, "s3Bucket", value)
|
|
209
|
+
|
|
210
|
+
@builtins.property
|
|
211
|
+
@jsii.member(jsii_name="s3Key")
|
|
212
|
+
def s3_key(self) -> builtins.str:
|
|
213
|
+
return typing.cast(builtins.str, jsii.get(self, "s3Key"))
|
|
214
|
+
|
|
215
|
+
@s3_key.setter
|
|
216
|
+
def s3_key(self, value: builtins.str) -> None:
|
|
217
|
+
if __debug__:
|
|
218
|
+
type_hints = typing.get_type_hints(_typecheckingstub__35c498ce0cf6e4d4103dac38a6e391c411c29f967e52192fd964864de37eeb01)
|
|
219
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
220
|
+
jsii.set(self, "s3Key", value)
|
|
221
|
+
|
|
222
|
+
@builtins.property
|
|
223
|
+
@jsii.member(jsii_name="stage")
|
|
224
|
+
def stage(self) -> builtins.str:
|
|
225
|
+
return typing.cast(builtins.str, jsii.get(self, "stage"))
|
|
226
|
+
|
|
227
|
+
@stage.setter
|
|
228
|
+
def stage(self, value: builtins.str) -> None:
|
|
229
|
+
if __debug__:
|
|
230
|
+
type_hints = typing.get_type_hints(_typecheckingstub__9a7eeb65d39ba2be20dec1ee8a811e2f705a31963d5896ed1a01df932eed01cf)
|
|
231
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
232
|
+
jsii.set(self, "stage", value)
|
|
233
|
+
|
|
234
|
+
@builtins.property
|
|
235
|
+
@jsii.member(jsii_name="pipelineId")
|
|
236
|
+
def pipeline_id(self) -> typing.Optional[builtins.str]:
|
|
237
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "pipelineId"))
|
|
238
|
+
|
|
239
|
+
@pipeline_id.setter
|
|
240
|
+
def pipeline_id(self, value: typing.Optional[builtins.str]) -> None:
|
|
241
|
+
if __debug__:
|
|
242
|
+
type_hints = typing.get_type_hints(_typecheckingstub__d3ee1598ada7912fd052405dbfc217aac7c7ec00606b5dd1db8764919f278ed0)
|
|
243
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
244
|
+
jsii.set(self, "pipelineId", value)
|
|
245
|
+
|
|
246
|
+
@builtins.property
|
|
247
|
+
@jsii.member(jsii_name="targetRegionOverride")
|
|
248
|
+
def target_region_override(self) -> typing.Optional[builtins.str]:
|
|
249
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "targetRegionOverride"))
|
|
250
|
+
|
|
251
|
+
@target_region_override.setter
|
|
252
|
+
def target_region_override(self, value: typing.Optional[builtins.str]) -> None:
|
|
253
|
+
if __debug__:
|
|
254
|
+
type_hints = typing.get_type_hints(_typecheckingstub__39df44d1a6e2a49cec602a2465ea56ec01690262a80f9ddd1050849c6567fcd9)
|
|
255
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
256
|
+
jsii.set(self, "targetRegionOverride", value)
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
@jsii.data_type(
|
|
260
|
+
jsii_type="aws-cdk-lib.amzn_sdc.CfnDeploymentProps",
|
|
261
|
+
jsii_struct_bases=[],
|
|
262
|
+
name_mapping={
|
|
263
|
+
"config_name": "configName",
|
|
264
|
+
"dimension": "dimension",
|
|
265
|
+
"s3_bucket": "s3Bucket",
|
|
266
|
+
"s3_key": "s3Key",
|
|
267
|
+
"stage": "stage",
|
|
268
|
+
"pipeline_id": "pipelineId",
|
|
269
|
+
"target_region_override": "targetRegionOverride",
|
|
270
|
+
},
|
|
271
|
+
)
|
|
272
|
+
class CfnDeploymentProps:
|
|
273
|
+
def __init__(
|
|
274
|
+
self,
|
|
275
|
+
*,
|
|
276
|
+
config_name: builtins.str,
|
|
277
|
+
dimension: builtins.str,
|
|
278
|
+
s3_bucket: builtins.str,
|
|
279
|
+
s3_key: builtins.str,
|
|
280
|
+
stage: builtins.str,
|
|
281
|
+
pipeline_id: typing.Optional[builtins.str] = None,
|
|
282
|
+
target_region_override: typing.Optional[builtins.str] = None,
|
|
283
|
+
) -> None:
|
|
284
|
+
'''Properties for defining a ``CfnDeployment``.
|
|
285
|
+
|
|
286
|
+
:param config_name:
|
|
287
|
+
:param dimension:
|
|
288
|
+
:param s3_bucket:
|
|
289
|
+
:param s3_key:
|
|
290
|
+
:param stage:
|
|
291
|
+
:param pipeline_id:
|
|
292
|
+
:param target_region_override:
|
|
293
|
+
|
|
294
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sdc-deployment.html
|
|
295
|
+
:exampleMetadata: fixture=_generated
|
|
296
|
+
|
|
297
|
+
Example::
|
|
298
|
+
|
|
299
|
+
# The code below shows an example of how to instantiate this type.
|
|
300
|
+
# The values are placeholders you should change.
|
|
301
|
+
from aws_cdk import amzn_sdc
|
|
302
|
+
|
|
303
|
+
cfn_deployment_props = amzn_sdc.CfnDeploymentProps(
|
|
304
|
+
config_name="configName",
|
|
305
|
+
dimension="dimension",
|
|
306
|
+
s3_bucket="s3Bucket",
|
|
307
|
+
s3_key="s3Key",
|
|
308
|
+
stage="stage",
|
|
309
|
+
|
|
310
|
+
# the properties below are optional
|
|
311
|
+
pipeline_id="pipelineId",
|
|
312
|
+
target_region_override="targetRegionOverride"
|
|
313
|
+
)
|
|
314
|
+
'''
|
|
315
|
+
if __debug__:
|
|
316
|
+
type_hints = typing.get_type_hints(_typecheckingstub__3e0c030e7b5941ee63d7c357bf46f61b61dbf211781b51cc262493b9077421f4)
|
|
317
|
+
check_type(argname="argument config_name", value=config_name, expected_type=type_hints["config_name"])
|
|
318
|
+
check_type(argname="argument dimension", value=dimension, expected_type=type_hints["dimension"])
|
|
319
|
+
check_type(argname="argument s3_bucket", value=s3_bucket, expected_type=type_hints["s3_bucket"])
|
|
320
|
+
check_type(argname="argument s3_key", value=s3_key, expected_type=type_hints["s3_key"])
|
|
321
|
+
check_type(argname="argument stage", value=stage, expected_type=type_hints["stage"])
|
|
322
|
+
check_type(argname="argument pipeline_id", value=pipeline_id, expected_type=type_hints["pipeline_id"])
|
|
323
|
+
check_type(argname="argument target_region_override", value=target_region_override, expected_type=type_hints["target_region_override"])
|
|
324
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
325
|
+
"config_name": config_name,
|
|
326
|
+
"dimension": dimension,
|
|
327
|
+
"s3_bucket": s3_bucket,
|
|
328
|
+
"s3_key": s3_key,
|
|
329
|
+
"stage": stage,
|
|
330
|
+
}
|
|
331
|
+
if pipeline_id is not None:
|
|
332
|
+
self._values["pipeline_id"] = pipeline_id
|
|
333
|
+
if target_region_override is not None:
|
|
334
|
+
self._values["target_region_override"] = target_region_override
|
|
335
|
+
|
|
336
|
+
@builtins.property
|
|
337
|
+
def config_name(self) -> builtins.str:
|
|
338
|
+
'''
|
|
339
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sdc-deployment.html#cfn-sdc-deployment-configname
|
|
340
|
+
'''
|
|
341
|
+
result = self._values.get("config_name")
|
|
342
|
+
assert result is not None, "Required property 'config_name' is missing"
|
|
343
|
+
return typing.cast(builtins.str, result)
|
|
344
|
+
|
|
345
|
+
@builtins.property
|
|
346
|
+
def dimension(self) -> builtins.str:
|
|
347
|
+
'''
|
|
348
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sdc-deployment.html#cfn-sdc-deployment-dimension
|
|
349
|
+
'''
|
|
350
|
+
result = self._values.get("dimension")
|
|
351
|
+
assert result is not None, "Required property 'dimension' is missing"
|
|
352
|
+
return typing.cast(builtins.str, result)
|
|
353
|
+
|
|
354
|
+
@builtins.property
|
|
355
|
+
def s3_bucket(self) -> builtins.str:
|
|
356
|
+
'''
|
|
357
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sdc-deployment.html#cfn-sdc-deployment-s3bucket
|
|
358
|
+
'''
|
|
359
|
+
result = self._values.get("s3_bucket")
|
|
360
|
+
assert result is not None, "Required property 's3_bucket' is missing"
|
|
361
|
+
return typing.cast(builtins.str, result)
|
|
362
|
+
|
|
363
|
+
@builtins.property
|
|
364
|
+
def s3_key(self) -> builtins.str:
|
|
365
|
+
'''
|
|
366
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sdc-deployment.html#cfn-sdc-deployment-s3key
|
|
367
|
+
'''
|
|
368
|
+
result = self._values.get("s3_key")
|
|
369
|
+
assert result is not None, "Required property 's3_key' is missing"
|
|
370
|
+
return typing.cast(builtins.str, result)
|
|
371
|
+
|
|
372
|
+
@builtins.property
|
|
373
|
+
def stage(self) -> builtins.str:
|
|
374
|
+
'''
|
|
375
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sdc-deployment.html#cfn-sdc-deployment-stage
|
|
376
|
+
'''
|
|
377
|
+
result = self._values.get("stage")
|
|
378
|
+
assert result is not None, "Required property 'stage' is missing"
|
|
379
|
+
return typing.cast(builtins.str, result)
|
|
380
|
+
|
|
381
|
+
@builtins.property
|
|
382
|
+
def pipeline_id(self) -> typing.Optional[builtins.str]:
|
|
383
|
+
'''
|
|
384
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sdc-deployment.html#cfn-sdc-deployment-pipelineid
|
|
385
|
+
'''
|
|
386
|
+
result = self._values.get("pipeline_id")
|
|
387
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
388
|
+
|
|
389
|
+
@builtins.property
|
|
390
|
+
def target_region_override(self) -> typing.Optional[builtins.str]:
|
|
391
|
+
'''
|
|
392
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sdc-deployment.html#cfn-sdc-deployment-targetregionoverride
|
|
393
|
+
'''
|
|
394
|
+
result = self._values.get("target_region_override")
|
|
395
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
396
|
+
|
|
397
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
398
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
399
|
+
|
|
400
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
401
|
+
return not (rhs == self)
|
|
402
|
+
|
|
403
|
+
def __repr__(self) -> str:
|
|
404
|
+
return "CfnDeploymentProps(%s)" % ", ".join(
|
|
405
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
406
|
+
)
|
|
407
|
+
|
|
408
|
+
|
|
409
|
+
__all__ = [
|
|
410
|
+
"CfnDeployment",
|
|
411
|
+
"CfnDeploymentProps",
|
|
412
|
+
]
|
|
413
|
+
|
|
414
|
+
publication.publish()
|
|
415
|
+
|
|
416
|
+
def _typecheckingstub__4ed15b27cd3bac1ff152e013e411c40e85c5a4e1b47f1191bffac4eb1dc00a7a(
|
|
417
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
418
|
+
id: builtins.str,
|
|
419
|
+
*,
|
|
420
|
+
config_name: builtins.str,
|
|
421
|
+
dimension: builtins.str,
|
|
422
|
+
s3_bucket: builtins.str,
|
|
423
|
+
s3_key: builtins.str,
|
|
424
|
+
stage: builtins.str,
|
|
425
|
+
pipeline_id: typing.Optional[builtins.str] = None,
|
|
426
|
+
target_region_override: typing.Optional[builtins.str] = None,
|
|
427
|
+
) -> None:
|
|
428
|
+
"""Type checking stubs"""
|
|
429
|
+
pass
|
|
430
|
+
|
|
431
|
+
def _typecheckingstub__7480e3be8419f3add77cdc75e148f12141663545557935b5702edf0033ce3059(
|
|
432
|
+
inspector: _TreeInspector_488e0dd5,
|
|
433
|
+
) -> None:
|
|
434
|
+
"""Type checking stubs"""
|
|
435
|
+
pass
|
|
436
|
+
|
|
437
|
+
def _typecheckingstub__68739bd722c642a322bc1ee03008e34395f2d2eefba71a0ecd1597de9c029383(
|
|
438
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
439
|
+
) -> None:
|
|
440
|
+
"""Type checking stubs"""
|
|
441
|
+
pass
|
|
442
|
+
|
|
443
|
+
def _typecheckingstub__ba645b17830c504393df49766927a379567d35b7e181282dfb05d29e1da7787f(
|
|
444
|
+
value: builtins.str,
|
|
445
|
+
) -> None:
|
|
446
|
+
"""Type checking stubs"""
|
|
447
|
+
pass
|
|
448
|
+
|
|
449
|
+
def _typecheckingstub__dbc2024d8801bfb0886e2954e85af0ac50d0c16248ca97e9bd5d56a758f40fc5(
|
|
450
|
+
value: builtins.str,
|
|
451
|
+
) -> None:
|
|
452
|
+
"""Type checking stubs"""
|
|
453
|
+
pass
|
|
454
|
+
|
|
455
|
+
def _typecheckingstub__1247316131c5cfc2ee92db06405e0aff51e01239f3819dad5be15d04f81cf520(
|
|
456
|
+
value: builtins.str,
|
|
457
|
+
) -> None:
|
|
458
|
+
"""Type checking stubs"""
|
|
459
|
+
pass
|
|
460
|
+
|
|
461
|
+
def _typecheckingstub__35c498ce0cf6e4d4103dac38a6e391c411c29f967e52192fd964864de37eeb01(
|
|
462
|
+
value: builtins.str,
|
|
463
|
+
) -> None:
|
|
464
|
+
"""Type checking stubs"""
|
|
465
|
+
pass
|
|
466
|
+
|
|
467
|
+
def _typecheckingstub__9a7eeb65d39ba2be20dec1ee8a811e2f705a31963d5896ed1a01df932eed01cf(
|
|
468
|
+
value: builtins.str,
|
|
469
|
+
) -> None:
|
|
470
|
+
"""Type checking stubs"""
|
|
471
|
+
pass
|
|
472
|
+
|
|
473
|
+
def _typecheckingstub__d3ee1598ada7912fd052405dbfc217aac7c7ec00606b5dd1db8764919f278ed0(
|
|
474
|
+
value: typing.Optional[builtins.str],
|
|
475
|
+
) -> None:
|
|
476
|
+
"""Type checking stubs"""
|
|
477
|
+
pass
|
|
478
|
+
|
|
479
|
+
def _typecheckingstub__39df44d1a6e2a49cec602a2465ea56ec01690262a80f9ddd1050849c6567fcd9(
|
|
480
|
+
value: typing.Optional[builtins.str],
|
|
481
|
+
) -> None:
|
|
482
|
+
"""Type checking stubs"""
|
|
483
|
+
pass
|
|
484
|
+
|
|
485
|
+
def _typecheckingstub__3e0c030e7b5941ee63d7c357bf46f61b61dbf211781b51cc262493b9077421f4(
|
|
486
|
+
*,
|
|
487
|
+
config_name: builtins.str,
|
|
488
|
+
dimension: builtins.str,
|
|
489
|
+
s3_bucket: builtins.str,
|
|
490
|
+
s3_key: builtins.str,
|
|
491
|
+
stage: builtins.str,
|
|
492
|
+
pipeline_id: typing.Optional[builtins.str] = None,
|
|
493
|
+
target_region_override: typing.Optional[builtins.str] = None,
|
|
494
|
+
) -> None:
|
|
495
|
+
"""Type checking stubs"""
|
|
496
|
+
pass
|
aws_cdk/aws_appsync/__init__.py
CHANGED
|
@@ -6018,14 +6018,14 @@ class CfnGraphQLApi(
|
|
|
6018
6018
|
:param name: The API name.
|
|
6019
6019
|
:param additional_authentication_providers: A list of additional authentication providers for the ``GraphqlApi`` API.
|
|
6020
6020
|
:param api_type: The value that indicates whether the GraphQL API is a standard API ( ``GRAPHQL`` ) or merged API ( ``MERGED`` ). *WARNING* : If the ``ApiType`` has not been defined, *explicitly* setting it to ``GRAPHQL`` in a template/stack update will result in an API replacement and new DNS values. The following values are valid: ``GRAPHQL | MERGED``
|
|
6021
|
-
:param introspection_config:
|
|
6021
|
+
:param introspection_config: Sets the value of the GraphQL API to enable ( ``ENABLED`` ) or disable ( ``DISABLED`` ) introspection. If no value is provided, the introspection configuration will be set to ``ENABLED`` by default. This field will produce an error if the operation attempts to use the introspection feature while this field is disabled. For more information about introspection, see `GraphQL introspection <https://docs.aws.amazon.com/https://graphql.org/learn/introspection/>`_ .
|
|
6022
6022
|
:param lambda_authorizer_config: A ``LambdaAuthorizerConfig`` holds configuration on how to authorize AWS AppSync API access when using the ``AWS_LAMBDA`` authorizer mode. Be aware that an AWS AppSync API may have only one Lambda authorizer configured at a time.
|
|
6023
6023
|
:param log_config: The Amazon CloudWatch Logs configuration.
|
|
6024
6024
|
:param merged_api_execution_role_arn: The AWS Identity and Access Management service role ARN for a merged API. The AppSync service assumes this role on behalf of the Merged API to validate access to source APIs at runtime and to prompt the ``AUTO_MERGE`` to update the merged API endpoint with the source API changes automatically.
|
|
6025
6025
|
:param open_id_connect_config: The OpenID Connect configuration.
|
|
6026
6026
|
:param owner_contact: The owner contact information for an API resource. This field accepts any string input with a length of 0 - 256 characters.
|
|
6027
|
-
:param query_depth_limit:
|
|
6028
|
-
:param resolver_count_limit:
|
|
6027
|
+
:param query_depth_limit: The maximum depth a query can have in a single request. Depth refers to the amount of nested levels allowed in the body of query. The default value is ``0`` (or unspecified), which indicates there's no depth limit. If you set a limit, it can be between ``1`` and ``75`` nested levels. This field will produce a limit error if the operation falls out of bounds. Note that fields can still be set to nullable or non-nullable. If a non-nullable field produces an error, the error will be thrown upwards to the first nullable field available.
|
|
6028
|
+
:param resolver_count_limit: The maximum number of resolvers that can be invoked in a single request. The default value is ``0`` (or unspecified), which will set the limit to ``10000`` . When specified, the limit value can be between ``1`` and ``10000`` . This field will produce a limit error if the operation falls out of bounds.
|
|
6029
6029
|
:param tags: An arbitrary set of tags (key-value pairs) for this GraphQL API.
|
|
6030
6030
|
:param user_pool_config: Optional authorization configuration for using Amazon Cognito user pools with your GraphQL endpoint.
|
|
6031
6031
|
:param visibility: Sets the scope of the GraphQL API to public ( ``GLOBAL`` ) or private ( ``PRIVATE`` ). By default, the scope is set to ``Global`` if no value is provided. *WARNING* : If ``Visibility`` has not been defined, *explicitly* setting it to ``GLOBAL`` in a template/stack update will result in an API replacement and new DNS values.
|
|
@@ -6231,6 +6231,7 @@ class CfnGraphQLApi(
|
|
|
6231
6231
|
@builtins.property
|
|
6232
6232
|
@jsii.member(jsii_name="introspectionConfig")
|
|
6233
6233
|
def introspection_config(self) -> typing.Optional[builtins.str]:
|
|
6234
|
+
'''Sets the value of the GraphQL API to enable ( ``ENABLED`` ) or disable ( ``DISABLED`` ) introspection.'''
|
|
6234
6235
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "introspectionConfig"))
|
|
6235
6236
|
|
|
6236
6237
|
@introspection_config.setter
|
|
@@ -6326,6 +6327,7 @@ class CfnGraphQLApi(
|
|
|
6326
6327
|
@builtins.property
|
|
6327
6328
|
@jsii.member(jsii_name="queryDepthLimit")
|
|
6328
6329
|
def query_depth_limit(self) -> typing.Optional[jsii.Number]:
|
|
6330
|
+
'''The maximum depth a query can have in a single request.'''
|
|
6329
6331
|
return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "queryDepthLimit"))
|
|
6330
6332
|
|
|
6331
6333
|
@query_depth_limit.setter
|
|
@@ -6338,6 +6340,7 @@ class CfnGraphQLApi(
|
|
|
6338
6340
|
@builtins.property
|
|
6339
6341
|
@jsii.member(jsii_name="resolverCountLimit")
|
|
6340
6342
|
def resolver_count_limit(self) -> typing.Optional[jsii.Number]:
|
|
6343
|
+
'''The maximum number of resolvers that can be invoked in a single request.'''
|
|
6341
6344
|
return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "resolverCountLimit"))
|
|
6342
6345
|
|
|
6343
6346
|
@resolver_count_limit.setter
|
|
@@ -7098,14 +7101,14 @@ class CfnGraphQLApiProps:
|
|
|
7098
7101
|
:param name: The API name.
|
|
7099
7102
|
:param additional_authentication_providers: A list of additional authentication providers for the ``GraphqlApi`` API.
|
|
7100
7103
|
:param api_type: The value that indicates whether the GraphQL API is a standard API ( ``GRAPHQL`` ) or merged API ( ``MERGED`` ). *WARNING* : If the ``ApiType`` has not been defined, *explicitly* setting it to ``GRAPHQL`` in a template/stack update will result in an API replacement and new DNS values. The following values are valid: ``GRAPHQL | MERGED``
|
|
7101
|
-
:param introspection_config:
|
|
7104
|
+
:param introspection_config: Sets the value of the GraphQL API to enable ( ``ENABLED`` ) or disable ( ``DISABLED`` ) introspection. If no value is provided, the introspection configuration will be set to ``ENABLED`` by default. This field will produce an error if the operation attempts to use the introspection feature while this field is disabled. For more information about introspection, see `GraphQL introspection <https://docs.aws.amazon.com/https://graphql.org/learn/introspection/>`_ .
|
|
7102
7105
|
:param lambda_authorizer_config: A ``LambdaAuthorizerConfig`` holds configuration on how to authorize AWS AppSync API access when using the ``AWS_LAMBDA`` authorizer mode. Be aware that an AWS AppSync API may have only one Lambda authorizer configured at a time.
|
|
7103
7106
|
:param log_config: The Amazon CloudWatch Logs configuration.
|
|
7104
7107
|
:param merged_api_execution_role_arn: The AWS Identity and Access Management service role ARN for a merged API. The AppSync service assumes this role on behalf of the Merged API to validate access to source APIs at runtime and to prompt the ``AUTO_MERGE`` to update the merged API endpoint with the source API changes automatically.
|
|
7105
7108
|
:param open_id_connect_config: The OpenID Connect configuration.
|
|
7106
7109
|
:param owner_contact: The owner contact information for an API resource. This field accepts any string input with a length of 0 - 256 characters.
|
|
7107
|
-
:param query_depth_limit:
|
|
7108
|
-
:param resolver_count_limit:
|
|
7110
|
+
:param query_depth_limit: The maximum depth a query can have in a single request. Depth refers to the amount of nested levels allowed in the body of query. The default value is ``0`` (or unspecified), which indicates there's no depth limit. If you set a limit, it can be between ``1`` and ``75`` nested levels. This field will produce a limit error if the operation falls out of bounds. Note that fields can still be set to nullable or non-nullable. If a non-nullable field produces an error, the error will be thrown upwards to the first nullable field available.
|
|
7111
|
+
:param resolver_count_limit: The maximum number of resolvers that can be invoked in a single request. The default value is ``0`` (or unspecified), which will set the limit to ``10000`` . When specified, the limit value can be between ``1`` and ``10000`` . This field will produce a limit error if the operation falls out of bounds.
|
|
7109
7112
|
:param tags: An arbitrary set of tags (key-value pairs) for this GraphQL API.
|
|
7110
7113
|
:param user_pool_config: Optional authorization configuration for using Amazon Cognito user pools with your GraphQL endpoint.
|
|
7111
7114
|
:param visibility: Sets the scope of the GraphQL API to public ( ``GLOBAL`` ) or private ( ``PRIVATE`` ). By default, the scope is set to ``Global`` if no value is provided. *WARNING* : If ``Visibility`` has not been defined, *explicitly* setting it to ``GLOBAL`` in a template/stack update will result in an API replacement and new DNS values.
|
|
@@ -7283,7 +7286,12 @@ class CfnGraphQLApiProps:
|
|
|
7283
7286
|
|
|
7284
7287
|
@builtins.property
|
|
7285
7288
|
def introspection_config(self) -> typing.Optional[builtins.str]:
|
|
7286
|
-
'''
|
|
7289
|
+
'''Sets the value of the GraphQL API to enable ( ``ENABLED`` ) or disable ( ``DISABLED`` ) introspection.
|
|
7290
|
+
|
|
7291
|
+
If no value is provided, the introspection configuration will be set to ``ENABLED`` by default. This field will produce an error if the operation attempts to use the introspection feature while this field is disabled.
|
|
7292
|
+
|
|
7293
|
+
For more information about introspection, see `GraphQL introspection <https://docs.aws.amazon.com/https://graphql.org/learn/introspection/>`_ .
|
|
7294
|
+
|
|
7287
7295
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-introspectionconfig
|
|
7288
7296
|
'''
|
|
7289
7297
|
result = self._values.get("introspection_config")
|
|
@@ -7348,7 +7356,10 @@ class CfnGraphQLApiProps:
|
|
|
7348
7356
|
|
|
7349
7357
|
@builtins.property
|
|
7350
7358
|
def query_depth_limit(self) -> typing.Optional[jsii.Number]:
|
|
7351
|
-
'''
|
|
7359
|
+
'''The maximum depth a query can have in a single request.
|
|
7360
|
+
|
|
7361
|
+
Depth refers to the amount of nested levels allowed in the body of query. The default value is ``0`` (or unspecified), which indicates there's no depth limit. If you set a limit, it can be between ``1`` and ``75`` nested levels. This field will produce a limit error if the operation falls out of bounds. Note that fields can still be set to nullable or non-nullable. If a non-nullable field produces an error, the error will be thrown upwards to the first nullable field available.
|
|
7362
|
+
|
|
7352
7363
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-querydepthlimit
|
|
7353
7364
|
'''
|
|
7354
7365
|
result = self._values.get("query_depth_limit")
|
|
@@ -7356,7 +7367,10 @@ class CfnGraphQLApiProps:
|
|
|
7356
7367
|
|
|
7357
7368
|
@builtins.property
|
|
7358
7369
|
def resolver_count_limit(self) -> typing.Optional[jsii.Number]:
|
|
7359
|
-
'''
|
|
7370
|
+
'''The maximum number of resolvers that can be invoked in a single request.
|
|
7371
|
+
|
|
7372
|
+
The default value is ``0`` (or unspecified), which will set the limit to ``10000`` . When specified, the limit value can be between ``1`` and ``10000`` . This field will produce a limit error if the operation falls out of bounds.
|
|
7373
|
+
|
|
7360
7374
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#cfn-appsync-graphqlapi-resolvercountlimit
|
|
7361
7375
|
'''
|
|
7362
7376
|
result = self._values.get("resolver_count_limit")
|