cdklabs.appsync-utils 0.0.602__py3-none-any.whl → 0.0.604__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.
- awscdk/appsync_utils/__init__.py +29 -14
- awscdk/appsync_utils/_jsii/__init__.py +2 -2
- awscdk/appsync_utils/_jsii/awscdk-appsync-utils@0.0.604.jsii.tgz +0 -0
- {cdklabs.appsync_utils-0.0.602.dist-info → cdklabs.appsync_utils-0.0.604.dist-info}/METADATA +1 -1
- cdklabs.appsync_utils-0.0.604.dist-info/RECORD +10 -0
- awscdk/appsync_utils/_jsii/awscdk-appsync-utils@0.0.602.jsii.tgz +0 -0
- cdklabs.appsync_utils-0.0.602.dist-info/RECORD +0 -10
- {cdklabs.appsync_utils-0.0.602.dist-info → cdklabs.appsync_utils-0.0.604.dist-info}/LICENSE +0 -0
- {cdklabs.appsync_utils-0.0.602.dist-info → cdklabs.appsync_utils-0.0.604.dist-info}/NOTICE +0 -0
- {cdklabs.appsync_utils-0.0.602.dist-info → cdklabs.appsync_utils-0.0.604.dist-info}/WHEEL +0 -0
- {cdklabs.appsync_utils-0.0.602.dist-info → cdklabs.appsync_utils-0.0.604.dist-info}/top_level.txt +0 -0
awscdk/appsync_utils/__init__.py
CHANGED
@@ -920,21 +920,30 @@ class CodeFirstSchema(
|
|
920
920
|
class Directive(metaclass=jsii.JSIIMeta, jsii_type="awscdk-appsync-utils.Directive"):
|
921
921
|
'''Directives for types.
|
922
922
|
|
923
|
-
i.e.
|
923
|
+
i.e.
|
924
|
+
|
925
|
+
:aws_iam: or
|
926
|
+
:aws_subscribe: true
|
924
927
|
'''
|
925
928
|
|
926
929
|
@jsii.member(jsii_name="apiKey")
|
927
930
|
@builtins.classmethod
|
928
931
|
def api_key(cls) -> "Directive":
|
929
|
-
'''Add the
|
932
|
+
'''Add the.
|
933
|
+
|
934
|
+
:aws_api_key: directive
|
935
|
+
'''
|
930
936
|
return typing.cast("Directive", jsii.sinvoke(cls, "apiKey", []))
|
931
937
|
|
932
938
|
@jsii.member(jsii_name="cognito")
|
933
939
|
@builtins.classmethod
|
934
940
|
def cognito(cls, *groups: builtins.str) -> "Directive":
|
935
|
-
'''Add the
|
941
|
+
'''Add the.
|
936
942
|
|
937
943
|
:param groups: the groups to allow access to.
|
944
|
+
|
945
|
+
:aws_auth: or
|
946
|
+
:aws_cognito_user_pools: directive
|
938
947
|
'''
|
939
948
|
if __debug__:
|
940
949
|
type_hints = typing.get_type_hints(_typecheckingstub__7cb0ec8ae31c676028f4d85fdfb846f72b823ab78f507cdd47b3e02836e3a6d2)
|
@@ -956,23 +965,29 @@ class Directive(metaclass=jsii.JSIIMeta, jsii_type="awscdk-appsync-utils.Directi
|
|
956
965
|
@jsii.member(jsii_name="iam")
|
957
966
|
@builtins.classmethod
|
958
967
|
def iam(cls) -> "Directive":
|
959
|
-
'''Add the
|
968
|
+
'''Add the.
|
969
|
+
|
970
|
+
:aws_iam: directive
|
971
|
+
'''
|
960
972
|
return typing.cast("Directive", jsii.sinvoke(cls, "iam", []))
|
961
973
|
|
962
974
|
@jsii.member(jsii_name="oidc")
|
963
975
|
@builtins.classmethod
|
964
976
|
def oidc(cls) -> "Directive":
|
965
|
-
'''Add the
|
977
|
+
'''Add the.
|
978
|
+
|
979
|
+
:aws_oidc: directive
|
980
|
+
'''
|
966
981
|
return typing.cast("Directive", jsii.sinvoke(cls, "oidc", []))
|
967
982
|
|
968
983
|
@jsii.member(jsii_name="subscribe")
|
969
984
|
@builtins.classmethod
|
970
985
|
def subscribe(cls, *mutations: builtins.str) -> "Directive":
|
971
|
-
'''Add the
|
972
|
-
|
973
|
-
Only use for top level Subscription type.
|
986
|
+
'''Add the.
|
974
987
|
|
975
988
|
:param mutations: the mutation fields to link to.
|
989
|
+
|
990
|
+
:aws_subscribe: directive. Only use for top level Subscription type.
|
976
991
|
'''
|
977
992
|
if __debug__:
|
978
993
|
type_hints = typing.get_type_hints(_typecheckingstub__5c2e92b47801a5b456c7fe7e7e762cebadbe3f15af33d5a2e06755afd79510d3)
|
@@ -1677,7 +1692,7 @@ class InputType(metaclass=jsii.JSIIMeta, jsii_type="awscdk-appsync-utils.InputTy
|
|
1677
1692
|
directives: typing.Optional[typing.Sequence[Directive]] = None,
|
1678
1693
|
) -> None:
|
1679
1694
|
'''
|
1680
|
-
:param name:
|
1695
|
+
:param name: the name of this type.
|
1681
1696
|
:param definition: the attributes of this type.
|
1682
1697
|
:param directives: the directives for this object type. Default: - no directives
|
1683
1698
|
'''
|
@@ -1777,7 +1792,7 @@ class InterfaceType(
|
|
1777
1792
|
directives: typing.Optional[typing.Sequence[Directive]] = None,
|
1778
1793
|
) -> None:
|
1779
1794
|
'''
|
1780
|
-
:param name:
|
1795
|
+
:param name: the name of this type.
|
1781
1796
|
:param definition: the attributes of this type.
|
1782
1797
|
:param directives: the directives for this object type. Default: - no directives
|
1783
1798
|
'''
|
@@ -1943,7 +1958,7 @@ class ObjectType(
|
|
1943
1958
|
directives: typing.Optional[typing.Sequence[Directive]] = None,
|
1944
1959
|
) -> None:
|
1945
1960
|
'''
|
1946
|
-
:param name:
|
1961
|
+
:param name: the name of this type.
|
1947
1962
|
:param interface_types: The Interface Types this Object Type implements. Default: - no interface types
|
1948
1963
|
:param definition: the attributes of this type.
|
1949
1964
|
:param directives: the directives for this object type. Default: - no directives
|
@@ -2696,7 +2711,7 @@ class UnionType(metaclass=jsii.JSIIMeta, jsii_type="awscdk-appsync-utils.UnionTy
|
|
2696
2711
|
definition: typing.Sequence[IIntermediateType],
|
2697
2712
|
) -> None:
|
2698
2713
|
'''
|
2699
|
-
:param name:
|
2714
|
+
:param name: the name of this type.
|
2700
2715
|
:param definition: the object types for this union type.
|
2701
2716
|
'''
|
2702
2717
|
if __debug__:
|
@@ -2828,7 +2843,7 @@ class EnumType(metaclass=jsii.JSIIMeta, jsii_type="awscdk-appsync-utils.EnumType
|
|
2828
2843
|
definition: typing.Sequence[builtins.str],
|
2829
2844
|
) -> None:
|
2830
2845
|
'''
|
2831
|
-
:param name:
|
2846
|
+
:param name: the name of this type.
|
2832
2847
|
:param definition: the attributes of this type.
|
2833
2848
|
'''
|
2834
2849
|
if __debug__:
|
@@ -2939,7 +2954,7 @@ class GraphqlType(
|
|
2939
2954
|
is_required_list: typing.Optional[builtins.bool] = None,
|
2940
2955
|
) -> None:
|
2941
2956
|
'''
|
2942
|
-
:param type:
|
2957
|
+
:param type: the type of attribute.
|
2943
2958
|
:param intermediate_type: the intermediate type linked to this attribute. Default: - no intermediate type
|
2944
2959
|
:param is_list: property determining if this attribute is a list i.e. if true, attribute would be [Type]. Default: - false
|
2945
2960
|
:param is_required: property determining if this attribute is non-nullable i.e. if true, attribute would be Type! Default: - false
|
@@ -33,9 +33,9 @@ import constructs._jsii
|
|
33
33
|
|
34
34
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
35
35
|
"awscdk-appsync-utils",
|
36
|
-
"0.0.
|
36
|
+
"0.0.604",
|
37
37
|
__name__[0:-6],
|
38
|
-
"awscdk-appsync-utils@0.0.
|
38
|
+
"awscdk-appsync-utils@0.0.604.jsii.tgz",
|
39
39
|
)
|
40
40
|
|
41
41
|
__all__ = [
|
Binary file
|
@@ -0,0 +1,10 @@
|
|
1
|
+
awscdk/appsync_utils/__init__.py,sha256=JKTq4C5Z8sacek5dssbBiUJ_er0345gGAtcHvnp0O9Y,164267
|
2
|
+
awscdk/appsync_utils/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
3
|
+
awscdk/appsync_utils/_jsii/__init__.py,sha256=z-y-ZvnNmlNKGOL_rN-WMHOnD230b850qCFGQgmnPis,1468
|
4
|
+
awscdk/appsync_utils/_jsii/awscdk-appsync-utils@0.0.604.jsii.tgz,sha256=GLWHwi5MJcB27Cj5oF48GkKAWSLNAr1sfMrKe1Av0IE,96436
|
5
|
+
cdklabs.appsync_utils-0.0.604.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
6
|
+
cdklabs.appsync_utils-0.0.604.dist-info/METADATA,sha256=Q_VzcjUg-E07zFyI2NGLhstTQKojhs1ha5-qJS4IztI,20722
|
7
|
+
cdklabs.appsync_utils-0.0.604.dist-info/NOTICE,sha256=1CkO1kwu3Q_OHYTj-d-yiBJA_lNN73a4zSntavaD4oc,67
|
8
|
+
cdklabs.appsync_utils-0.0.604.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
9
|
+
cdklabs.appsync_utils-0.0.604.dist-info/top_level.txt,sha256=Dkt6qQSQppDUlESKVaCu9svo6_tkERF2FfSQsS1QcuY,7
|
10
|
+
cdklabs.appsync_utils-0.0.604.dist-info/RECORD,,
|
Binary file
|
@@ -1,10 +0,0 @@
|
|
1
|
-
awscdk/appsync_utils/__init__.py,sha256=0dsCWpk-2gKmNGBp2k-_baO_wfoxpBILafmlAFA0Csc,164047
|
2
|
-
awscdk/appsync_utils/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
3
|
-
awscdk/appsync_utils/_jsii/__init__.py,sha256=bBqjbHty__DAX-Uo5E4nbLRVlhX7RJ6u-jqoyC4H4oc,1468
|
4
|
-
awscdk/appsync_utils/_jsii/awscdk-appsync-utils@0.0.602.jsii.tgz,sha256=b7xi4iSggVQ6INDd_YQbZ4wkpHinBMYA9gzaa2DhxQ0,96448
|
5
|
-
cdklabs.appsync_utils-0.0.602.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
6
|
-
cdklabs.appsync_utils-0.0.602.dist-info/METADATA,sha256=S3h_hfipk6uLrbIa7tniWTr1tPqslsb35gWQYgLixMA,20722
|
7
|
-
cdklabs.appsync_utils-0.0.602.dist-info/NOTICE,sha256=1CkO1kwu3Q_OHYTj-d-yiBJA_lNN73a4zSntavaD4oc,67
|
8
|
-
cdklabs.appsync_utils-0.0.602.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
9
|
-
cdklabs.appsync_utils-0.0.602.dist-info/top_level.txt,sha256=Dkt6qQSQppDUlESKVaCu9svo6_tkERF2FfSQsS1QcuY,7
|
10
|
-
cdklabs.appsync_utils-0.0.602.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
{cdklabs.appsync_utils-0.0.602.dist-info → cdklabs.appsync_utils-0.0.604.dist-info}/top_level.txt
RENAMED
File without changes
|