aws-cdk-lib 2.148.1__py3-none-any.whl → 2.150.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 -8
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.148.1.jsii.tgz → aws-cdk-lib@2.150.0.jsii.tgz} +0 -0
- aws_cdk/aws_applicationautoscaling/__init__.py +16 -12
- aws_cdk/aws_bedrock/__init__.py +60 -28
- aws_cdk/aws_cloudformation/__init__.py +4 -8
- aws_cdk/aws_cloudtrail/__init__.py +30 -558
- aws_cdk/aws_cloudwatch/__init__.py +1 -1
- aws_cdk/aws_codebuild/__init__.py +57 -5
- aws_cdk/aws_codecommit/__init__.py +103 -0
- aws_cdk/aws_codedeploy/__init__.py +251 -5
- aws_cdk/aws_codepipeline/__init__.py +80 -5
- aws_cdk/aws_codestarnotifications/__init__.py +90 -4
- aws_cdk/aws_cognito/__init__.py +1 -2
- aws_cdk/aws_deadline/__init__.py +9 -15
- aws_cdk/aws_dms/__init__.py +10 -10
- aws_cdk/aws_ec2/__init__.py +86 -4
- aws_cdk/aws_ecs/__init__.py +10 -8
- aws_cdk/aws_eks/__init__.py +26 -20
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +2 -2
- aws_cdk/aws_emr/__init__.py +26 -28
- aws_cdk/aws_events/__init__.py +1 -13
- aws_cdk/aws_fsx/__init__.py +25 -23
- aws_cdk/aws_glue/__init__.py +3 -3
- aws_cdk/aws_guardduty/__init__.py +6 -4
- aws_cdk/aws_iam/__init__.py +8 -5
- aws_cdk/aws_kinesisanalytics/__init__.py +11 -11
- aws_cdk/aws_kinesisanalyticsv2/__init__.py +11 -11
- aws_cdk/aws_lambda/__init__.py +19 -2
- aws_cdk/aws_logs/__init__.py +9 -0
- aws_cdk/aws_qbusiness/__init__.py +21 -7
- aws_cdk/aws_rds/__init__.py +18 -12
- aws_cdk/aws_rolesanywhere/__init__.py +22 -13
- aws_cdk/aws_route53profiles/__init__.py +4 -4
- aws_cdk/aws_s3/__init__.py +15 -117
- aws_cdk/aws_sagemaker/__init__.py +10 -10
- aws_cdk/aws_ses/__init__.py +119 -102
- aws_cdk/aws_stepfunctions_tasks/__init__.py +215 -24
- aws_cdk/aws_synthetics/__init__.py +15 -1
- aws_cdk/aws_verifiedpermissions/__init__.py +7 -9
- aws_cdk/aws_wafv2/__init__.py +10 -16
- aws_cdk/aws_workspaces/__init__.py +86 -56
- aws_cdk/custom_resources/__init__.py +91 -23
- aws_cdk/pipelines/__init__.py +1 -1
- aws_cdk/region_info/__init__.py +32 -12
- {aws_cdk_lib-2.148.1.dist-info → aws_cdk_lib-2.150.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.148.1.dist-info → aws_cdk_lib-2.150.0.dist-info}/RECORD +51 -51
- {aws_cdk_lib-2.148.1.dist-info → aws_cdk_lib-2.150.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.148.1.dist-info → aws_cdk_lib-2.150.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.148.1.dist-info → aws_cdk_lib-2.150.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.148.1.dist-info → aws_cdk_lib-2.150.0.dist-info}/top_level.txt +0 -0
|
@@ -5139,7 +5139,7 @@ class CfnWebhook(
|
|
|
5139
5139
|
'''
|
|
5140
5140
|
:param scope: Scope in which this resource is defined.
|
|
5141
5141
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
5142
|
-
:param authentication: Supported options are GITHUB_HMAC, IP, and UNAUTHENTICATED. - For information about the authentication scheme implemented by GITHUB_HMAC, see `Securing your webhooks <https://docs.aws.amazon.com/https://developer.github.com/webhooks/securing/>`_ on the GitHub Developer website. - IP rejects webhooks trigger requests unless they originate from an IP address in the IP range whitelisted in the authentication configuration. - UNAUTHENTICATED accepts all webhook trigger requests regardless of origin.
|
|
5142
|
+
:param authentication: Supported options are GITHUB_HMAC, IP, and UNAUTHENTICATED. .. epigraph:: When creating CodePipeline webhooks, do not use your own credentials or reuse the same secret token across multiple webhooks. For optimal security, generate a unique secret token for each webhook you create. The secret token is an arbitrary string that you provide, which GitHub uses to compute and sign the webhook payloads sent to CodePipeline, for protecting the integrity and authenticity of the webhook payloads. Using your own credentials or reusing the same token across multiple webhooks can lead to security vulnerabilities. - For information about the authentication scheme implemented by GITHUB_HMAC, see `Securing your webhooks <https://docs.aws.amazon.com/https://developer.github.com/webhooks/securing/>`_ on the GitHub Developer website. - IP rejects webhooks trigger requests unless they originate from an IP address in the IP range whitelisted in the authentication configuration. - UNAUTHENTICATED accepts all webhook trigger requests regardless of origin.
|
|
5143
5143
|
:param authentication_configuration: Properties that configure the authentication applied to incoming webhook trigger requests. The required properties depend on the authentication type. For GITHUB_HMAC, only the ``SecretToken`` property must be set. For IP, only the ``AllowedIPRange`` property must be set to a valid CIDR range. For UNAUTHENTICATED, no properties can be set.
|
|
5144
5144
|
:param filters: A list of rules applied to the body/payload sent in the POST request to a webhook URL. All defined rules must pass for the request to be accepted and the pipeline started.
|
|
5145
5145
|
:param target_action: The name of the action in a pipeline you want to connect to the webhook. The action must be from the source (first) stage of the pipeline.
|
|
@@ -5354,7 +5354,7 @@ class CfnWebhook(
|
|
|
5354
5354
|
'''The authentication applied to incoming webhook trigger requests.
|
|
5355
5355
|
|
|
5356
5356
|
:param allowed_ip_range: The property used to configure acceptance of webhooks in an IP address range. For IP, only the ``AllowedIPRange`` property must be set. This property must be set to a valid CIDR range.
|
|
5357
|
-
:param secret_token: The property used to configure GitHub authentication. For GITHUB_HMAC, only the ``SecretToken`` property must be set.
|
|
5357
|
+
:param secret_token: The property used to configure GitHub authentication. For GITHUB_HMAC, only the ``SecretToken`` property must be set. .. epigraph:: When creating CodePipeline webhooks, do not use your own credentials or reuse the same secret token across multiple webhooks. For optimal security, generate a unique secret token for each webhook you create. The secret token is an arbitrary string that you provide, which GitHub uses to compute and sign the webhook payloads sent to CodePipeline, for protecting the integrity and authenticity of the webhook payloads. Using your own credentials or reusing the same token across multiple webhooks can lead to security vulnerabilities.
|
|
5358
5358
|
|
|
5359
5359
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-webhook-webhookauthconfiguration.html
|
|
5360
5360
|
:exampleMetadata: fixture=_generated
|
|
@@ -5393,9 +5393,11 @@ class CfnWebhook(
|
|
|
5393
5393
|
|
|
5394
5394
|
@builtins.property
|
|
5395
5395
|
def secret_token(self) -> typing.Optional[builtins.str]:
|
|
5396
|
-
'''The property used to configure GitHub authentication.
|
|
5396
|
+
'''The property used to configure GitHub authentication. For GITHUB_HMAC, only the ``SecretToken`` property must be set.
|
|
5397
5397
|
|
|
5398
|
-
|
|
5398
|
+
.. epigraph::
|
|
5399
|
+
|
|
5400
|
+
When creating CodePipeline webhooks, do not use your own credentials or reuse the same secret token across multiple webhooks. For optimal security, generate a unique secret token for each webhook you create. The secret token is an arbitrary string that you provide, which GitHub uses to compute and sign the webhook payloads sent to CodePipeline, for protecting the integrity and authenticity of the webhook payloads. Using your own credentials or reusing the same token across multiple webhooks can lead to security vulnerabilities.
|
|
5399
5401
|
|
|
5400
5402
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-webhook-webhookauthconfiguration.html#cfn-codepipeline-webhook-webhookauthconfiguration-secrettoken
|
|
5401
5403
|
'''
|
|
@@ -5520,7 +5522,7 @@ class CfnWebhookProps:
|
|
|
5520
5522
|
) -> None:
|
|
5521
5523
|
'''Properties for defining a ``CfnWebhook``.
|
|
5522
5524
|
|
|
5523
|
-
:param authentication: Supported options are GITHUB_HMAC, IP, and UNAUTHENTICATED. - For information about the authentication scheme implemented by GITHUB_HMAC, see `Securing your webhooks <https://docs.aws.amazon.com/https://developer.github.com/webhooks/securing/>`_ on the GitHub Developer website. - IP rejects webhooks trigger requests unless they originate from an IP address in the IP range whitelisted in the authentication configuration. - UNAUTHENTICATED accepts all webhook trigger requests regardless of origin.
|
|
5525
|
+
:param authentication: Supported options are GITHUB_HMAC, IP, and UNAUTHENTICATED. .. epigraph:: When creating CodePipeline webhooks, do not use your own credentials or reuse the same secret token across multiple webhooks. For optimal security, generate a unique secret token for each webhook you create. The secret token is an arbitrary string that you provide, which GitHub uses to compute and sign the webhook payloads sent to CodePipeline, for protecting the integrity and authenticity of the webhook payloads. Using your own credentials or reusing the same token across multiple webhooks can lead to security vulnerabilities. - For information about the authentication scheme implemented by GITHUB_HMAC, see `Securing your webhooks <https://docs.aws.amazon.com/https://developer.github.com/webhooks/securing/>`_ on the GitHub Developer website. - IP rejects webhooks trigger requests unless they originate from an IP address in the IP range whitelisted in the authentication configuration. - UNAUTHENTICATED accepts all webhook trigger requests regardless of origin.
|
|
5524
5526
|
:param authentication_configuration: Properties that configure the authentication applied to incoming webhook trigger requests. The required properties depend on the authentication type. For GITHUB_HMAC, only the ``SecretToken`` property must be set. For IP, only the ``AllowedIPRange`` property must be set to a valid CIDR range. For UNAUTHENTICATED, no properties can be set.
|
|
5525
5527
|
:param filters: A list of rules applied to the body/payload sent in the POST request to a webhook URL. All defined rules must pass for the request to be accepted and the pipeline started.
|
|
5526
5528
|
:param target_action: The name of the action in a pipeline you want to connect to the webhook. The action must be from the source (first) stage of the pipeline.
|
|
@@ -5586,6 +5588,10 @@ class CfnWebhookProps:
|
|
|
5586
5588
|
def authentication(self) -> builtins.str:
|
|
5587
5589
|
'''Supported options are GITHUB_HMAC, IP, and UNAUTHENTICATED.
|
|
5588
5590
|
|
|
5591
|
+
.. epigraph::
|
|
5592
|
+
|
|
5593
|
+
When creating CodePipeline webhooks, do not use your own credentials or reuse the same secret token across multiple webhooks. For optimal security, generate a unique secret token for each webhook you create. The secret token is an arbitrary string that you provide, which GitHub uses to compute and sign the webhook payloads sent to CodePipeline, for protecting the integrity and authenticity of the webhook payloads. Using your own credentials or reusing the same token across multiple webhooks can lead to security vulnerabilities.
|
|
5594
|
+
|
|
5589
5595
|
- For information about the authentication scheme implemented by GITHUB_HMAC, see `Securing your webhooks <https://docs.aws.amazon.com/https://developer.github.com/webhooks/securing/>`_ on the GitHub Developer website.
|
|
5590
5596
|
- IP rejects webhooks trigger requests unless they originate from an IP address in the IP range whitelisted in the authentication configuration.
|
|
5591
5597
|
- UNAUTHENTICATED accepts all webhook trigger requests regardless of origin.
|
|
@@ -7053,6 +7059,7 @@ class IPipeline(
|
|
|
7053
7059
|
target: _INotificationRuleTarget_faa3b79b,
|
|
7054
7060
|
*,
|
|
7055
7061
|
events: typing.Sequence["PipelineNotificationEvents"],
|
|
7062
|
+
created_by: typing.Optional[builtins.str] = None,
|
|
7056
7063
|
detail_type: typing.Optional[_DetailType_cf8135e7] = None,
|
|
7057
7064
|
enabled: typing.Optional[builtins.bool] = None,
|
|
7058
7065
|
notification_rule_name: typing.Optional[builtins.str] = None,
|
|
@@ -7066,6 +7073,7 @@ class IPipeline(
|
|
|
7066
7073
|
:param id: The id of the CodeStar notification rule.
|
|
7067
7074
|
:param target: The target to register for the CodeStar Notifications destination.
|
|
7068
7075
|
:param events: A list of event types associated with this notification rule for CodePipeline Pipeline. For a complete list of event types and IDs, see Notification concepts in the Developer Tools Console User Guide.
|
|
7076
|
+
:param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
|
|
7069
7077
|
:param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
|
|
7070
7078
|
:param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
|
|
7071
7079
|
:param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
|
|
@@ -7080,6 +7088,7 @@ class IPipeline(
|
|
|
7080
7088
|
id: builtins.str,
|
|
7081
7089
|
target: _INotificationRuleTarget_faa3b79b,
|
|
7082
7090
|
*,
|
|
7091
|
+
created_by: typing.Optional[builtins.str] = None,
|
|
7083
7092
|
detail_type: typing.Optional[_DetailType_cf8135e7] = None,
|
|
7084
7093
|
enabled: typing.Optional[builtins.bool] = None,
|
|
7085
7094
|
notification_rule_name: typing.Optional[builtins.str] = None,
|
|
@@ -7088,6 +7097,7 @@ class IPipeline(
|
|
|
7088
7097
|
|
|
7089
7098
|
:param id: Identifier for this notification handler.
|
|
7090
7099
|
:param target: The target to register for the CodeStar Notifications destination.
|
|
7100
|
+
:param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
|
|
7091
7101
|
:param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
|
|
7092
7102
|
:param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
|
|
7093
7103
|
:param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
|
|
@@ -7102,6 +7112,7 @@ class IPipeline(
|
|
|
7102
7112
|
id: builtins.str,
|
|
7103
7113
|
target: _INotificationRuleTarget_faa3b79b,
|
|
7104
7114
|
*,
|
|
7115
|
+
created_by: typing.Optional[builtins.str] = None,
|
|
7105
7116
|
detail_type: typing.Optional[_DetailType_cf8135e7] = None,
|
|
7106
7117
|
enabled: typing.Optional[builtins.bool] = None,
|
|
7107
7118
|
notification_rule_name: typing.Optional[builtins.str] = None,
|
|
@@ -7110,6 +7121,7 @@ class IPipeline(
|
|
|
7110
7121
|
|
|
7111
7122
|
:param id: Identifier for this notification handler.
|
|
7112
7123
|
:param target: The target to register for the CodeStar Notifications destination.
|
|
7124
|
+
:param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
|
|
7113
7125
|
:param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
|
|
7114
7126
|
:param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
|
|
7115
7127
|
:param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
|
|
@@ -7124,6 +7136,7 @@ class IPipeline(
|
|
|
7124
7136
|
id: builtins.str,
|
|
7125
7137
|
target: _INotificationRuleTarget_faa3b79b,
|
|
7126
7138
|
*,
|
|
7139
|
+
created_by: typing.Optional[builtins.str] = None,
|
|
7127
7140
|
detail_type: typing.Optional[_DetailType_cf8135e7] = None,
|
|
7128
7141
|
enabled: typing.Optional[builtins.bool] = None,
|
|
7129
7142
|
notification_rule_name: typing.Optional[builtins.str] = None,
|
|
@@ -7132,6 +7145,7 @@ class IPipeline(
|
|
|
7132
7145
|
|
|
7133
7146
|
:param id: Identifier for this notification handler.
|
|
7134
7147
|
:param target: The target to register for the CodeStar Notifications destination.
|
|
7148
|
+
:param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
|
|
7135
7149
|
:param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
|
|
7136
7150
|
:param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
|
|
7137
7151
|
:param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
|
|
@@ -7146,6 +7160,7 @@ class IPipeline(
|
|
|
7146
7160
|
id: builtins.str,
|
|
7147
7161
|
target: _INotificationRuleTarget_faa3b79b,
|
|
7148
7162
|
*,
|
|
7163
|
+
created_by: typing.Optional[builtins.str] = None,
|
|
7149
7164
|
detail_type: typing.Optional[_DetailType_cf8135e7] = None,
|
|
7150
7165
|
enabled: typing.Optional[builtins.bool] = None,
|
|
7151
7166
|
notification_rule_name: typing.Optional[builtins.str] = None,
|
|
@@ -7154,6 +7169,7 @@ class IPipeline(
|
|
|
7154
7169
|
|
|
7155
7170
|
:param id: Identifier for this notification handler.
|
|
7156
7171
|
:param target: The target to register for the CodeStar Notifications destination.
|
|
7172
|
+
:param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
|
|
7157
7173
|
:param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
|
|
7158
7174
|
:param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
|
|
7159
7175
|
:param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
|
|
@@ -7244,6 +7260,7 @@ class _IPipelineProxy(
|
|
|
7244
7260
|
target: _INotificationRuleTarget_faa3b79b,
|
|
7245
7261
|
*,
|
|
7246
7262
|
events: typing.Sequence["PipelineNotificationEvents"],
|
|
7263
|
+
created_by: typing.Optional[builtins.str] = None,
|
|
7247
7264
|
detail_type: typing.Optional[_DetailType_cf8135e7] = None,
|
|
7248
7265
|
enabled: typing.Optional[builtins.bool] = None,
|
|
7249
7266
|
notification_rule_name: typing.Optional[builtins.str] = None,
|
|
@@ -7257,6 +7274,7 @@ class _IPipelineProxy(
|
|
|
7257
7274
|
:param id: The id of the CodeStar notification rule.
|
|
7258
7275
|
:param target: The target to register for the CodeStar Notifications destination.
|
|
7259
7276
|
:param events: A list of event types associated with this notification rule for CodePipeline Pipeline. For a complete list of event types and IDs, see Notification concepts in the Developer Tools Console User Guide.
|
|
7277
|
+
:param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
|
|
7260
7278
|
:param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
|
|
7261
7279
|
:param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
|
|
7262
7280
|
:param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
|
|
@@ -7269,6 +7287,7 @@ class _IPipelineProxy(
|
|
|
7269
7287
|
check_type(argname="argument target", value=target, expected_type=type_hints["target"])
|
|
7270
7288
|
options = PipelineNotifyOnOptions(
|
|
7271
7289
|
events=events,
|
|
7290
|
+
created_by=created_by,
|
|
7272
7291
|
detail_type=detail_type,
|
|
7273
7292
|
enabled=enabled,
|
|
7274
7293
|
notification_rule_name=notification_rule_name,
|
|
@@ -7282,6 +7301,7 @@ class _IPipelineProxy(
|
|
|
7282
7301
|
id: builtins.str,
|
|
7283
7302
|
target: _INotificationRuleTarget_faa3b79b,
|
|
7284
7303
|
*,
|
|
7304
|
+
created_by: typing.Optional[builtins.str] = None,
|
|
7285
7305
|
detail_type: typing.Optional[_DetailType_cf8135e7] = None,
|
|
7286
7306
|
enabled: typing.Optional[builtins.bool] = None,
|
|
7287
7307
|
notification_rule_name: typing.Optional[builtins.str] = None,
|
|
@@ -7290,6 +7310,7 @@ class _IPipelineProxy(
|
|
|
7290
7310
|
|
|
7291
7311
|
:param id: Identifier for this notification handler.
|
|
7292
7312
|
:param target: The target to register for the CodeStar Notifications destination.
|
|
7313
|
+
:param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
|
|
7293
7314
|
:param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
|
|
7294
7315
|
:param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
|
|
7295
7316
|
:param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
|
|
@@ -7301,6 +7322,7 @@ class _IPipelineProxy(
|
|
|
7301
7322
|
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
7302
7323
|
check_type(argname="argument target", value=target, expected_type=type_hints["target"])
|
|
7303
7324
|
options = _NotificationRuleOptions_dff73281(
|
|
7325
|
+
created_by=created_by,
|
|
7304
7326
|
detail_type=detail_type,
|
|
7305
7327
|
enabled=enabled,
|
|
7306
7328
|
notification_rule_name=notification_rule_name,
|
|
@@ -7314,6 +7336,7 @@ class _IPipelineProxy(
|
|
|
7314
7336
|
id: builtins.str,
|
|
7315
7337
|
target: _INotificationRuleTarget_faa3b79b,
|
|
7316
7338
|
*,
|
|
7339
|
+
created_by: typing.Optional[builtins.str] = None,
|
|
7317
7340
|
detail_type: typing.Optional[_DetailType_cf8135e7] = None,
|
|
7318
7341
|
enabled: typing.Optional[builtins.bool] = None,
|
|
7319
7342
|
notification_rule_name: typing.Optional[builtins.str] = None,
|
|
@@ -7322,6 +7345,7 @@ class _IPipelineProxy(
|
|
|
7322
7345
|
|
|
7323
7346
|
:param id: Identifier for this notification handler.
|
|
7324
7347
|
:param target: The target to register for the CodeStar Notifications destination.
|
|
7348
|
+
:param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
|
|
7325
7349
|
:param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
|
|
7326
7350
|
:param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
|
|
7327
7351
|
:param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
|
|
@@ -7333,6 +7357,7 @@ class _IPipelineProxy(
|
|
|
7333
7357
|
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
7334
7358
|
check_type(argname="argument target", value=target, expected_type=type_hints["target"])
|
|
7335
7359
|
options = _NotificationRuleOptions_dff73281(
|
|
7360
|
+
created_by=created_by,
|
|
7336
7361
|
detail_type=detail_type,
|
|
7337
7362
|
enabled=enabled,
|
|
7338
7363
|
notification_rule_name=notification_rule_name,
|
|
@@ -7346,6 +7371,7 @@ class _IPipelineProxy(
|
|
|
7346
7371
|
id: builtins.str,
|
|
7347
7372
|
target: _INotificationRuleTarget_faa3b79b,
|
|
7348
7373
|
*,
|
|
7374
|
+
created_by: typing.Optional[builtins.str] = None,
|
|
7349
7375
|
detail_type: typing.Optional[_DetailType_cf8135e7] = None,
|
|
7350
7376
|
enabled: typing.Optional[builtins.bool] = None,
|
|
7351
7377
|
notification_rule_name: typing.Optional[builtins.str] = None,
|
|
@@ -7354,6 +7380,7 @@ class _IPipelineProxy(
|
|
|
7354
7380
|
|
|
7355
7381
|
:param id: Identifier for this notification handler.
|
|
7356
7382
|
:param target: The target to register for the CodeStar Notifications destination.
|
|
7383
|
+
:param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
|
|
7357
7384
|
:param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
|
|
7358
7385
|
:param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
|
|
7359
7386
|
:param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
|
|
@@ -7365,6 +7392,7 @@ class _IPipelineProxy(
|
|
|
7365
7392
|
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
7366
7393
|
check_type(argname="argument target", value=target, expected_type=type_hints["target"])
|
|
7367
7394
|
options = _NotificationRuleOptions_dff73281(
|
|
7395
|
+
created_by=created_by,
|
|
7368
7396
|
detail_type=detail_type,
|
|
7369
7397
|
enabled=enabled,
|
|
7370
7398
|
notification_rule_name=notification_rule_name,
|
|
@@ -7378,6 +7406,7 @@ class _IPipelineProxy(
|
|
|
7378
7406
|
id: builtins.str,
|
|
7379
7407
|
target: _INotificationRuleTarget_faa3b79b,
|
|
7380
7408
|
*,
|
|
7409
|
+
created_by: typing.Optional[builtins.str] = None,
|
|
7381
7410
|
detail_type: typing.Optional[_DetailType_cf8135e7] = None,
|
|
7382
7411
|
enabled: typing.Optional[builtins.bool] = None,
|
|
7383
7412
|
notification_rule_name: typing.Optional[builtins.str] = None,
|
|
@@ -7386,6 +7415,7 @@ class _IPipelineProxy(
|
|
|
7386
7415
|
|
|
7387
7416
|
:param id: Identifier for this notification handler.
|
|
7388
7417
|
:param target: The target to register for the CodeStar Notifications destination.
|
|
7418
|
+
:param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
|
|
7389
7419
|
:param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
|
|
7390
7420
|
:param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
|
|
7391
7421
|
:param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
|
|
@@ -7397,6 +7427,7 @@ class _IPipelineProxy(
|
|
|
7397
7427
|
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
7398
7428
|
check_type(argname="argument target", value=target, expected_type=type_hints["target"])
|
|
7399
7429
|
options = _NotificationRuleOptions_dff73281(
|
|
7430
|
+
created_by=created_by,
|
|
7400
7431
|
detail_type=detail_type,
|
|
7401
7432
|
enabled=enabled,
|
|
7402
7433
|
notification_rule_name=notification_rule_name,
|
|
@@ -7815,6 +7846,7 @@ class Pipeline(
|
|
|
7815
7846
|
target: _INotificationRuleTarget_faa3b79b,
|
|
7816
7847
|
*,
|
|
7817
7848
|
events: typing.Sequence["PipelineNotificationEvents"],
|
|
7849
|
+
created_by: typing.Optional[builtins.str] = None,
|
|
7818
7850
|
detail_type: typing.Optional[_DetailType_cf8135e7] = None,
|
|
7819
7851
|
enabled: typing.Optional[builtins.bool] = None,
|
|
7820
7852
|
notification_rule_name: typing.Optional[builtins.str] = None,
|
|
@@ -7828,6 +7860,7 @@ class Pipeline(
|
|
|
7828
7860
|
:param id: -
|
|
7829
7861
|
:param target: -
|
|
7830
7862
|
:param events: A list of event types associated with this notification rule for CodePipeline Pipeline. For a complete list of event types and IDs, see Notification concepts in the Developer Tools Console User Guide.
|
|
7863
|
+
:param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
|
|
7831
7864
|
:param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
|
|
7832
7865
|
:param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
|
|
7833
7866
|
:param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
|
|
@@ -7838,6 +7871,7 @@ class Pipeline(
|
|
|
7838
7871
|
check_type(argname="argument target", value=target, expected_type=type_hints["target"])
|
|
7839
7872
|
options = PipelineNotifyOnOptions(
|
|
7840
7873
|
events=events,
|
|
7874
|
+
created_by=created_by,
|
|
7841
7875
|
detail_type=detail_type,
|
|
7842
7876
|
enabled=enabled,
|
|
7843
7877
|
notification_rule_name=notification_rule_name,
|
|
@@ -7851,6 +7885,7 @@ class Pipeline(
|
|
|
7851
7885
|
id: builtins.str,
|
|
7852
7886
|
target: _INotificationRuleTarget_faa3b79b,
|
|
7853
7887
|
*,
|
|
7888
|
+
created_by: typing.Optional[builtins.str] = None,
|
|
7854
7889
|
detail_type: typing.Optional[_DetailType_cf8135e7] = None,
|
|
7855
7890
|
enabled: typing.Optional[builtins.bool] = None,
|
|
7856
7891
|
notification_rule_name: typing.Optional[builtins.str] = None,
|
|
@@ -7859,6 +7894,7 @@ class Pipeline(
|
|
|
7859
7894
|
|
|
7860
7895
|
:param id: -
|
|
7861
7896
|
:param target: -
|
|
7897
|
+
:param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
|
|
7862
7898
|
:param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
|
|
7863
7899
|
:param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
|
|
7864
7900
|
:param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
|
|
@@ -7868,6 +7904,7 @@ class Pipeline(
|
|
|
7868
7904
|
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
7869
7905
|
check_type(argname="argument target", value=target, expected_type=type_hints["target"])
|
|
7870
7906
|
options = _NotificationRuleOptions_dff73281(
|
|
7907
|
+
created_by=created_by,
|
|
7871
7908
|
detail_type=detail_type,
|
|
7872
7909
|
enabled=enabled,
|
|
7873
7910
|
notification_rule_name=notification_rule_name,
|
|
@@ -7881,6 +7918,7 @@ class Pipeline(
|
|
|
7881
7918
|
id: builtins.str,
|
|
7882
7919
|
target: _INotificationRuleTarget_faa3b79b,
|
|
7883
7920
|
*,
|
|
7921
|
+
created_by: typing.Optional[builtins.str] = None,
|
|
7884
7922
|
detail_type: typing.Optional[_DetailType_cf8135e7] = None,
|
|
7885
7923
|
enabled: typing.Optional[builtins.bool] = None,
|
|
7886
7924
|
notification_rule_name: typing.Optional[builtins.str] = None,
|
|
@@ -7889,6 +7927,7 @@ class Pipeline(
|
|
|
7889
7927
|
|
|
7890
7928
|
:param id: -
|
|
7891
7929
|
:param target: -
|
|
7930
|
+
:param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
|
|
7892
7931
|
:param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
|
|
7893
7932
|
:param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
|
|
7894
7933
|
:param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
|
|
@@ -7898,6 +7937,7 @@ class Pipeline(
|
|
|
7898
7937
|
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
7899
7938
|
check_type(argname="argument target", value=target, expected_type=type_hints["target"])
|
|
7900
7939
|
options = _NotificationRuleOptions_dff73281(
|
|
7940
|
+
created_by=created_by,
|
|
7901
7941
|
detail_type=detail_type,
|
|
7902
7942
|
enabled=enabled,
|
|
7903
7943
|
notification_rule_name=notification_rule_name,
|
|
@@ -7911,6 +7951,7 @@ class Pipeline(
|
|
|
7911
7951
|
id: builtins.str,
|
|
7912
7952
|
target: _INotificationRuleTarget_faa3b79b,
|
|
7913
7953
|
*,
|
|
7954
|
+
created_by: typing.Optional[builtins.str] = None,
|
|
7914
7955
|
detail_type: typing.Optional[_DetailType_cf8135e7] = None,
|
|
7915
7956
|
enabled: typing.Optional[builtins.bool] = None,
|
|
7916
7957
|
notification_rule_name: typing.Optional[builtins.str] = None,
|
|
@@ -7919,6 +7960,7 @@ class Pipeline(
|
|
|
7919
7960
|
|
|
7920
7961
|
:param id: -
|
|
7921
7962
|
:param target: -
|
|
7963
|
+
:param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
|
|
7922
7964
|
:param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
|
|
7923
7965
|
:param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
|
|
7924
7966
|
:param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
|
|
@@ -7928,6 +7970,7 @@ class Pipeline(
|
|
|
7928
7970
|
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
7929
7971
|
check_type(argname="argument target", value=target, expected_type=type_hints["target"])
|
|
7930
7972
|
options = _NotificationRuleOptions_dff73281(
|
|
7973
|
+
created_by=created_by,
|
|
7931
7974
|
detail_type=detail_type,
|
|
7932
7975
|
enabled=enabled,
|
|
7933
7976
|
notification_rule_name=notification_rule_name,
|
|
@@ -7941,6 +7984,7 @@ class Pipeline(
|
|
|
7941
7984
|
id: builtins.str,
|
|
7942
7985
|
target: _INotificationRuleTarget_faa3b79b,
|
|
7943
7986
|
*,
|
|
7987
|
+
created_by: typing.Optional[builtins.str] = None,
|
|
7944
7988
|
detail_type: typing.Optional[_DetailType_cf8135e7] = None,
|
|
7945
7989
|
enabled: typing.Optional[builtins.bool] = None,
|
|
7946
7990
|
notification_rule_name: typing.Optional[builtins.str] = None,
|
|
@@ -7949,6 +7993,7 @@ class Pipeline(
|
|
|
7949
7993
|
|
|
7950
7994
|
:param id: -
|
|
7951
7995
|
:param target: -
|
|
7996
|
+
:param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
|
|
7952
7997
|
:param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
|
|
7953
7998
|
:param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
|
|
7954
7999
|
:param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
|
|
@@ -7958,6 +8003,7 @@ class Pipeline(
|
|
|
7958
8003
|
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
7959
8004
|
check_type(argname="argument target", value=target, expected_type=type_hints["target"])
|
|
7960
8005
|
options = _NotificationRuleOptions_dff73281(
|
|
8006
|
+
created_by=created_by,
|
|
7961
8007
|
detail_type=detail_type,
|
|
7962
8008
|
enabled=enabled,
|
|
7963
8009
|
notification_rule_name=notification_rule_name,
|
|
@@ -8149,6 +8195,7 @@ class PipelineNotificationEvents(enum.Enum):
|
|
|
8149
8195
|
jsii_type="aws-cdk-lib.aws_codepipeline.PipelineNotifyOnOptions",
|
|
8150
8196
|
jsii_struct_bases=[_NotificationRuleOptions_dff73281],
|
|
8151
8197
|
name_mapping={
|
|
8198
|
+
"created_by": "createdBy",
|
|
8152
8199
|
"detail_type": "detailType",
|
|
8153
8200
|
"enabled": "enabled",
|
|
8154
8201
|
"notification_rule_name": "notificationRuleName",
|
|
@@ -8159,6 +8206,7 @@ class PipelineNotifyOnOptions(_NotificationRuleOptions_dff73281):
|
|
|
8159
8206
|
def __init__(
|
|
8160
8207
|
self,
|
|
8161
8208
|
*,
|
|
8209
|
+
created_by: typing.Optional[builtins.str] = None,
|
|
8162
8210
|
detail_type: typing.Optional[_DetailType_cf8135e7] = None,
|
|
8163
8211
|
enabled: typing.Optional[builtins.bool] = None,
|
|
8164
8212
|
notification_rule_name: typing.Optional[builtins.str] = None,
|
|
@@ -8166,6 +8214,7 @@ class PipelineNotifyOnOptions(_NotificationRuleOptions_dff73281):
|
|
|
8166
8214
|
) -> None:
|
|
8167
8215
|
'''Additional options to pass to the notification rule.
|
|
8168
8216
|
|
|
8217
|
+
:param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
|
|
8169
8218
|
:param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
|
|
8170
8219
|
:param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
|
|
8171
8220
|
:param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
|
|
@@ -8184,6 +8233,7 @@ class PipelineNotifyOnOptions(_NotificationRuleOptions_dff73281):
|
|
|
8184
8233
|
events=[codepipeline.PipelineNotificationEvents.PIPELINE_EXECUTION_FAILED],
|
|
8185
8234
|
|
|
8186
8235
|
# the properties below are optional
|
|
8236
|
+
created_by="createdBy",
|
|
8187
8237
|
detail_type=codestarnotifications.DetailType.BASIC,
|
|
8188
8238
|
enabled=False,
|
|
8189
8239
|
notification_rule_name="notificationRuleName"
|
|
@@ -8191,6 +8241,7 @@ class PipelineNotifyOnOptions(_NotificationRuleOptions_dff73281):
|
|
|
8191
8241
|
'''
|
|
8192
8242
|
if __debug__:
|
|
8193
8243
|
type_hints = typing.get_type_hints(_typecheckingstub__693d1283d2d74eee6f02dcd6e1ffa263f5eb44bb8ef097838bbcc9e9377d23fb)
|
|
8244
|
+
check_type(argname="argument created_by", value=created_by, expected_type=type_hints["created_by"])
|
|
8194
8245
|
check_type(argname="argument detail_type", value=detail_type, expected_type=type_hints["detail_type"])
|
|
8195
8246
|
check_type(argname="argument enabled", value=enabled, expected_type=type_hints["enabled"])
|
|
8196
8247
|
check_type(argname="argument notification_rule_name", value=notification_rule_name, expected_type=type_hints["notification_rule_name"])
|
|
@@ -8198,6 +8249,8 @@ class PipelineNotifyOnOptions(_NotificationRuleOptions_dff73281):
|
|
|
8198
8249
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
8199
8250
|
"events": events,
|
|
8200
8251
|
}
|
|
8252
|
+
if created_by is not None:
|
|
8253
|
+
self._values["created_by"] = created_by
|
|
8201
8254
|
if detail_type is not None:
|
|
8202
8255
|
self._values["detail_type"] = detail_type
|
|
8203
8256
|
if enabled is not None:
|
|
@@ -8205,6 +8258,17 @@ class PipelineNotifyOnOptions(_NotificationRuleOptions_dff73281):
|
|
|
8205
8258
|
if notification_rule_name is not None:
|
|
8206
8259
|
self._values["notification_rule_name"] = notification_rule_name
|
|
8207
8260
|
|
|
8261
|
+
@builtins.property
|
|
8262
|
+
def created_by(self) -> typing.Optional[builtins.str]:
|
|
8263
|
+
'''The name or email alias of the person who created the notification rule.
|
|
8264
|
+
|
|
8265
|
+
If not specified, it means that the creator's alias is not provided.
|
|
8266
|
+
|
|
8267
|
+
:default: - No alias provided
|
|
8268
|
+
'''
|
|
8269
|
+
result = self._values.get("created_by")
|
|
8270
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
8271
|
+
|
|
8208
8272
|
@builtins.property
|
|
8209
8273
|
def detail_type(self) -> typing.Optional[_DetailType_cf8135e7]:
|
|
8210
8274
|
'''The level of detail to include in the notifications for this resource.
|
|
@@ -10234,6 +10298,7 @@ def _typecheckingstub__f09c09792f06a97dbac5dff8f76d8dd7f1ab355a7c30ba51c9c2cf46e
|
|
|
10234
10298
|
target: _INotificationRuleTarget_faa3b79b,
|
|
10235
10299
|
*,
|
|
10236
10300
|
events: typing.Sequence[PipelineNotificationEvents],
|
|
10301
|
+
created_by: typing.Optional[builtins.str] = None,
|
|
10237
10302
|
detail_type: typing.Optional[_DetailType_cf8135e7] = None,
|
|
10238
10303
|
enabled: typing.Optional[builtins.bool] = None,
|
|
10239
10304
|
notification_rule_name: typing.Optional[builtins.str] = None,
|
|
@@ -10245,6 +10310,7 @@ def _typecheckingstub__b20e6cd8fdba6ef348c66323c52adec352f6a8b95201297bf91a2c35c
|
|
|
10245
10310
|
id: builtins.str,
|
|
10246
10311
|
target: _INotificationRuleTarget_faa3b79b,
|
|
10247
10312
|
*,
|
|
10313
|
+
created_by: typing.Optional[builtins.str] = None,
|
|
10248
10314
|
detail_type: typing.Optional[_DetailType_cf8135e7] = None,
|
|
10249
10315
|
enabled: typing.Optional[builtins.bool] = None,
|
|
10250
10316
|
notification_rule_name: typing.Optional[builtins.str] = None,
|
|
@@ -10256,6 +10322,7 @@ def _typecheckingstub__d57a9d69535ea91dd4c2c94686f783ea1cf000a92ee0213244da5b27a
|
|
|
10256
10322
|
id: builtins.str,
|
|
10257
10323
|
target: _INotificationRuleTarget_faa3b79b,
|
|
10258
10324
|
*,
|
|
10325
|
+
created_by: typing.Optional[builtins.str] = None,
|
|
10259
10326
|
detail_type: typing.Optional[_DetailType_cf8135e7] = None,
|
|
10260
10327
|
enabled: typing.Optional[builtins.bool] = None,
|
|
10261
10328
|
notification_rule_name: typing.Optional[builtins.str] = None,
|
|
@@ -10267,6 +10334,7 @@ def _typecheckingstub__51c8030bf8e0480af476639a6664a3065539aa4d289f7ffaf2c426817
|
|
|
10267
10334
|
id: builtins.str,
|
|
10268
10335
|
target: _INotificationRuleTarget_faa3b79b,
|
|
10269
10336
|
*,
|
|
10337
|
+
created_by: typing.Optional[builtins.str] = None,
|
|
10270
10338
|
detail_type: typing.Optional[_DetailType_cf8135e7] = None,
|
|
10271
10339
|
enabled: typing.Optional[builtins.bool] = None,
|
|
10272
10340
|
notification_rule_name: typing.Optional[builtins.str] = None,
|
|
@@ -10278,6 +10346,7 @@ def _typecheckingstub__72d02301c81a04f8c5d06524c59659c7761dc330c3498f18ab5378071
|
|
|
10278
10346
|
id: builtins.str,
|
|
10279
10347
|
target: _INotificationRuleTarget_faa3b79b,
|
|
10280
10348
|
*,
|
|
10349
|
+
created_by: typing.Optional[builtins.str] = None,
|
|
10281
10350
|
detail_type: typing.Optional[_DetailType_cf8135e7] = None,
|
|
10282
10351
|
enabled: typing.Optional[builtins.bool] = None,
|
|
10283
10352
|
notification_rule_name: typing.Optional[builtins.str] = None,
|
|
@@ -10383,6 +10452,7 @@ def _typecheckingstub__329d2ba2d275cc24a9e2ec07ab49bf9070ef024e64f5fd30155962cf2
|
|
|
10383
10452
|
target: _INotificationRuleTarget_faa3b79b,
|
|
10384
10453
|
*,
|
|
10385
10454
|
events: typing.Sequence[PipelineNotificationEvents],
|
|
10455
|
+
created_by: typing.Optional[builtins.str] = None,
|
|
10386
10456
|
detail_type: typing.Optional[_DetailType_cf8135e7] = None,
|
|
10387
10457
|
enabled: typing.Optional[builtins.bool] = None,
|
|
10388
10458
|
notification_rule_name: typing.Optional[builtins.str] = None,
|
|
@@ -10394,6 +10464,7 @@ def _typecheckingstub__d659aeae80910f54072ec321264783f2fac350957c516a6af5d6b9fe4
|
|
|
10394
10464
|
id: builtins.str,
|
|
10395
10465
|
target: _INotificationRuleTarget_faa3b79b,
|
|
10396
10466
|
*,
|
|
10467
|
+
created_by: typing.Optional[builtins.str] = None,
|
|
10397
10468
|
detail_type: typing.Optional[_DetailType_cf8135e7] = None,
|
|
10398
10469
|
enabled: typing.Optional[builtins.bool] = None,
|
|
10399
10470
|
notification_rule_name: typing.Optional[builtins.str] = None,
|
|
@@ -10405,6 +10476,7 @@ def _typecheckingstub__f5c95fc1b94e0fad6401328efbc9089340d3d26e0e64c2e12599dd372
|
|
|
10405
10476
|
id: builtins.str,
|
|
10406
10477
|
target: _INotificationRuleTarget_faa3b79b,
|
|
10407
10478
|
*,
|
|
10479
|
+
created_by: typing.Optional[builtins.str] = None,
|
|
10408
10480
|
detail_type: typing.Optional[_DetailType_cf8135e7] = None,
|
|
10409
10481
|
enabled: typing.Optional[builtins.bool] = None,
|
|
10410
10482
|
notification_rule_name: typing.Optional[builtins.str] = None,
|
|
@@ -10416,6 +10488,7 @@ def _typecheckingstub__ac574684d5415374758bc8e4ceb7aeb63a9418ea5450dbff0df55af0d
|
|
|
10416
10488
|
id: builtins.str,
|
|
10417
10489
|
target: _INotificationRuleTarget_faa3b79b,
|
|
10418
10490
|
*,
|
|
10491
|
+
created_by: typing.Optional[builtins.str] = None,
|
|
10419
10492
|
detail_type: typing.Optional[_DetailType_cf8135e7] = None,
|
|
10420
10493
|
enabled: typing.Optional[builtins.bool] = None,
|
|
10421
10494
|
notification_rule_name: typing.Optional[builtins.str] = None,
|
|
@@ -10427,6 +10500,7 @@ def _typecheckingstub__8048d5dc87187734332fb4d3c0177bc9729eb9ec7aaaf84fc3dc254e7
|
|
|
10427
10500
|
id: builtins.str,
|
|
10428
10501
|
target: _INotificationRuleTarget_faa3b79b,
|
|
10429
10502
|
*,
|
|
10503
|
+
created_by: typing.Optional[builtins.str] = None,
|
|
10430
10504
|
detail_type: typing.Optional[_DetailType_cf8135e7] = None,
|
|
10431
10505
|
enabled: typing.Optional[builtins.bool] = None,
|
|
10432
10506
|
notification_rule_name: typing.Optional[builtins.str] = None,
|
|
@@ -10466,6 +10540,7 @@ def _typecheckingstub__fe3129dc544ee80782ab12928d846fc8298b3a84c6755877b473b38e9
|
|
|
10466
10540
|
|
|
10467
10541
|
def _typecheckingstub__693d1283d2d74eee6f02dcd6e1ffa263f5eb44bb8ef097838bbcc9e9377d23fb(
|
|
10468
10542
|
*,
|
|
10543
|
+
created_by: typing.Optional[builtins.str] = None,
|
|
10469
10544
|
detail_type: typing.Optional[_DetailType_cf8135e7] = None,
|
|
10470
10545
|
enabled: typing.Optional[builtins.bool] = None,
|
|
10471
10546
|
notification_rule_name: typing.Optional[builtins.str] = None,
|