aws-cdk-lib 2.166.0__py3-none-any.whl → 2.167.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 +1 -1
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.166.0.jsii.tgz → aws-cdk-lib@2.167.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigateway/__init__.py +9 -0
- aws_cdk/aws_appsync/__init__.py +209 -79
- aws_cdk/aws_bedrock/__init__.py +51 -45
- aws_cdk/aws_cleanrooms/__init__.py +66 -5
- aws_cdk/aws_cloudfront/__init__.py +21 -3
- aws_cdk/aws_cloudfront/experimental/__init__.py +3 -3
- aws_cdk/aws_codebuild/__init__.py +59 -29
- aws_cdk/aws_datasync/__init__.py +51 -0
- aws_cdk/aws_ec2/__init__.py +305 -9
- aws_cdk/aws_ecs/__init__.py +37 -34
- aws_cdk/aws_elasticache/__init__.py +5 -3
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +73 -46
- aws_cdk/aws_gamelift/__init__.py +52 -40
- aws_cdk/aws_inspectorv2/__init__.py +6 -12
- aws_cdk/aws_kms/__init__.py +2 -0
- aws_cdk/aws_lambda/__init__.py +336 -19
- aws_cdk/aws_lambda_nodejs/__init__.py +3 -3
- aws_cdk/aws_logs/__init__.py +214 -0
- aws_cdk/aws_nimblestudio/__init__.py +6 -103
- aws_cdk/aws_quicksight/__init__.py +481 -10
- aws_cdk/aws_rds/__init__.py +602 -0
- aws_cdk/aws_s3_assets/__init__.py +37 -0
- aws_cdk/aws_s3_deployment/__init__.py +5 -0
- aws_cdk/aws_servicecatalog/__init__.py +52 -4
- aws_cdk/aws_ses/__init__.py +5 -3
- aws_cdk/aws_stepfunctions/__init__.py +8 -0
- aws_cdk/aws_synthetics/__init__.py +12 -1
- aws_cdk/aws_wisdom/__init__.py +344 -24
- aws_cdk/triggers/__init__.py +3 -3
- {aws_cdk_lib-2.166.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.166.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/RECORD +38 -38
- {aws_cdk_lib-2.166.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/WHEEL +1 -1
- {aws_cdk_lib-2.166.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.166.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.166.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_bedrock/__init__.py
CHANGED
|
@@ -2840,7 +2840,11 @@ class CfnApplicationInferenceProfile(
|
|
|
2840
2840
|
metaclass=jsii.JSIIMeta,
|
|
2841
2841
|
jsii_type="aws-cdk-lib.aws_bedrock.CfnApplicationInferenceProfile",
|
|
2842
2842
|
):
|
|
2843
|
-
'''
|
|
2843
|
+
'''Specifies an inference profile as a resource in a top-level template.
|
|
2844
|
+
|
|
2845
|
+
Use the ``ModelSource`` field to specify the inference profile to copy into the resource. For more information about using inference profiles in Amazon Bedrock , see `Improve resilience with cross-region inference <https://docs.aws.amazon.com/bedrock/latest/userguide/cross-region-inference.html>`_ .
|
|
2846
|
+
|
|
2847
|
+
See the *Properties* section below for descriptions of both the required and optional properties.
|
|
2844
2848
|
|
|
2845
2849
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-applicationinferenceprofile.html
|
|
2846
2850
|
:cloudformationResource: AWS::Bedrock::ApplicationInferenceProfile
|
|
@@ -2880,10 +2884,10 @@ class CfnApplicationInferenceProfile(
|
|
|
2880
2884
|
'''
|
|
2881
2885
|
:param scope: Scope in which this resource is defined.
|
|
2882
2886
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
2883
|
-
:param inference_profile_name:
|
|
2884
|
-
:param description:
|
|
2885
|
-
:param model_source:
|
|
2886
|
-
:param tags:
|
|
2887
|
+
:param inference_profile_name: The name of the inference profile.
|
|
2888
|
+
:param description: The description of the inference profile.
|
|
2889
|
+
:param model_source: Contains configurations for the inference profile to copy as the resource.
|
|
2890
|
+
:param tags: A list of tags associated with the inference profile.
|
|
2887
2891
|
'''
|
|
2888
2892
|
if __debug__:
|
|
2889
2893
|
type_hints = typing.get_type_hints(_typecheckingstub__a2222de49518232a3824d971182922daf44d6255370c3805992fca295b2904ad)
|
|
@@ -2931,7 +2935,7 @@ class CfnApplicationInferenceProfile(
|
|
|
2931
2935
|
@builtins.property
|
|
2932
2936
|
@jsii.member(jsii_name="attrCreatedAt")
|
|
2933
2937
|
def attr_created_at(self) -> builtins.str:
|
|
2934
|
-
'''
|
|
2938
|
+
'''The time at which the inference profile was created.
|
|
2935
2939
|
|
|
2936
2940
|
:cloudformationAttribute: CreatedAt
|
|
2937
2941
|
'''
|
|
@@ -2940,7 +2944,8 @@ class CfnApplicationInferenceProfile(
|
|
|
2940
2944
|
@builtins.property
|
|
2941
2945
|
@jsii.member(jsii_name="attrInferenceProfileArn")
|
|
2942
2946
|
def attr_inference_profile_arn(self) -> builtins.str:
|
|
2943
|
-
'''
|
|
2947
|
+
'''The Amazon Resource Name (ARN) of the inference profile.
|
|
2948
|
+
|
|
2944
2949
|
:cloudformationAttribute: InferenceProfileArn
|
|
2945
2950
|
'''
|
|
2946
2951
|
return typing.cast(builtins.str, jsii.get(self, "attrInferenceProfileArn"))
|
|
@@ -2948,7 +2953,8 @@ class CfnApplicationInferenceProfile(
|
|
|
2948
2953
|
@builtins.property
|
|
2949
2954
|
@jsii.member(jsii_name="attrInferenceProfileId")
|
|
2950
2955
|
def attr_inference_profile_id(self) -> builtins.str:
|
|
2951
|
-
'''
|
|
2956
|
+
'''The unique identifier of the inference profile.
|
|
2957
|
+
|
|
2952
2958
|
:cloudformationAttribute: InferenceProfileId
|
|
2953
2959
|
'''
|
|
2954
2960
|
return typing.cast(builtins.str, jsii.get(self, "attrInferenceProfileId"))
|
|
@@ -2956,9 +2962,7 @@ class CfnApplicationInferenceProfile(
|
|
|
2956
2962
|
@builtins.property
|
|
2957
2963
|
@jsii.member(jsii_name="attrInferenceProfileIdentifier")
|
|
2958
2964
|
def attr_inference_profile_identifier(self) -> builtins.str:
|
|
2959
|
-
'''
|
|
2960
|
-
|
|
2961
|
-
Supports both system-defined inference profile ids, and inference profile ARNs.
|
|
2965
|
+
'''The ID or Amazon Resource Name (ARN) of the inference profile.
|
|
2962
2966
|
|
|
2963
2967
|
:cloudformationAttribute: InferenceProfileIdentifier
|
|
2964
2968
|
'''
|
|
@@ -2967,7 +2971,7 @@ class CfnApplicationInferenceProfile(
|
|
|
2967
2971
|
@builtins.property
|
|
2968
2972
|
@jsii.member(jsii_name="attrModels")
|
|
2969
2973
|
def attr_models(self) -> _IResolvable_da3f097b:
|
|
2970
|
-
'''
|
|
2974
|
+
'''A list of information about each model in the inference profile.
|
|
2971
2975
|
|
|
2972
2976
|
:cloudformationAttribute: Models
|
|
2973
2977
|
'''
|
|
@@ -2976,7 +2980,9 @@ class CfnApplicationInferenceProfile(
|
|
|
2976
2980
|
@builtins.property
|
|
2977
2981
|
@jsii.member(jsii_name="attrStatus")
|
|
2978
2982
|
def attr_status(self) -> builtins.str:
|
|
2979
|
-
'''
|
|
2983
|
+
'''The status of the inference profile.
|
|
2984
|
+
|
|
2985
|
+
``ACTIVE`` means that the inference profile is ready to be used.
|
|
2980
2986
|
|
|
2981
2987
|
:cloudformationAttribute: Status
|
|
2982
2988
|
'''
|
|
@@ -2985,7 +2991,10 @@ class CfnApplicationInferenceProfile(
|
|
|
2985
2991
|
@builtins.property
|
|
2986
2992
|
@jsii.member(jsii_name="attrType")
|
|
2987
2993
|
def attr_type(self) -> builtins.str:
|
|
2988
|
-
'''
|
|
2994
|
+
'''The type of the inference profile. The following types are possible:.
|
|
2995
|
+
|
|
2996
|
+
- ``SYSTEM_DEFINED`` – The inference profile is defined by Amazon Bedrock. You can route inference requests across regions with these inference profiles.
|
|
2997
|
+
- ``APPLICATION`` – The inference profile was created by a user. This type of inference profile can track metrics and costs when invoking the model in it. The inference profile may route requests to one or multiple regions.
|
|
2989
2998
|
|
|
2990
2999
|
:cloudformationAttribute: Type
|
|
2991
3000
|
'''
|
|
@@ -2994,7 +3003,7 @@ class CfnApplicationInferenceProfile(
|
|
|
2994
3003
|
@builtins.property
|
|
2995
3004
|
@jsii.member(jsii_name="attrUpdatedAt")
|
|
2996
3005
|
def attr_updated_at(self) -> builtins.str:
|
|
2997
|
-
'''
|
|
3006
|
+
'''The time at which the inference profile was last updated.
|
|
2998
3007
|
|
|
2999
3008
|
:cloudformationAttribute: UpdatedAt
|
|
3000
3009
|
'''
|
|
@@ -3014,6 +3023,7 @@ class CfnApplicationInferenceProfile(
|
|
|
3014
3023
|
@builtins.property
|
|
3015
3024
|
@jsii.member(jsii_name="inferenceProfileName")
|
|
3016
3025
|
def inference_profile_name(self) -> builtins.str:
|
|
3026
|
+
'''The name of the inference profile.'''
|
|
3017
3027
|
return typing.cast(builtins.str, jsii.get(self, "inferenceProfileName"))
|
|
3018
3028
|
|
|
3019
3029
|
@inference_profile_name.setter
|
|
@@ -3026,7 +3036,7 @@ class CfnApplicationInferenceProfile(
|
|
|
3026
3036
|
@builtins.property
|
|
3027
3037
|
@jsii.member(jsii_name="description")
|
|
3028
3038
|
def description(self) -> typing.Optional[builtins.str]:
|
|
3029
|
-
'''
|
|
3039
|
+
'''The description of the inference profile.'''
|
|
3030
3040
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "description"))
|
|
3031
3041
|
|
|
3032
3042
|
@description.setter
|
|
@@ -3041,7 +3051,7 @@ class CfnApplicationInferenceProfile(
|
|
|
3041
3051
|
def model_source(
|
|
3042
3052
|
self,
|
|
3043
3053
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnApplicationInferenceProfile.InferenceProfileModelSourceProperty"]]:
|
|
3044
|
-
'''
|
|
3054
|
+
'''Contains configurations for the inference profile to copy as the resource.'''
|
|
3045
3055
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnApplicationInferenceProfile.InferenceProfileModelSourceProperty"]], jsii.get(self, "modelSource"))
|
|
3046
3056
|
|
|
3047
3057
|
@model_source.setter
|
|
@@ -3057,7 +3067,7 @@ class CfnApplicationInferenceProfile(
|
|
|
3057
3067
|
@builtins.property
|
|
3058
3068
|
@jsii.member(jsii_name="tags")
|
|
3059
3069
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
3060
|
-
'''
|
|
3070
|
+
'''A list of tags associated with the inference profile.'''
|
|
3061
3071
|
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
|
|
3062
3072
|
|
|
3063
3073
|
@tags.setter
|
|
@@ -3074,9 +3084,9 @@ class CfnApplicationInferenceProfile(
|
|
|
3074
3084
|
)
|
|
3075
3085
|
class InferenceProfileModelProperty:
|
|
3076
3086
|
def __init__(self, *, model_arn: typing.Optional[builtins.str] = None) -> None:
|
|
3077
|
-
'''
|
|
3087
|
+
'''Contains information about a model.
|
|
3078
3088
|
|
|
3079
|
-
:param model_arn:
|
|
3089
|
+
:param model_arn: The Amazon Resource Name (ARN) of the model.
|
|
3080
3090
|
|
|
3081
3091
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-applicationinferenceprofile-inferenceprofilemodel.html
|
|
3082
3092
|
:exampleMetadata: fixture=_generated
|
|
@@ -3100,9 +3110,7 @@ class CfnApplicationInferenceProfile(
|
|
|
3100
3110
|
|
|
3101
3111
|
@builtins.property
|
|
3102
3112
|
def model_arn(self) -> typing.Optional[builtins.str]:
|
|
3103
|
-
'''
|
|
3104
|
-
|
|
3105
|
-
These models can be used as base models for model customization jobs
|
|
3113
|
+
'''The Amazon Resource Name (ARN) of the model.
|
|
3106
3114
|
|
|
3107
3115
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-applicationinferenceprofile-inferenceprofilemodel.html#cfn-bedrock-applicationinferenceprofile-inferenceprofilemodel-modelarn
|
|
3108
3116
|
'''
|
|
@@ -3127,9 +3135,9 @@ class CfnApplicationInferenceProfile(
|
|
|
3127
3135
|
)
|
|
3128
3136
|
class InferenceProfileModelSourceProperty:
|
|
3129
3137
|
def __init__(self, *, copy_from: builtins.str) -> None:
|
|
3130
|
-
'''
|
|
3138
|
+
'''Contains information about the model or system-defined inference profile that is the source for an inference profile..
|
|
3131
3139
|
|
|
3132
|
-
:param copy_from:
|
|
3140
|
+
:param copy_from: The ARN of the model or system-defined inference profile that is the source for the inference profile.
|
|
3133
3141
|
|
|
3134
3142
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-applicationinferenceprofile-inferenceprofilemodelsource.html
|
|
3135
3143
|
:exampleMetadata: fixture=_generated
|
|
@@ -3153,10 +3161,7 @@ class CfnApplicationInferenceProfile(
|
|
|
3153
3161
|
|
|
3154
3162
|
@builtins.property
|
|
3155
3163
|
def copy_from(self) -> builtins.str:
|
|
3156
|
-
'''
|
|
3157
|
-
|
|
3158
|
-
This
|
|
3159
|
-
can either be a foundation model or predefined inference profile ARN.
|
|
3164
|
+
'''The ARN of the model or system-defined inference profile that is the source for the inference profile.
|
|
3160
3165
|
|
|
3161
3166
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-applicationinferenceprofile-inferenceprofilemodelsource.html#cfn-bedrock-applicationinferenceprofile-inferenceprofilemodelsource-copyfrom
|
|
3162
3167
|
'''
|
|
@@ -3197,10 +3202,10 @@ class CfnApplicationInferenceProfileProps:
|
|
|
3197
3202
|
) -> None:
|
|
3198
3203
|
'''Properties for defining a ``CfnApplicationInferenceProfile``.
|
|
3199
3204
|
|
|
3200
|
-
:param inference_profile_name:
|
|
3201
|
-
:param description:
|
|
3202
|
-
:param model_source:
|
|
3203
|
-
:param tags:
|
|
3205
|
+
:param inference_profile_name: The name of the inference profile.
|
|
3206
|
+
:param description: The description of the inference profile.
|
|
3207
|
+
:param model_source: Contains configurations for the inference profile to copy as the resource.
|
|
3208
|
+
:param tags: A list of tags associated with the inference profile.
|
|
3204
3209
|
|
|
3205
3210
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-applicationinferenceprofile.html
|
|
3206
3211
|
:exampleMetadata: fixture=_generated
|
|
@@ -3243,7 +3248,8 @@ class CfnApplicationInferenceProfileProps:
|
|
|
3243
3248
|
|
|
3244
3249
|
@builtins.property
|
|
3245
3250
|
def inference_profile_name(self) -> builtins.str:
|
|
3246
|
-
'''
|
|
3251
|
+
'''The name of the inference profile.
|
|
3252
|
+
|
|
3247
3253
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-applicationinferenceprofile.html#cfn-bedrock-applicationinferenceprofile-inferenceprofilename
|
|
3248
3254
|
'''
|
|
3249
3255
|
result = self._values.get("inference_profile_name")
|
|
@@ -3252,7 +3258,7 @@ class CfnApplicationInferenceProfileProps:
|
|
|
3252
3258
|
|
|
3253
3259
|
@builtins.property
|
|
3254
3260
|
def description(self) -> typing.Optional[builtins.str]:
|
|
3255
|
-
'''
|
|
3261
|
+
'''The description of the inference profile.
|
|
3256
3262
|
|
|
3257
3263
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-applicationinferenceprofile.html#cfn-bedrock-applicationinferenceprofile-description
|
|
3258
3264
|
'''
|
|
@@ -3263,7 +3269,7 @@ class CfnApplicationInferenceProfileProps:
|
|
|
3263
3269
|
def model_source(
|
|
3264
3270
|
self,
|
|
3265
3271
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnApplicationInferenceProfile.InferenceProfileModelSourceProperty]]:
|
|
3266
|
-
'''
|
|
3272
|
+
'''Contains configurations for the inference profile to copy as the resource.
|
|
3267
3273
|
|
|
3268
3274
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-applicationinferenceprofile.html#cfn-bedrock-applicationinferenceprofile-modelsource
|
|
3269
3275
|
'''
|
|
@@ -3272,7 +3278,7 @@ class CfnApplicationInferenceProfileProps:
|
|
|
3272
3278
|
|
|
3273
3279
|
@builtins.property
|
|
3274
3280
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
3275
|
-
'''
|
|
3281
|
+
'''A list of tags associated with the inference profile.
|
|
3276
3282
|
|
|
3277
3283
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-applicationinferenceprofile.html#cfn-bedrock-applicationinferenceprofile-tags
|
|
3278
3284
|
'''
|
|
@@ -11637,7 +11643,7 @@ class CfnFlowVersion(
|
|
|
11637
11643
|
@builtins.property
|
|
11638
11644
|
@jsii.member(jsii_name="attrCustomerEncryptionKeyArn")
|
|
11639
11645
|
def attr_customer_encryption_key_arn(self) -> builtins.str:
|
|
11640
|
-
'''
|
|
11646
|
+
'''The Amazon Resource Name (ARN) of the KMS key that the flow version is encrypted with.
|
|
11641
11647
|
|
|
11642
11648
|
:cloudformationAttribute: CustomerEncryptionKeyArn
|
|
11643
11649
|
'''
|
|
@@ -17958,7 +17964,7 @@ class CfnKnowledgeBase(
|
|
|
17958
17964
|
) -> None:
|
|
17959
17965
|
'''Contains details about the model used to create vector embeddings for the knowledge base.
|
|
17960
17966
|
|
|
17961
|
-
:param embedding_model_arn: The Amazon Resource Name (ARN) of the model used to create vector embeddings for the knowledge base.
|
|
17967
|
+
:param embedding_model_arn: The Amazon Resource Name (ARN) of the model or inference profile used to create vector embeddings for the knowledge base.
|
|
17962
17968
|
:param embedding_model_configuration: The embeddings model configuration details for the vector model used in Knowledge Base.
|
|
17963
17969
|
|
|
17964
17970
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-vectorknowledgebaseconfiguration.html
|
|
@@ -17993,7 +17999,7 @@ class CfnKnowledgeBase(
|
|
|
17993
17999
|
|
|
17994
18000
|
@builtins.property
|
|
17995
18001
|
def embedding_model_arn(self) -> builtins.str:
|
|
17996
|
-
'''The Amazon Resource Name (ARN) of the model used to create vector embeddings for the knowledge base.
|
|
18002
|
+
'''The Amazon Resource Name (ARN) of the model or inference profile used to create vector embeddings for the knowledge base.
|
|
17997
18003
|
|
|
17998
18004
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-vectorknowledgebaseconfiguration.html#cfn-bedrock-knowledgebase-vectorknowledgebaseconfiguration-embeddingmodelarn
|
|
17999
18005
|
'''
|
|
@@ -19357,7 +19363,7 @@ class CfnPromptVersion(
|
|
|
19357
19363
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
19358
19364
|
:param prompt_arn: The Amazon Resource Name (ARN) of the version of the prompt.
|
|
19359
19365
|
:param description: The description of the prompt version.
|
|
19360
|
-
:param tags: A map of
|
|
19366
|
+
:param tags: A map of tags attached to the prompt version and their values.
|
|
19361
19367
|
'''
|
|
19362
19368
|
if __debug__:
|
|
19363
19369
|
type_hints = typing.get_type_hints(_typecheckingstub__655fee944eb77092f564ba8ce6cc99b8af558f5e4f24168d280a8d548f092789)
|
|
@@ -19420,7 +19426,7 @@ class CfnPromptVersion(
|
|
|
19420
19426
|
@builtins.property
|
|
19421
19427
|
@jsii.member(jsii_name="attrCustomerEncryptionKeyArn")
|
|
19422
19428
|
def attr_customer_encryption_key_arn(self) -> builtins.str:
|
|
19423
|
-
'''
|
|
19429
|
+
'''The Amazon Resource Name (ARN) of the KMS key that the prompt version is encrypted with.
|
|
19424
19430
|
|
|
19425
19431
|
:cloudformationAttribute: CustomerEncryptionKeyArn
|
|
19426
19432
|
'''
|
|
@@ -19522,7 +19528,7 @@ class CfnPromptVersion(
|
|
|
19522
19528
|
@builtins.property
|
|
19523
19529
|
@jsii.member(jsii_name="tags")
|
|
19524
19530
|
def tags(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
|
|
19525
|
-
'''A map of
|
|
19531
|
+
'''A map of tags attached to the prompt version and their values.'''
|
|
19526
19532
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, builtins.str]], jsii.get(self, "tags"))
|
|
19527
19533
|
|
|
19528
19534
|
@tags.setter
|
|
@@ -20070,7 +20076,7 @@ class CfnPromptVersionProps:
|
|
|
20070
20076
|
|
|
20071
20077
|
:param prompt_arn: The Amazon Resource Name (ARN) of the version of the prompt.
|
|
20072
20078
|
:param description: The description of the prompt version.
|
|
20073
|
-
:param tags: A map of
|
|
20079
|
+
:param tags: A map of tags attached to the prompt version and their values.
|
|
20074
20080
|
|
|
20075
20081
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-promptversion.html
|
|
20076
20082
|
:exampleMetadata: fixture=_generated
|
|
@@ -20125,7 +20131,7 @@ class CfnPromptVersionProps:
|
|
|
20125
20131
|
|
|
20126
20132
|
@builtins.property
|
|
20127
20133
|
def tags(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
|
|
20128
|
-
'''A map of
|
|
20134
|
+
'''A map of tags attached to the prompt version and their values.
|
|
20129
20135
|
|
|
20130
20136
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-promptversion.html#cfn-bedrock-promptversion-tags
|
|
20131
20137
|
'''
|
|
@@ -785,6 +785,7 @@ class CfnCollaboration(
|
|
|
785
785
|
query_log_status="queryLogStatus",
|
|
786
786
|
|
|
787
787
|
# the properties below are optional
|
|
788
|
+
analytics_engine="analyticsEngine",
|
|
788
789
|
creator_payment_configuration=cleanrooms.CfnCollaboration.PaymentConfigurationProperty(
|
|
789
790
|
query_compute=cleanrooms.CfnCollaboration.QueryComputePaymentConfigProperty(
|
|
790
791
|
is_responsible=False
|
|
@@ -814,6 +815,7 @@ class CfnCollaboration(
|
|
|
814
815
|
members: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCollaboration.MemberSpecificationProperty", typing.Dict[builtins.str, typing.Any]]]]],
|
|
815
816
|
name: builtins.str,
|
|
816
817
|
query_log_status: builtins.str,
|
|
818
|
+
analytics_engine: typing.Optional[builtins.str] = None,
|
|
817
819
|
creator_payment_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCollaboration.PaymentConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
818
820
|
data_encryption_metadata: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCollaboration.DataEncryptionMetadataProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
819
821
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -827,6 +829,7 @@ class CfnCollaboration(
|
|
|
827
829
|
:param members: A list of initial members, not including the creator. This list is immutable.
|
|
828
830
|
:param name: A human-readable identifier provided by the collaboration owner. Display names are not unique.
|
|
829
831
|
:param query_log_status: An indicator as to whether query logging has been enabled or disabled for the collaboration.
|
|
832
|
+
:param analytics_engine:
|
|
830
833
|
:param creator_payment_configuration: An object representing the collaboration member's payment responsibilities set by the collaboration creator.
|
|
831
834
|
:param data_encryption_metadata: The settings for client-side encryption for cryptographic computing.
|
|
832
835
|
:param tags: An optional label that you can assign to a resource when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource.
|
|
@@ -842,6 +845,7 @@ class CfnCollaboration(
|
|
|
842
845
|
members=members,
|
|
843
846
|
name=name,
|
|
844
847
|
query_log_status=query_log_status,
|
|
848
|
+
analytics_engine=analytics_engine,
|
|
845
849
|
creator_payment_configuration=creator_payment_configuration,
|
|
846
850
|
data_encryption_metadata=data_encryption_metadata,
|
|
847
851
|
tags=tags,
|
|
@@ -995,6 +999,18 @@ class CfnCollaboration(
|
|
|
995
999
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
996
1000
|
jsii.set(self, "queryLogStatus", value) # pyright: ignore[reportArgumentType]
|
|
997
1001
|
|
|
1002
|
+
@builtins.property
|
|
1003
|
+
@jsii.member(jsii_name="analyticsEngine")
|
|
1004
|
+
def analytics_engine(self) -> typing.Optional[builtins.str]:
|
|
1005
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "analyticsEngine"))
|
|
1006
|
+
|
|
1007
|
+
@analytics_engine.setter
|
|
1008
|
+
def analytics_engine(self, value: typing.Optional[builtins.str]) -> None:
|
|
1009
|
+
if __debug__:
|
|
1010
|
+
type_hints = typing.get_type_hints(_typecheckingstub__1052deb6a86709adcf30bca5621af3b50e52d20c54f6e014b8baeaa998273732)
|
|
1011
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1012
|
+
jsii.set(self, "analyticsEngine", value) # pyright: ignore[reportArgumentType]
|
|
1013
|
+
|
|
998
1014
|
@builtins.property
|
|
999
1015
|
@jsii.member(jsii_name="creatorPaymentConfiguration")
|
|
1000
1016
|
def creator_payment_configuration(
|
|
@@ -1405,6 +1421,7 @@ class CfnCollaboration(
|
|
|
1405
1421
|
"members": "members",
|
|
1406
1422
|
"name": "name",
|
|
1407
1423
|
"query_log_status": "queryLogStatus",
|
|
1424
|
+
"analytics_engine": "analyticsEngine",
|
|
1408
1425
|
"creator_payment_configuration": "creatorPaymentConfiguration",
|
|
1409
1426
|
"data_encryption_metadata": "dataEncryptionMetadata",
|
|
1410
1427
|
"tags": "tags",
|
|
@@ -1420,6 +1437,7 @@ class CfnCollaborationProps:
|
|
|
1420
1437
|
members: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCollaboration.MemberSpecificationProperty, typing.Dict[builtins.str, typing.Any]]]]],
|
|
1421
1438
|
name: builtins.str,
|
|
1422
1439
|
query_log_status: builtins.str,
|
|
1440
|
+
analytics_engine: typing.Optional[builtins.str] = None,
|
|
1423
1441
|
creator_payment_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCollaboration.PaymentConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1424
1442
|
data_encryption_metadata: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCollaboration.DataEncryptionMetadataProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1425
1443
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -1432,6 +1450,7 @@ class CfnCollaborationProps:
|
|
|
1432
1450
|
:param members: A list of initial members, not including the creator. This list is immutable.
|
|
1433
1451
|
:param name: A human-readable identifier provided by the collaboration owner. Display names are not unique.
|
|
1434
1452
|
:param query_log_status: An indicator as to whether query logging has been enabled or disabled for the collaboration.
|
|
1453
|
+
:param analytics_engine:
|
|
1435
1454
|
:param creator_payment_configuration: An object representing the collaboration member's payment responsibilities set by the collaboration creator.
|
|
1436
1455
|
:param data_encryption_metadata: The settings for client-side encryption for cryptographic computing.
|
|
1437
1456
|
:param tags: An optional label that you can assign to a resource when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource.
|
|
@@ -1465,6 +1484,7 @@ class CfnCollaborationProps:
|
|
|
1465
1484
|
query_log_status="queryLogStatus",
|
|
1466
1485
|
|
|
1467
1486
|
# the properties below are optional
|
|
1487
|
+
analytics_engine="analyticsEngine",
|
|
1468
1488
|
creator_payment_configuration=cleanrooms.CfnCollaboration.PaymentConfigurationProperty(
|
|
1469
1489
|
query_compute=cleanrooms.CfnCollaboration.QueryComputePaymentConfigProperty(
|
|
1470
1490
|
is_responsible=False
|
|
@@ -1490,6 +1510,7 @@ class CfnCollaborationProps:
|
|
|
1490
1510
|
check_type(argname="argument members", value=members, expected_type=type_hints["members"])
|
|
1491
1511
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
1492
1512
|
check_type(argname="argument query_log_status", value=query_log_status, expected_type=type_hints["query_log_status"])
|
|
1513
|
+
check_type(argname="argument analytics_engine", value=analytics_engine, expected_type=type_hints["analytics_engine"])
|
|
1493
1514
|
check_type(argname="argument creator_payment_configuration", value=creator_payment_configuration, expected_type=type_hints["creator_payment_configuration"])
|
|
1494
1515
|
check_type(argname="argument data_encryption_metadata", value=data_encryption_metadata, expected_type=type_hints["data_encryption_metadata"])
|
|
1495
1516
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
@@ -1501,6 +1522,8 @@ class CfnCollaborationProps:
|
|
|
1501
1522
|
"name": name,
|
|
1502
1523
|
"query_log_status": query_log_status,
|
|
1503
1524
|
}
|
|
1525
|
+
if analytics_engine is not None:
|
|
1526
|
+
self._values["analytics_engine"] = analytics_engine
|
|
1504
1527
|
if creator_payment_configuration is not None:
|
|
1505
1528
|
self._values["creator_payment_configuration"] = creator_payment_configuration
|
|
1506
1529
|
if data_encryption_metadata is not None:
|
|
@@ -1576,6 +1599,14 @@ class CfnCollaborationProps:
|
|
|
1576
1599
|
assert result is not None, "Required property 'query_log_status' is missing"
|
|
1577
1600
|
return typing.cast(builtins.str, result)
|
|
1578
1601
|
|
|
1602
|
+
@builtins.property
|
|
1603
|
+
def analytics_engine(self) -> typing.Optional[builtins.str]:
|
|
1604
|
+
'''
|
|
1605
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-collaboration.html#cfn-cleanrooms-collaboration-analyticsengine
|
|
1606
|
+
'''
|
|
1607
|
+
result = self._values.get("analytics_engine")
|
|
1608
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1609
|
+
|
|
1579
1610
|
@builtins.property
|
|
1580
1611
|
def creator_payment_configuration(
|
|
1581
1612
|
self,
|
|
@@ -5542,7 +5573,8 @@ class CfnMembership(
|
|
|
5542
5573
|
result_format="resultFormat",
|
|
5543
5574
|
|
|
5544
5575
|
# the properties below are optional
|
|
5545
|
-
key_prefix="keyPrefix"
|
|
5576
|
+
key_prefix="keyPrefix",
|
|
5577
|
+
single_file_output=False
|
|
5546
5578
|
)
|
|
5547
5579
|
),
|
|
5548
5580
|
|
|
@@ -5845,7 +5877,8 @@ class CfnMembership(
|
|
|
5845
5877
|
result_format="resultFormat",
|
|
5846
5878
|
|
|
5847
5879
|
# the properties below are optional
|
|
5848
|
-
key_prefix="keyPrefix"
|
|
5880
|
+
key_prefix="keyPrefix",
|
|
5881
|
+
single_file_output=False
|
|
5849
5882
|
)
|
|
5850
5883
|
)
|
|
5851
5884
|
'''
|
|
@@ -5915,7 +5948,8 @@ class CfnMembership(
|
|
|
5915
5948
|
result_format="resultFormat",
|
|
5916
5949
|
|
|
5917
5950
|
# the properties below are optional
|
|
5918
|
-
key_prefix="keyPrefix"
|
|
5951
|
+
key_prefix="keyPrefix",
|
|
5952
|
+
single_file_output=False
|
|
5919
5953
|
)
|
|
5920
5954
|
),
|
|
5921
5955
|
|
|
@@ -6035,6 +6069,7 @@ class CfnMembership(
|
|
|
6035
6069
|
"bucket": "bucket",
|
|
6036
6070
|
"result_format": "resultFormat",
|
|
6037
6071
|
"key_prefix": "keyPrefix",
|
|
6072
|
+
"single_file_output": "singleFileOutput",
|
|
6038
6073
|
},
|
|
6039
6074
|
)
|
|
6040
6075
|
class ProtectedQueryS3OutputConfigurationProperty:
|
|
@@ -6044,12 +6079,14 @@ class CfnMembership(
|
|
|
6044
6079
|
bucket: builtins.str,
|
|
6045
6080
|
result_format: builtins.str,
|
|
6046
6081
|
key_prefix: typing.Optional[builtins.str] = None,
|
|
6082
|
+
single_file_output: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
6047
6083
|
) -> None:
|
|
6048
6084
|
'''Contains the configuration to write the query results to S3.
|
|
6049
6085
|
|
|
6050
6086
|
:param bucket: The S3 bucket to unload the protected query results.
|
|
6051
6087
|
:param result_format: Intended file format of the result.
|
|
6052
6088
|
:param key_prefix: The S3 prefix to unload the protected query results.
|
|
6089
|
+
:param single_file_output:
|
|
6053
6090
|
|
|
6054
6091
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-protectedquerys3outputconfiguration.html
|
|
6055
6092
|
:exampleMetadata: fixture=_generated
|
|
@@ -6065,7 +6102,8 @@ class CfnMembership(
|
|
|
6065
6102
|
result_format="resultFormat",
|
|
6066
6103
|
|
|
6067
6104
|
# the properties below are optional
|
|
6068
|
-
key_prefix="keyPrefix"
|
|
6105
|
+
key_prefix="keyPrefix",
|
|
6106
|
+
single_file_output=False
|
|
6069
6107
|
)
|
|
6070
6108
|
'''
|
|
6071
6109
|
if __debug__:
|
|
@@ -6073,12 +6111,15 @@ class CfnMembership(
|
|
|
6073
6111
|
check_type(argname="argument bucket", value=bucket, expected_type=type_hints["bucket"])
|
|
6074
6112
|
check_type(argname="argument result_format", value=result_format, expected_type=type_hints["result_format"])
|
|
6075
6113
|
check_type(argname="argument key_prefix", value=key_prefix, expected_type=type_hints["key_prefix"])
|
|
6114
|
+
check_type(argname="argument single_file_output", value=single_file_output, expected_type=type_hints["single_file_output"])
|
|
6076
6115
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
6077
6116
|
"bucket": bucket,
|
|
6078
6117
|
"result_format": result_format,
|
|
6079
6118
|
}
|
|
6080
6119
|
if key_prefix is not None:
|
|
6081
6120
|
self._values["key_prefix"] = key_prefix
|
|
6121
|
+
if single_file_output is not None:
|
|
6122
|
+
self._values["single_file_output"] = single_file_output
|
|
6082
6123
|
|
|
6083
6124
|
@builtins.property
|
|
6084
6125
|
def bucket(self) -> builtins.str:
|
|
@@ -6109,6 +6150,16 @@ class CfnMembership(
|
|
|
6109
6150
|
result = self._values.get("key_prefix")
|
|
6110
6151
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
6111
6152
|
|
|
6153
|
+
@builtins.property
|
|
6154
|
+
def single_file_output(
|
|
6155
|
+
self,
|
|
6156
|
+
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
6157
|
+
'''
|
|
6158
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-protectedquerys3outputconfiguration.html#cfn-cleanrooms-membership-protectedquerys3outputconfiguration-singlefileoutput
|
|
6159
|
+
'''
|
|
6160
|
+
result = self._values.get("single_file_output")
|
|
6161
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
6162
|
+
|
|
6112
6163
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
6113
6164
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
6114
6165
|
|
|
@@ -6171,7 +6222,8 @@ class CfnMembershipProps:
|
|
|
6171
6222
|
result_format="resultFormat",
|
|
6172
6223
|
|
|
6173
6224
|
# the properties below are optional
|
|
6174
|
-
key_prefix="keyPrefix"
|
|
6225
|
+
key_prefix="keyPrefix",
|
|
6226
|
+
single_file_output=False
|
|
6175
6227
|
)
|
|
6176
6228
|
),
|
|
6177
6229
|
|
|
@@ -6849,6 +6901,7 @@ def _typecheckingstub__a8995527da9ce4212caf3c1fdf601e4947c02ff1e364e92811ac8635b
|
|
|
6849
6901
|
members: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCollaboration.MemberSpecificationProperty, typing.Dict[builtins.str, typing.Any]]]]],
|
|
6850
6902
|
name: builtins.str,
|
|
6851
6903
|
query_log_status: builtins.str,
|
|
6904
|
+
analytics_engine: typing.Optional[builtins.str] = None,
|
|
6852
6905
|
creator_payment_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCollaboration.PaymentConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6853
6906
|
data_encryption_metadata: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCollaboration.DataEncryptionMetadataProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6854
6907
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -6904,6 +6957,12 @@ def _typecheckingstub__fa852049fd80eee6c2543d7576eb0c8f60a43d90ca97006450c31d8a1
|
|
|
6904
6957
|
"""Type checking stubs"""
|
|
6905
6958
|
pass
|
|
6906
6959
|
|
|
6960
|
+
def _typecheckingstub__1052deb6a86709adcf30bca5621af3b50e52d20c54f6e014b8baeaa998273732(
|
|
6961
|
+
value: typing.Optional[builtins.str],
|
|
6962
|
+
) -> None:
|
|
6963
|
+
"""Type checking stubs"""
|
|
6964
|
+
pass
|
|
6965
|
+
|
|
6907
6966
|
def _typecheckingstub__991360bdd6af4d5b428da7f242ab1cc46f2a619a380ffdff6e2434a3e7541e84(
|
|
6908
6967
|
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnCollaboration.PaymentConfigurationProperty]],
|
|
6909
6968
|
) -> None:
|
|
@@ -6964,6 +7023,7 @@ def _typecheckingstub__2049291a9933df94c4258b33838a3aa8100d0214a4519c3d84e6d70ed
|
|
|
6964
7023
|
members: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCollaboration.MemberSpecificationProperty, typing.Dict[builtins.str, typing.Any]]]]],
|
|
6965
7024
|
name: builtins.str,
|
|
6966
7025
|
query_log_status: builtins.str,
|
|
7026
|
+
analytics_engine: typing.Optional[builtins.str] = None,
|
|
6967
7027
|
creator_payment_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCollaboration.PaymentConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6968
7028
|
data_encryption_metadata: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCollaboration.DataEncryptionMetadataProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6969
7029
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -7571,6 +7631,7 @@ def _typecheckingstub__a9188eb901d25d30e10ffe45a67a0477e30fc05a712c633d687872210
|
|
|
7571
7631
|
bucket: builtins.str,
|
|
7572
7632
|
result_format: builtins.str,
|
|
7573
7633
|
key_prefix: typing.Optional[builtins.str] = None,
|
|
7634
|
+
single_file_output: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
7574
7635
|
) -> None:
|
|
7575
7636
|
"""Type checking stubs"""
|
|
7576
7637
|
pass
|