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
aws_cdk/aws_chatbot/__init__.py
CHANGED
|
@@ -140,7 +140,7 @@ class CfnCustomAction(
|
|
|
140
140
|
metaclass=jsii.JSIIMeta,
|
|
141
141
|
jsii_type="aws-cdk-lib.aws_chatbot.CfnCustomAction",
|
|
142
142
|
):
|
|
143
|
-
'''
|
|
143
|
+
'''The ``AWS::Chatbot::CustomAction`` resource creates a custom action that can be invoked as an alias or as a button on a notification.
|
|
144
144
|
|
|
145
145
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-customaction.html
|
|
146
146
|
:cloudformationResource: AWS::Chatbot::CustomAction
|
|
@@ -195,11 +195,11 @@ class CfnCustomAction(
|
|
|
195
195
|
'''
|
|
196
196
|
:param scope: Scope in which this resource is defined.
|
|
197
197
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
198
|
-
:param action_name:
|
|
199
|
-
:param definition:
|
|
200
|
-
:param alias_name:
|
|
201
|
-
:param attachments:
|
|
202
|
-
:param tags:
|
|
198
|
+
:param action_name: The name of the custom action. This name is included in the Amazon Resource Name (ARN).
|
|
199
|
+
:param definition: The definition of the command to run when invoked as an alias or as an action button.
|
|
200
|
+
:param alias_name: The name used to invoke this action in a chat channel. For example, ``@aws run my-alias`` .
|
|
201
|
+
:param attachments: Defines when this custom action button should be attached to a notification.
|
|
202
|
+
:param tags: The tags to add to the configuration.
|
|
203
203
|
'''
|
|
204
204
|
if __debug__:
|
|
205
205
|
type_hints = typing.get_type_hints(_typecheckingstub__4840384b6e4d8bb56afed06983751f4092ececfe9720ea514abb1728770b507a)
|
|
@@ -248,7 +248,8 @@ class CfnCustomAction(
|
|
|
248
248
|
@builtins.property
|
|
249
249
|
@jsii.member(jsii_name="attrCustomActionArn")
|
|
250
250
|
def attr_custom_action_arn(self) -> builtins.str:
|
|
251
|
-
'''
|
|
251
|
+
'''The fully defined ARN of the custom action.
|
|
252
|
+
|
|
252
253
|
:cloudformationAttribute: CustomActionArn
|
|
253
254
|
'''
|
|
254
255
|
return typing.cast(builtins.str, jsii.get(self, "attrCustomActionArn"))
|
|
@@ -267,6 +268,7 @@ class CfnCustomAction(
|
|
|
267
268
|
@builtins.property
|
|
268
269
|
@jsii.member(jsii_name="actionName")
|
|
269
270
|
def action_name(self) -> builtins.str:
|
|
271
|
+
'''The name of the custom action.'''
|
|
270
272
|
return typing.cast(builtins.str, jsii.get(self, "actionName"))
|
|
271
273
|
|
|
272
274
|
@action_name.setter
|
|
@@ -281,6 +283,7 @@ class CfnCustomAction(
|
|
|
281
283
|
def definition(
|
|
282
284
|
self,
|
|
283
285
|
) -> typing.Union[_IResolvable_da3f097b, "CfnCustomAction.CustomActionDefinitionProperty"]:
|
|
286
|
+
'''The definition of the command to run when invoked as an alias or as an action button.'''
|
|
284
287
|
return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnCustomAction.CustomActionDefinitionProperty"], jsii.get(self, "definition"))
|
|
285
288
|
|
|
286
289
|
@definition.setter
|
|
@@ -296,6 +299,7 @@ class CfnCustomAction(
|
|
|
296
299
|
@builtins.property
|
|
297
300
|
@jsii.member(jsii_name="aliasName")
|
|
298
301
|
def alias_name(self) -> typing.Optional[builtins.str]:
|
|
302
|
+
'''The name used to invoke this action in a chat channel.'''
|
|
299
303
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "aliasName"))
|
|
300
304
|
|
|
301
305
|
@alias_name.setter
|
|
@@ -310,6 +314,7 @@ class CfnCustomAction(
|
|
|
310
314
|
def attachments(
|
|
311
315
|
self,
|
|
312
316
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnCustomAction.CustomActionAttachmentProperty"]]]]:
|
|
317
|
+
'''Defines when this custom action button should be attached to a notification.'''
|
|
313
318
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnCustomAction.CustomActionAttachmentProperty"]]]], jsii.get(self, "attachments"))
|
|
314
319
|
|
|
315
320
|
@attachments.setter
|
|
@@ -325,6 +330,7 @@ class CfnCustomAction(
|
|
|
325
330
|
@builtins.property
|
|
326
331
|
@jsii.member(jsii_name="tags")
|
|
327
332
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
333
|
+
'''The tags to add to the configuration.'''
|
|
328
334
|
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
|
|
329
335
|
|
|
330
336
|
@tags.setter
|
|
@@ -351,10 +357,11 @@ class CfnCustomAction(
|
|
|
351
357
|
variable_name: builtins.str,
|
|
352
358
|
value: typing.Optional[builtins.str] = None,
|
|
353
359
|
) -> None:
|
|
354
|
-
'''
|
|
355
|
-
|
|
356
|
-
:param
|
|
357
|
-
:param
|
|
360
|
+
'''A criteria for when a button should be shown based on values in the notification.
|
|
361
|
+
|
|
362
|
+
:param operator: The operation to perform on the named variable.
|
|
363
|
+
:param variable_name: The name of the variable to operate on.
|
|
364
|
+
:param value: A value that is compared with the actual value of the variable based on the behavior of the operator.
|
|
358
365
|
|
|
359
366
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-chatbot-customaction-customactionattachmentcriteria.html
|
|
360
367
|
:exampleMetadata: fixture=_generated
|
|
@@ -387,7 +394,8 @@ class CfnCustomAction(
|
|
|
387
394
|
|
|
388
395
|
@builtins.property
|
|
389
396
|
def operator(self) -> builtins.str:
|
|
390
|
-
'''
|
|
397
|
+
'''The operation to perform on the named variable.
|
|
398
|
+
|
|
391
399
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-chatbot-customaction-customactionattachmentcriteria.html#cfn-chatbot-customaction-customactionattachmentcriteria-operator
|
|
392
400
|
'''
|
|
393
401
|
result = self._values.get("operator")
|
|
@@ -396,7 +404,8 @@ class CfnCustomAction(
|
|
|
396
404
|
|
|
397
405
|
@builtins.property
|
|
398
406
|
def variable_name(self) -> builtins.str:
|
|
399
|
-
'''
|
|
407
|
+
'''The name of the variable to operate on.
|
|
408
|
+
|
|
400
409
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-chatbot-customaction-customactionattachmentcriteria.html#cfn-chatbot-customaction-customactionattachmentcriteria-variablename
|
|
401
410
|
'''
|
|
402
411
|
result = self._values.get("variable_name")
|
|
@@ -405,7 +414,8 @@ class CfnCustomAction(
|
|
|
405
414
|
|
|
406
415
|
@builtins.property
|
|
407
416
|
def value(self) -> typing.Optional[builtins.str]:
|
|
408
|
-
'''
|
|
417
|
+
'''A value that is compared with the actual value of the variable based on the behavior of the operator.
|
|
418
|
+
|
|
409
419
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-chatbot-customaction-customactionattachmentcriteria.html#cfn-chatbot-customaction-customactionattachmentcriteria-value
|
|
410
420
|
'''
|
|
411
421
|
result = self._values.get("value")
|
|
@@ -441,11 +451,12 @@ class CfnCustomAction(
|
|
|
441
451
|
notification_type: typing.Optional[builtins.str] = None,
|
|
442
452
|
variables: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, builtins.str]]] = None,
|
|
443
453
|
) -> None:
|
|
444
|
-
'''
|
|
445
|
-
|
|
446
|
-
:param
|
|
447
|
-
:param
|
|
448
|
-
:param
|
|
454
|
+
'''Defines when a custom action button should be attached to a notification.
|
|
455
|
+
|
|
456
|
+
:param button_text: The text of the button that appears on the notification.
|
|
457
|
+
:param criteria: The criteria for when a button should be shown based on values in the notification.
|
|
458
|
+
:param notification_type: The type of notification that the custom action should be attached to.
|
|
459
|
+
:param variables: The variables to extract from the notification.
|
|
449
460
|
|
|
450
461
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-chatbot-customaction-customactionattachment.html
|
|
451
462
|
:exampleMetadata: fixture=_generated
|
|
@@ -489,7 +500,8 @@ class CfnCustomAction(
|
|
|
489
500
|
|
|
490
501
|
@builtins.property
|
|
491
502
|
def button_text(self) -> typing.Optional[builtins.str]:
|
|
492
|
-
'''
|
|
503
|
+
'''The text of the button that appears on the notification.
|
|
504
|
+
|
|
493
505
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-chatbot-customaction-customactionattachment.html#cfn-chatbot-customaction-customactionattachment-buttontext
|
|
494
506
|
'''
|
|
495
507
|
result = self._values.get("button_text")
|
|
@@ -499,7 +511,8 @@ class CfnCustomAction(
|
|
|
499
511
|
def criteria(
|
|
500
512
|
self,
|
|
501
513
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnCustomAction.CustomActionAttachmentCriteriaProperty"]]]]:
|
|
502
|
-
'''
|
|
514
|
+
'''The criteria for when a button should be shown based on values in the notification.
|
|
515
|
+
|
|
503
516
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-chatbot-customaction-customactionattachment.html#cfn-chatbot-customaction-customactionattachment-criteria
|
|
504
517
|
'''
|
|
505
518
|
result = self._values.get("criteria")
|
|
@@ -507,7 +520,8 @@ class CfnCustomAction(
|
|
|
507
520
|
|
|
508
521
|
@builtins.property
|
|
509
522
|
def notification_type(self) -> typing.Optional[builtins.str]:
|
|
510
|
-
'''
|
|
523
|
+
'''The type of notification that the custom action should be attached to.
|
|
524
|
+
|
|
511
525
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-chatbot-customaction-customactionattachment.html#cfn-chatbot-customaction-customactionattachment-notificationtype
|
|
512
526
|
'''
|
|
513
527
|
result = self._values.get("notification_type")
|
|
@@ -517,7 +531,8 @@ class CfnCustomAction(
|
|
|
517
531
|
def variables(
|
|
518
532
|
self,
|
|
519
533
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, builtins.str]]]:
|
|
520
|
-
'''
|
|
534
|
+
'''The variables to extract from the notification.
|
|
535
|
+
|
|
521
536
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-chatbot-customaction-customactionattachment.html#cfn-chatbot-customaction-customactionattachment-variables
|
|
522
537
|
'''
|
|
523
538
|
result = self._values.get("variables")
|
|
@@ -541,8 +556,9 @@ class CfnCustomAction(
|
|
|
541
556
|
)
|
|
542
557
|
class CustomActionDefinitionProperty:
|
|
543
558
|
def __init__(self, *, command_text: builtins.str) -> None:
|
|
544
|
-
'''
|
|
545
|
-
|
|
559
|
+
'''The definition of the command to run when invoked as an alias or as an action button.
|
|
560
|
+
|
|
561
|
+
:param command_text: The command string to run which may include variables by prefixing with a dollar sign ($).
|
|
546
562
|
|
|
547
563
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-chatbot-customaction-customactiondefinition.html
|
|
548
564
|
:exampleMetadata: fixture=_generated
|
|
@@ -566,7 +582,8 @@ class CfnCustomAction(
|
|
|
566
582
|
|
|
567
583
|
@builtins.property
|
|
568
584
|
def command_text(self) -> builtins.str:
|
|
569
|
-
'''
|
|
585
|
+
'''The command string to run which may include variables by prefixing with a dollar sign ($).
|
|
586
|
+
|
|
570
587
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-chatbot-customaction-customactiondefinition.html#cfn-chatbot-customaction-customactiondefinition-commandtext
|
|
571
588
|
'''
|
|
572
589
|
result = self._values.get("command_text")
|
|
@@ -608,11 +625,11 @@ class CfnCustomActionProps:
|
|
|
608
625
|
) -> None:
|
|
609
626
|
'''Properties for defining a ``CfnCustomAction``.
|
|
610
627
|
|
|
611
|
-
:param action_name:
|
|
612
|
-
:param definition:
|
|
613
|
-
:param alias_name:
|
|
614
|
-
:param attachments:
|
|
615
|
-
:param tags:
|
|
628
|
+
:param action_name: The name of the custom action. This name is included in the Amazon Resource Name (ARN).
|
|
629
|
+
:param definition: The definition of the command to run when invoked as an alias or as an action button.
|
|
630
|
+
:param alias_name: The name used to invoke this action in a chat channel. For example, ``@aws run my-alias`` .
|
|
631
|
+
:param attachments: Defines when this custom action button should be attached to a notification.
|
|
632
|
+
:param tags: The tags to add to the configuration.
|
|
616
633
|
|
|
617
634
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-customaction.html
|
|
618
635
|
:exampleMetadata: fixture=_generated
|
|
@@ -671,7 +688,10 @@ class CfnCustomActionProps:
|
|
|
671
688
|
|
|
672
689
|
@builtins.property
|
|
673
690
|
def action_name(self) -> builtins.str:
|
|
674
|
-
'''
|
|
691
|
+
'''The name of the custom action.
|
|
692
|
+
|
|
693
|
+
This name is included in the Amazon Resource Name (ARN).
|
|
694
|
+
|
|
675
695
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-customaction.html#cfn-chatbot-customaction-actionname
|
|
676
696
|
'''
|
|
677
697
|
result = self._values.get("action_name")
|
|
@@ -682,7 +702,8 @@ class CfnCustomActionProps:
|
|
|
682
702
|
def definition(
|
|
683
703
|
self,
|
|
684
704
|
) -> typing.Union[_IResolvable_da3f097b, CfnCustomAction.CustomActionDefinitionProperty]:
|
|
685
|
-
'''
|
|
705
|
+
'''The definition of the command to run when invoked as an alias or as an action button.
|
|
706
|
+
|
|
686
707
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-customaction.html#cfn-chatbot-customaction-definition
|
|
687
708
|
'''
|
|
688
709
|
result = self._values.get("definition")
|
|
@@ -691,7 +712,10 @@ class CfnCustomActionProps:
|
|
|
691
712
|
|
|
692
713
|
@builtins.property
|
|
693
714
|
def alias_name(self) -> typing.Optional[builtins.str]:
|
|
694
|
-
'''
|
|
715
|
+
'''The name used to invoke this action in a chat channel.
|
|
716
|
+
|
|
717
|
+
For example, ``@aws run my-alias`` .
|
|
718
|
+
|
|
695
719
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-customaction.html#cfn-chatbot-customaction-aliasname
|
|
696
720
|
'''
|
|
697
721
|
result = self._values.get("alias_name")
|
|
@@ -701,7 +725,8 @@ class CfnCustomActionProps:
|
|
|
701
725
|
def attachments(
|
|
702
726
|
self,
|
|
703
727
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnCustomAction.CustomActionAttachmentProperty]]]]:
|
|
704
|
-
'''
|
|
728
|
+
'''Defines when this custom action button should be attached to a notification.
|
|
729
|
+
|
|
705
730
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-customaction.html#cfn-chatbot-customaction-attachments
|
|
706
731
|
'''
|
|
707
732
|
result = self._values.get("attachments")
|
|
@@ -709,7 +734,8 @@ class CfnCustomActionProps:
|
|
|
709
734
|
|
|
710
735
|
@builtins.property
|
|
711
736
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
712
|
-
'''
|
|
737
|
+
'''The tags to add to the configuration.
|
|
738
|
+
|
|
713
739
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-customaction.html#cfn-chatbot-customaction-tags
|
|
714
740
|
'''
|
|
715
741
|
result = self._values.get("tags")
|
|
@@ -792,7 +818,7 @@ class CfnMicrosoftTeamsChannelConfiguration(
|
|
|
792
818
|
:param team_id: The ID of the Microsoft Team authorized with AWS Chatbot . To get the team ID, you must perform the initial authorization flow with Microsoft Teams in the AWS Chatbot console. Then you can copy and paste the team ID from the console. For more details, see steps 1-3 in `Get started with Microsoft Teams <https://docs.aws.amazon.com/chatbot/latest/adminguide/teams-setup.html#teams-client-setup>`_ in the *AWS Chatbot Administrator Guide* .
|
|
793
819
|
:param teams_channel_id: The ID of the Microsoft Teams channel. To get the channel ID, open Microsoft Teams, right click on the channel name in the left pane, then choose Copy. An example of the channel ID syntax is: ``19%3ab6ef35dc342d56ba5654e6fc6d25a071%40thread.tacv2`` .
|
|
794
820
|
:param teams_tenant_id: The ID of the Microsoft Teams tenant. To get the tenant ID, you must perform the initial authorization flow with Microsoft Teams in the AWS Chatbot console. Then you can copy and paste the tenant ID from the console. For more details, see steps 1-4 in `Get started with Microsoft Teams <https://docs.aws.amazon.com/chatbot/latest/adminguide/teams-setup.html#teams-client-setup>`_ in the *AWS Chatbot Administrator Guide* .
|
|
795
|
-
:param customization_resource_arns:
|
|
821
|
+
:param customization_resource_arns: Links a list of resource ARNs (for example, custom action ARNs) to a Miscrosoft Teams channel configuration for AWS Chatbot .
|
|
796
822
|
:param guardrail_policies: The list of IAM policy ARNs that are applied as channel guardrails. The AWS managed 'AdministratorAccess' policy is applied as a default if this is not set.
|
|
797
823
|
:param logging_level: Specifies the logging level for this configuration. This property affects the log entries pushed to Amazon CloudWatch Logs. Logging levels include ``ERROR`` , ``INFO`` , or ``NONE`` . Default: - "NONE"
|
|
798
824
|
:param sns_topic_arns: The ARNs of the SNS topics that deliver notifications to AWS Chatbot .
|
|
@@ -852,7 +878,7 @@ class CfnMicrosoftTeamsChannelConfiguration(
|
|
|
852
878
|
@builtins.property
|
|
853
879
|
@jsii.member(jsii_name="attrArn")
|
|
854
880
|
def attr_arn(self) -> builtins.str:
|
|
855
|
-
'''
|
|
881
|
+
'''The ARN of the resource.
|
|
856
882
|
|
|
857
883
|
:cloudformationAttribute: Arn
|
|
858
884
|
'''
|
|
@@ -937,7 +963,7 @@ class CfnMicrosoftTeamsChannelConfiguration(
|
|
|
937
963
|
@builtins.property
|
|
938
964
|
@jsii.member(jsii_name="customizationResourceArns")
|
|
939
965
|
def customization_resource_arns(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
940
|
-
'''
|
|
966
|
+
'''Links a list of resource ARNs (for example, custom action ARNs) to a Miscrosoft Teams channel configuration for AWS Chatbot .'''
|
|
941
967
|
return typing.cast(typing.Optional[typing.List[builtins.str]], jsii.get(self, "customizationResourceArns"))
|
|
942
968
|
|
|
943
969
|
@customization_resource_arns.setter
|
|
@@ -1067,7 +1093,7 @@ class CfnMicrosoftTeamsChannelConfigurationProps:
|
|
|
1067
1093
|
:param team_id: The ID of the Microsoft Team authorized with AWS Chatbot . To get the team ID, you must perform the initial authorization flow with Microsoft Teams in the AWS Chatbot console. Then you can copy and paste the team ID from the console. For more details, see steps 1-3 in `Get started with Microsoft Teams <https://docs.aws.amazon.com/chatbot/latest/adminguide/teams-setup.html#teams-client-setup>`_ in the *AWS Chatbot Administrator Guide* .
|
|
1068
1094
|
:param teams_channel_id: The ID of the Microsoft Teams channel. To get the channel ID, open Microsoft Teams, right click on the channel name in the left pane, then choose Copy. An example of the channel ID syntax is: ``19%3ab6ef35dc342d56ba5654e6fc6d25a071%40thread.tacv2`` .
|
|
1069
1095
|
:param teams_tenant_id: The ID of the Microsoft Teams tenant. To get the tenant ID, you must perform the initial authorization flow with Microsoft Teams in the AWS Chatbot console. Then you can copy and paste the tenant ID from the console. For more details, see steps 1-4 in `Get started with Microsoft Teams <https://docs.aws.amazon.com/chatbot/latest/adminguide/teams-setup.html#teams-client-setup>`_ in the *AWS Chatbot Administrator Guide* .
|
|
1070
|
-
:param customization_resource_arns:
|
|
1096
|
+
:param customization_resource_arns: Links a list of resource ARNs (for example, custom action ARNs) to a Miscrosoft Teams channel configuration for AWS Chatbot .
|
|
1071
1097
|
:param guardrail_policies: The list of IAM policy ARNs that are applied as channel guardrails. The AWS managed 'AdministratorAccess' policy is applied as a default if this is not set.
|
|
1072
1098
|
:param logging_level: Specifies the logging level for this configuration. This property affects the log entries pushed to Amazon CloudWatch Logs. Logging levels include ``ERROR`` , ``INFO`` , or ``NONE`` . Default: - "NONE"
|
|
1073
1099
|
:param sns_topic_arns: The ARNs of the SNS topics that deliver notifications to AWS Chatbot .
|
|
@@ -1195,7 +1221,7 @@ class CfnMicrosoftTeamsChannelConfigurationProps:
|
|
|
1195
1221
|
|
|
1196
1222
|
@builtins.property
|
|
1197
1223
|
def customization_resource_arns(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
1198
|
-
'''
|
|
1224
|
+
'''Links a list of resource ARNs (for example, custom action ARNs) to a Miscrosoft Teams channel configuration for AWS Chatbot .
|
|
1199
1225
|
|
|
1200
1226
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-microsoftteamschannelconfiguration.html#cfn-chatbot-microsoftteamschannelconfiguration-customizationresourcearns
|
|
1201
1227
|
'''
|
|
@@ -1331,7 +1357,7 @@ class CfnSlackChannelConfiguration(
|
|
|
1331
1357
|
:param iam_role_arn: The ARN of the IAM role that defines the permissions for AWS Chatbot . This is a user-defined role that AWS Chatbot will assume. This is not the service-linked role. For more information, see `IAM Policies for AWS Chatbot <https://docs.aws.amazon.com/chatbot/latest/adminguide/chatbot-iam-policies.html>`_ .
|
|
1332
1358
|
:param slack_channel_id: The ID of the Slack channel. To get the ID, open Slack, right click on the channel name in the left pane, then choose Copy Link. The channel ID is the character string at the end of the URL. For example, ``ABCBBLZZZ`` .
|
|
1333
1359
|
:param slack_workspace_id: The ID of the Slack workspace authorized with AWS Chatbot . To get the workspace ID, you must perform the initial authorization flow with Slack in the AWS Chatbot console. Then you can copy and paste the workspace ID from the console. For more details, see steps 1-3 in `Tutorial: Get started with Slack <https://docs.aws.amazon.com/chatbot/latest/adminguide/slack-setup.html>`_ in the *AWS Chatbot User Guide* .
|
|
1334
|
-
:param customization_resource_arns:
|
|
1360
|
+
:param customization_resource_arns: Links a list of resource ARNs (for example, custom action ARNs) to a Slack channel configuration for AWS Chatbot .
|
|
1335
1361
|
:param guardrail_policies: The list of IAM policy ARNs that are applied as channel guardrails. The AWS managed 'AdministratorAccess' policy is applied as a default if this is not set.
|
|
1336
1362
|
:param logging_level: Specifies the logging level for this configuration. This property affects the log entries pushed to Amazon CloudWatch Logs. Logging levels include ``ERROR`` , ``INFO`` , or ``NONE`` . Default: - "NONE"
|
|
1337
1363
|
:param sns_topic_arns: The ARNs of the SNS topics that deliver notifications to AWS Chatbot .
|
|
@@ -1390,7 +1416,7 @@ class CfnSlackChannelConfiguration(
|
|
|
1390
1416
|
@builtins.property
|
|
1391
1417
|
@jsii.member(jsii_name="attrArn")
|
|
1392
1418
|
def attr_arn(self) -> builtins.str:
|
|
1393
|
-
'''
|
|
1419
|
+
'''The ARN of the resource.
|
|
1394
1420
|
|
|
1395
1421
|
:cloudformationAttribute: Arn
|
|
1396
1422
|
'''
|
|
@@ -1462,7 +1488,7 @@ class CfnSlackChannelConfiguration(
|
|
|
1462
1488
|
@builtins.property
|
|
1463
1489
|
@jsii.member(jsii_name="customizationResourceArns")
|
|
1464
1490
|
def customization_resource_arns(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
1465
|
-
'''
|
|
1491
|
+
'''Links a list of resource ARNs (for example, custom action ARNs) to a Slack channel configuration for AWS Chatbot .'''
|
|
1466
1492
|
return typing.cast(typing.Optional[typing.List[builtins.str]], jsii.get(self, "customizationResourceArns"))
|
|
1467
1493
|
|
|
1468
1494
|
@customization_resource_arns.setter
|
|
@@ -1589,7 +1615,7 @@ class CfnSlackChannelConfigurationProps:
|
|
|
1589
1615
|
:param iam_role_arn: The ARN of the IAM role that defines the permissions for AWS Chatbot . This is a user-defined role that AWS Chatbot will assume. This is not the service-linked role. For more information, see `IAM Policies for AWS Chatbot <https://docs.aws.amazon.com/chatbot/latest/adminguide/chatbot-iam-policies.html>`_ .
|
|
1590
1616
|
:param slack_channel_id: The ID of the Slack channel. To get the ID, open Slack, right click on the channel name in the left pane, then choose Copy Link. The channel ID is the character string at the end of the URL. For example, ``ABCBBLZZZ`` .
|
|
1591
1617
|
:param slack_workspace_id: The ID of the Slack workspace authorized with AWS Chatbot . To get the workspace ID, you must perform the initial authorization flow with Slack in the AWS Chatbot console. Then you can copy and paste the workspace ID from the console. For more details, see steps 1-3 in `Tutorial: Get started with Slack <https://docs.aws.amazon.com/chatbot/latest/adminguide/slack-setup.html>`_ in the *AWS Chatbot User Guide* .
|
|
1592
|
-
:param customization_resource_arns:
|
|
1618
|
+
:param customization_resource_arns: Links a list of resource ARNs (for example, custom action ARNs) to a Slack channel configuration for AWS Chatbot .
|
|
1593
1619
|
:param guardrail_policies: The list of IAM policy ARNs that are applied as channel guardrails. The AWS managed 'AdministratorAccess' policy is applied as a default if this is not set.
|
|
1594
1620
|
:param logging_level: Specifies the logging level for this configuration. This property affects the log entries pushed to Amazon CloudWatch Logs. Logging levels include ``ERROR`` , ``INFO`` , or ``NONE`` . Default: - "NONE"
|
|
1595
1621
|
:param sns_topic_arns: The ARNs of the SNS topics that deliver notifications to AWS Chatbot .
|
|
@@ -1702,7 +1728,7 @@ class CfnSlackChannelConfigurationProps:
|
|
|
1702
1728
|
|
|
1703
1729
|
@builtins.property
|
|
1704
1730
|
def customization_resource_arns(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
1705
|
-
'''
|
|
1731
|
+
'''Links a list of resource ARNs (for example, custom action ARNs) to a Slack channel configuration for AWS Chatbot .
|
|
1706
1732
|
|
|
1707
1733
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html#cfn-chatbot-slackchannelconfiguration-customizationresourcearns
|
|
1708
1734
|
'''
|
|
@@ -1758,7 +1758,7 @@ class CfnConfiguredTable(
|
|
|
1758
1758
|
:param allowed_columns: The columns within the underlying AWS Glue table that can be utilized within collaborations.
|
|
1759
1759
|
:param analysis_method: The analysis method for the configured table. The only valid value is currently ``DIRECT_QUERY``.
|
|
1760
1760
|
:param name: A name for the configured table.
|
|
1761
|
-
:param table_reference: The
|
|
1761
|
+
:param table_reference: The table that this configured table represents.
|
|
1762
1762
|
:param analysis_rules: The analysis rule that was created for the configured table.
|
|
1763
1763
|
:param description: A description for the configured table.
|
|
1764
1764
|
: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.
|
|
@@ -1886,7 +1886,7 @@ class CfnConfiguredTable(
|
|
|
1886
1886
|
def table_reference(
|
|
1887
1887
|
self,
|
|
1888
1888
|
) -> typing.Union[_IResolvable_da3f097b, "CfnConfiguredTable.TableReferenceProperty"]:
|
|
1889
|
-
'''The
|
|
1889
|
+
'''The table that this configured table represents.'''
|
|
1890
1890
|
return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnConfiguredTable.TableReferenceProperty"], jsii.get(self, "tableReference"))
|
|
1891
1891
|
|
|
1892
1892
|
@table_reference.setter
|
|
@@ -3094,8 +3094,6 @@ class CfnConfiguredTable(
|
|
|
3094
3094
|
) -> None:
|
|
3095
3095
|
'''A pointer to the dataset that underlies this table.
|
|
3096
3096
|
|
|
3097
|
-
Currently, this can only be an AWS Glue table.
|
|
3098
|
-
|
|
3099
3097
|
:param glue: If present, a reference to the AWS Glue table referred to by this table reference.
|
|
3100
3098
|
|
|
3101
3099
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-tablereference.html
|
|
@@ -4117,7 +4115,7 @@ class CfnConfiguredTableProps:
|
|
|
4117
4115
|
:param allowed_columns: The columns within the underlying AWS Glue table that can be utilized within collaborations.
|
|
4118
4116
|
:param analysis_method: The analysis method for the configured table. The only valid value is currently ``DIRECT_QUERY``.
|
|
4119
4117
|
:param name: A name for the configured table.
|
|
4120
|
-
:param table_reference: The
|
|
4118
|
+
:param table_reference: The table that this configured table represents.
|
|
4121
4119
|
:param analysis_rules: The analysis rule that was created for the configured table.
|
|
4122
4120
|
:param description: A description for the configured table.
|
|
4123
4121
|
: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.
|
|
@@ -4255,7 +4253,7 @@ class CfnConfiguredTableProps:
|
|
|
4255
4253
|
def table_reference(
|
|
4256
4254
|
self,
|
|
4257
4255
|
) -> typing.Union[_IResolvable_da3f097b, CfnConfiguredTable.TableReferenceProperty]:
|
|
4258
|
-
'''The
|
|
4256
|
+
'''The table that this configured table represents.
|
|
4259
4257
|
|
|
4260
4258
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-configuredtable.html#cfn-cleanrooms-configuredtable-tablereference
|
|
4261
4259
|
'''
|
|
@@ -7908,9 +7908,11 @@ class CfnDistribution(
|
|
|
7908
7908
|
id: builtins.str,
|
|
7909
7909
|
members: typing.Union[_IResolvable_da3f097b, typing.Union["CfnDistribution.OriginGroupMembersProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
7910
7910
|
) -> None:
|
|
7911
|
-
'''An origin group includes two origins (a primary origin and a
|
|
7911
|
+
'''An origin group includes two origins (a primary origin and a secondary origin to failover to) and a failover criteria that you specify.
|
|
7912
7912
|
|
|
7913
|
-
You create an origin group to support origin failover in CloudFront. When you create or update a distribution, you can specify the origin group instead of a single origin, and CloudFront will failover from the primary origin to the
|
|
7913
|
+
You create an origin group to support origin failover in CloudFront. When you create or update a distribution, you can specify the origin group instead of a single origin, and CloudFront will failover from the primary origin to the secondary origin under the failover conditions that you've chosen.
|
|
7914
|
+
|
|
7915
|
+
Optionally, you can choose selection criteria for your origin group to specify how your origins are selected when your distribution routes viewer requests.
|
|
7914
7916
|
|
|
7915
7917
|
:param failover_criteria: A complex type that contains information about the failover criteria for an origin group.
|
|
7916
7918
|
:param id: The origin group's ID.
|