aws-cdk-lib 2.212.0__py3-none-any.whl → 2.214.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 +23 -3
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.212.0.jsii.tgz → aws-cdk-lib@2.214.0.jsii.tgz} +0 -0
- aws_cdk/aws_appconfig/__init__.py +18 -6
- aws_cdk/aws_appintegrations/__init__.py +4 -4
- aws_cdk/aws_apprunner/__init__.py +5 -8
- aws_cdk/aws_aps/__init__.py +243 -10
- aws_cdk/aws_b2bi/__init__.py +1015 -128
- aws_cdk/aws_batch/__init__.py +33 -11
- aws_cdk/aws_bedrock/__init__.py +22 -216
- aws_cdk/aws_budgets/__init__.py +18 -0
- aws_cdk/aws_certificatemanager/__init__.py +96 -15
- aws_cdk/aws_cloudformation/__init__.py +3 -3
- aws_cdk/aws_cloudwatch/__init__.py +80 -49
- aws_cdk/aws_cognito/__init__.py +76 -5
- aws_cdk/aws_connect/__init__.py +188 -2
- aws_cdk/aws_datazone/__init__.py +2267 -0
- aws_cdk/aws_deadline/__init__.py +6 -5
- aws_cdk/aws_dynamodb/__init__.py +418 -56
- aws_cdk/aws_ec2/__init__.py +51 -10
- aws_cdk/aws_ecs/__init__.py +288 -25
- aws_cdk/aws_ecs_patterns/__init__.py +2 -0
- aws_cdk/aws_eks/__init__.py +124 -0
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +6 -2
- aws_cdk/aws_entityresolution/__init__.py +107 -0
- aws_cdk/aws_events/__init__.py +153 -55
- aws_cdk/aws_events_targets/__init__.py +87 -36
- aws_cdk/aws_fsx/__init__.py +62 -0
- aws_cdk/aws_gameliftstreams/__init__.py +1 -1
- aws_cdk/aws_glue/__init__.py +205 -23
- aws_cdk/aws_guardduty/__init__.py +205 -100
- aws_cdk/aws_iam/__init__.py +18 -0
- aws_cdk/aws_inspectorv2/__init__.py +125 -80
- aws_cdk/aws_iot/__init__.py +37 -19
- aws_cdk/aws_iotsitewise/__init__.py +111 -75
- aws_cdk/aws_ivs/__init__.py +17 -17
- aws_cdk/aws_kinesisanalytics/__init__.py +122 -3
- aws_cdk/aws_kinesisanalyticsv2/__init__.py +122 -3
- aws_cdk/aws_lambda/__init__.py +23 -2
- aws_cdk/aws_logs/__init__.py +20 -15
- aws_cdk/aws_mediapackagev2/__init__.py +2 -2
- aws_cdk/aws_networkfirewall/__init__.py +6 -6
- aws_cdk/aws_omics/__init__.py +477 -2
- aws_cdk/aws_qbusiness/__init__.py +4 -2
- aws_cdk/aws_rds/__init__.py +132 -4
- aws_cdk/aws_route53/__init__.py +18 -11
- aws_cdk/aws_s3/__init__.py +4 -4
- aws_cdk/aws_s3_deployment/__init__.py +45 -0
- aws_cdk/aws_sagemaker/__init__.py +653 -0
- aws_cdk/aws_servicediscovery/__init__.py +22 -37
- aws_cdk/aws_sns/__init__.py +12 -2
- aws_cdk/aws_sns_subscriptions/__init__.py +3 -1
- aws_cdk/aws_sqs/__init__.py +5 -5
- aws_cdk/aws_ssm/__init__.py +8 -3
- aws_cdk/aws_ssmquicksetup/__init__.py +2 -2
- aws_cdk/aws_synthetics/__init__.py +222 -12
- aws_cdk/aws_transfer/__init__.py +15 -2
- aws_cdk/aws_vpclattice/__init__.py +41 -0
- aws_cdk/aws_workspacesweb/__init__.py +71 -41
- {aws_cdk_lib-2.212.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.212.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/RECORD +65 -65
- {aws_cdk_lib-2.212.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.212.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.212.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.212.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/top_level.txt +0 -0
|
@@ -1947,9 +1947,11 @@ class CfnIPSet(
|
|
|
1947
1947
|
metaclass=jsii.JSIIMeta,
|
|
1948
1948
|
jsii_type="aws-cdk-lib.aws_guardduty.CfnIPSet",
|
|
1949
1949
|
):
|
|
1950
|
-
'''The ``AWS::GuardDuty::IPSet`` resource
|
|
1950
|
+
'''The ``AWS::GuardDuty::IPSet`` resource helps you create a list of trusted IP addresses that you can use for secure communication with AWS infrastructure and applications.
|
|
1951
1951
|
|
|
1952
|
-
|
|
1952
|
+
Once you activate this list, GuardDuty will not generate findings when there is an activity associated with these safe IP addresses.
|
|
1953
|
+
|
|
1954
|
+
Only the users of the GuardDuty administrator account can manage this list. These settings are also applied to the member accounts.
|
|
1953
1955
|
|
|
1954
1956
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html
|
|
1955
1957
|
:cloudformationResource: AWS::GuardDuty::IPSet
|
|
@@ -1993,13 +1995,13 @@ class CfnIPSet(
|
|
|
1993
1995
|
'''
|
|
1994
1996
|
:param scope: Scope in which this resource is defined.
|
|
1995
1997
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
1996
|
-
:param format: The format of the file that contains the IPSet.
|
|
1998
|
+
:param format: The format of the file that contains the IPSet. For information about supported formats, see `List formats <https://docs.aws.amazon.com/guardduty/latest/ug/guardduty_upload-lists.html#prepare_list>`_ in the *Amazon GuardDuty User Guide* .
|
|
1997
1999
|
:param location: The URI of the file that contains the IPSet.
|
|
1998
|
-
:param activate:
|
|
2000
|
+
:param activate: A boolean value that determines if GuardDuty can start using this list for custom threat detection. For GuardDuty to prevent generating findings based on an activity associated with these entries, this list must be active.
|
|
1999
2001
|
:param detector_id: The unique ID of the detector of the GuardDuty account for which you want to create an IPSet. To find the ``detectorId`` in the current Region, see the Settings page in the GuardDuty console, or run the `ListDetectors <https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html>`_ API.
|
|
2000
2002
|
:param expected_bucket_owner: The AWS account ID that owns the Amazon S3 bucket specified in the *Location* field. When you provide this account ID, GuardDuty will validate that the S3 bucket belongs to this account. If you don't specify an account ID owner, GuardDuty doesn't perform any validation.
|
|
2001
|
-
:param name: The user-friendly name to identify the IPSet.
|
|
2002
|
-
:param tags: The tags to be added to a new
|
|
2003
|
+
:param name: The user-friendly name to identify the IPSet. The name of your list must be unique within an AWS account and Region. Valid characters are alphanumeric, whitespace, dash (-), and underscores (_).
|
|
2004
|
+
:param tags: The tags to be added to a new threat entity set resource. Each tag consists of a key and an optional value, both of which you define. For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ .
|
|
2003
2005
|
'''
|
|
2004
2006
|
if __debug__:
|
|
2005
2007
|
type_hints = typing.get_type_hints(_typecheckingstub__b0c6fd2cb08b5267e6265af6fae1a30df065b4b25dc1d6d684eec9f9bb50cda0)
|
|
@@ -2097,7 +2099,7 @@ class CfnIPSet(
|
|
|
2097
2099
|
def activate(
|
|
2098
2100
|
self,
|
|
2099
2101
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
2100
|
-
'''
|
|
2102
|
+
'''A boolean value that determines if GuardDuty can start using this list for custom threat detection.'''
|
|
2101
2103
|
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], jsii.get(self, "activate"))
|
|
2102
2104
|
|
|
2103
2105
|
@activate.setter
|
|
@@ -2152,7 +2154,7 @@ class CfnIPSet(
|
|
|
2152
2154
|
@builtins.property
|
|
2153
2155
|
@jsii.member(jsii_name="tagsRaw")
|
|
2154
2156
|
def tags_raw(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
2155
|
-
'''The tags to be added to a new
|
|
2157
|
+
'''The tags to be added to a new threat entity set resource.'''
|
|
2156
2158
|
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tagsRaw"))
|
|
2157
2159
|
|
|
2158
2160
|
@tags_raw.setter
|
|
@@ -2190,13 +2192,13 @@ class CfnIPSetProps:
|
|
|
2190
2192
|
) -> None:
|
|
2191
2193
|
'''Properties for defining a ``CfnIPSet``.
|
|
2192
2194
|
|
|
2193
|
-
:param format: The format of the file that contains the IPSet.
|
|
2195
|
+
:param format: The format of the file that contains the IPSet. For information about supported formats, see `List formats <https://docs.aws.amazon.com/guardduty/latest/ug/guardduty_upload-lists.html#prepare_list>`_ in the *Amazon GuardDuty User Guide* .
|
|
2194
2196
|
:param location: The URI of the file that contains the IPSet.
|
|
2195
|
-
:param activate:
|
|
2197
|
+
:param activate: A boolean value that determines if GuardDuty can start using this list for custom threat detection. For GuardDuty to prevent generating findings based on an activity associated with these entries, this list must be active.
|
|
2196
2198
|
:param detector_id: The unique ID of the detector of the GuardDuty account for which you want to create an IPSet. To find the ``detectorId`` in the current Region, see the Settings page in the GuardDuty console, or run the `ListDetectors <https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html>`_ API.
|
|
2197
2199
|
:param expected_bucket_owner: The AWS account ID that owns the Amazon S3 bucket specified in the *Location* field. When you provide this account ID, GuardDuty will validate that the S3 bucket belongs to this account. If you don't specify an account ID owner, GuardDuty doesn't perform any validation.
|
|
2198
|
-
:param name: The user-friendly name to identify the IPSet.
|
|
2199
|
-
:param tags: The tags to be added to a new
|
|
2200
|
+
:param name: The user-friendly name to identify the IPSet. The name of your list must be unique within an AWS account and Region. Valid characters are alphanumeric, whitespace, dash (-), and underscores (_).
|
|
2201
|
+
:param tags: The tags to be added to a new threat entity set resource. Each tag consists of a key and an optional value, both of which you define. For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ .
|
|
2200
2202
|
|
|
2201
2203
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html
|
|
2202
2204
|
:exampleMetadata: fixture=_generated
|
|
@@ -2250,6 +2252,8 @@ class CfnIPSetProps:
|
|
|
2250
2252
|
def format(self) -> builtins.str:
|
|
2251
2253
|
'''The format of the file that contains the IPSet.
|
|
2252
2254
|
|
|
2255
|
+
For information about supported formats, see `List formats <https://docs.aws.amazon.com/guardduty/latest/ug/guardduty_upload-lists.html#prepare_list>`_ in the *Amazon GuardDuty User Guide* .
|
|
2256
|
+
|
|
2253
2257
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-format
|
|
2254
2258
|
'''
|
|
2255
2259
|
result = self._values.get("format")
|
|
@@ -2270,7 +2274,9 @@ class CfnIPSetProps:
|
|
|
2270
2274
|
def activate(
|
|
2271
2275
|
self,
|
|
2272
2276
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
2273
|
-
'''
|
|
2277
|
+
'''A boolean value that determines if GuardDuty can start using this list for custom threat detection.
|
|
2278
|
+
|
|
2279
|
+
For GuardDuty to prevent generating findings based on an activity associated with these entries, this list must be active.
|
|
2274
2280
|
|
|
2275
2281
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-activate
|
|
2276
2282
|
'''
|
|
@@ -2304,7 +2310,7 @@ class CfnIPSetProps:
|
|
|
2304
2310
|
def name(self) -> typing.Optional[builtins.str]:
|
|
2305
2311
|
'''The user-friendly name to identify the IPSet.
|
|
2306
2312
|
|
|
2307
|
-
|
|
2313
|
+
The name of your list must be unique within an AWS account and Region. Valid characters are alphanumeric, whitespace, dash (-), and underscores (_).
|
|
2308
2314
|
|
|
2309
2315
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-name
|
|
2310
2316
|
'''
|
|
@@ -2313,7 +2319,7 @@ class CfnIPSetProps:
|
|
|
2313
2319
|
|
|
2314
2320
|
@builtins.property
|
|
2315
2321
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
2316
|
-
'''The tags to be added to a new
|
|
2322
|
+
'''The tags to be added to a new threat entity set resource.
|
|
2317
2323
|
|
|
2318
2324
|
Each tag consists of a key and an optional value, both of which you define.
|
|
2319
2325
|
|
|
@@ -4110,7 +4116,11 @@ class CfnThreatEntitySet(
|
|
|
4110
4116
|
metaclass=jsii.JSIIMeta,
|
|
4111
4117
|
jsii_type="aws-cdk-lib.aws_guardduty.CfnThreatEntitySet",
|
|
4112
4118
|
):
|
|
4113
|
-
'''
|
|
4119
|
+
'''The ``AWS::GuardDuty::ThreatEntitySet`` resource helps you create a list of known malicious IP addresses and domain names in your AWS environment.
|
|
4120
|
+
|
|
4121
|
+
Once you activate this list, GuardDuty will use the entries in this list as an additional source of threat detection and generate findings when there is an activity associated with these known malicious IP addresses and domain names. GuardDuty continues to monitor independently of this custom threat entity set.
|
|
4122
|
+
|
|
4123
|
+
Only the users of the GuardDuty administrator account can manage this list. These settings automatically apply to the member accounts.
|
|
4114
4124
|
|
|
4115
4125
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatentityset.html
|
|
4116
4126
|
:cloudformationResource: AWS::GuardDuty::ThreatEntitySet
|
|
@@ -4154,13 +4164,13 @@ class CfnThreatEntitySet(
|
|
|
4154
4164
|
'''
|
|
4155
4165
|
:param scope: Scope in which this resource is defined.
|
|
4156
4166
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
4157
|
-
:param format:
|
|
4158
|
-
:param location:
|
|
4159
|
-
:param activate:
|
|
4160
|
-
:param detector_id:
|
|
4161
|
-
:param expected_bucket_owner:
|
|
4162
|
-
:param name:
|
|
4163
|
-
:param tags:
|
|
4167
|
+
:param format: The format of the file that contains the threat entity set. For information about supported formats, see `List formats <https://docs.aws.amazon.com/guardduty/latest/ug/guardduty_upload-lists.html#prepare_list>`_ in the *Amazon GuardDuty User Guide* .
|
|
4168
|
+
:param location: The URI of the file that contains the threat entity set.
|
|
4169
|
+
:param activate: A boolean value that determines if GuardDuty can start using this list for custom threat detection. For GuardDuty to consider the entries in this list and generate findings based on associated activity, this list must be active.
|
|
4170
|
+
:param detector_id: The unique regional detector ID of the GuardDuty account for which you want to create a threat entity set. To find the ``detectorId`` in the current Region, see the Settings page in the GuardDuty console, or run the `ListDetectors <https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html>`_ API.
|
|
4171
|
+
:param expected_bucket_owner: The AWS account ID that owns the Amazon S3 bucket specified in the *Location* field. Whether or not you provide the account ID for this optional field, GuardDuty validates that the account ID associated with the ``DetectorId`` owns the S3 bucket in the ``Location`` field. If GuardDuty finds that this S3 bucket doesn't belong to the specified account ID, you will get an error at the time of activating this list.
|
|
4172
|
+
:param name: The user-friendly name to identify the threat entity set. Valid characters are alphanumeric, whitespace, dash (-), and underscores (_).
|
|
4173
|
+
:param tags: The tags to be added to a new threat entity set resource. Each tag consists of a key and an optional value, both of which you define. For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ .
|
|
4164
4174
|
'''
|
|
4165
4175
|
if __debug__:
|
|
4166
4176
|
type_hints = typing.get_type_hints(_typecheckingstub__a633dbf3a335a1c89a81e2b20e0804a2398855b80b7f90aefcab3fcffd594ae2)
|
|
@@ -4211,7 +4221,8 @@ class CfnThreatEntitySet(
|
|
|
4211
4221
|
@builtins.property
|
|
4212
4222
|
@jsii.member(jsii_name="attrCreatedAt")
|
|
4213
4223
|
def attr_created_at(self) -> builtins.str:
|
|
4214
|
-
'''
|
|
4224
|
+
'''The timestamp when the threat entity set was created.
|
|
4225
|
+
|
|
4215
4226
|
:cloudformationAttribute: CreatedAt
|
|
4216
4227
|
'''
|
|
4217
4228
|
return typing.cast(builtins.str, jsii.get(self, "attrCreatedAt"))
|
|
@@ -4219,7 +4230,8 @@ class CfnThreatEntitySet(
|
|
|
4219
4230
|
@builtins.property
|
|
4220
4231
|
@jsii.member(jsii_name="attrErrorDetails")
|
|
4221
4232
|
def attr_error_details(self) -> builtins.str:
|
|
4222
|
-
'''
|
|
4233
|
+
'''The details associated with the *Error* status of your threat entity list.
|
|
4234
|
+
|
|
4223
4235
|
:cloudformationAttribute: ErrorDetails
|
|
4224
4236
|
'''
|
|
4225
4237
|
return typing.cast(builtins.str, jsii.get(self, "attrErrorDetails"))
|
|
@@ -4227,7 +4239,8 @@ class CfnThreatEntitySet(
|
|
|
4227
4239
|
@builtins.property
|
|
4228
4240
|
@jsii.member(jsii_name="attrId")
|
|
4229
4241
|
def attr_id(self) -> builtins.str:
|
|
4230
|
-
'''
|
|
4242
|
+
'''Returns the unique ID associated with the newly created threat entity set.
|
|
4243
|
+
|
|
4231
4244
|
:cloudformationAttribute: Id
|
|
4232
4245
|
'''
|
|
4233
4246
|
return typing.cast(builtins.str, jsii.get(self, "attrId"))
|
|
@@ -4235,7 +4248,10 @@ class CfnThreatEntitySet(
|
|
|
4235
4248
|
@builtins.property
|
|
4236
4249
|
@jsii.member(jsii_name="attrStatus")
|
|
4237
4250
|
def attr_status(self) -> builtins.str:
|
|
4238
|
-
'''
|
|
4251
|
+
'''The status of your ``ThreatEntitySet`` .
|
|
4252
|
+
|
|
4253
|
+
For information about valid status values, see `Understanding list statuses <https://docs.aws.amazon.com/guardduty/latest/ug/guardduty_upload-lists.html#guardduty-entity-list-statuses>`_ in the *Amazon GuardDuty User Guide* .
|
|
4254
|
+
|
|
4239
4255
|
:cloudformationAttribute: Status
|
|
4240
4256
|
'''
|
|
4241
4257
|
return typing.cast(builtins.str, jsii.get(self, "attrStatus"))
|
|
@@ -4243,7 +4259,8 @@ class CfnThreatEntitySet(
|
|
|
4243
4259
|
@builtins.property
|
|
4244
4260
|
@jsii.member(jsii_name="attrUpdatedAt")
|
|
4245
4261
|
def attr_updated_at(self) -> builtins.str:
|
|
4246
|
-
'''
|
|
4262
|
+
'''The timestamp when the threat entity set was updated.
|
|
4263
|
+
|
|
4247
4264
|
:cloudformationAttribute: UpdatedAt
|
|
4248
4265
|
'''
|
|
4249
4266
|
return typing.cast(builtins.str, jsii.get(self, "attrUpdatedAt"))
|
|
@@ -4262,6 +4279,7 @@ class CfnThreatEntitySet(
|
|
|
4262
4279
|
@builtins.property
|
|
4263
4280
|
@jsii.member(jsii_name="format")
|
|
4264
4281
|
def format(self) -> builtins.str:
|
|
4282
|
+
'''The format of the file that contains the threat entity set.'''
|
|
4265
4283
|
return typing.cast(builtins.str, jsii.get(self, "format"))
|
|
4266
4284
|
|
|
4267
4285
|
@format.setter
|
|
@@ -4274,6 +4292,7 @@ class CfnThreatEntitySet(
|
|
|
4274
4292
|
@builtins.property
|
|
4275
4293
|
@jsii.member(jsii_name="location")
|
|
4276
4294
|
def location(self) -> builtins.str:
|
|
4295
|
+
'''The URI of the file that contains the threat entity set.'''
|
|
4277
4296
|
return typing.cast(builtins.str, jsii.get(self, "location"))
|
|
4278
4297
|
|
|
4279
4298
|
@location.setter
|
|
@@ -4288,6 +4307,7 @@ class CfnThreatEntitySet(
|
|
|
4288
4307
|
def activate(
|
|
4289
4308
|
self,
|
|
4290
4309
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
4310
|
+
'''A boolean value that determines if GuardDuty can start using this list for custom threat detection.'''
|
|
4291
4311
|
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], jsii.get(self, "activate"))
|
|
4292
4312
|
|
|
4293
4313
|
@activate.setter
|
|
@@ -4303,6 +4323,7 @@ class CfnThreatEntitySet(
|
|
|
4303
4323
|
@builtins.property
|
|
4304
4324
|
@jsii.member(jsii_name="detectorId")
|
|
4305
4325
|
def detector_id(self) -> typing.Optional[builtins.str]:
|
|
4326
|
+
'''The unique regional detector ID of the GuardDuty account for which you want to create a threat entity set.'''
|
|
4306
4327
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "detectorId"))
|
|
4307
4328
|
|
|
4308
4329
|
@detector_id.setter
|
|
@@ -4315,6 +4336,7 @@ class CfnThreatEntitySet(
|
|
|
4315
4336
|
@builtins.property
|
|
4316
4337
|
@jsii.member(jsii_name="expectedBucketOwner")
|
|
4317
4338
|
def expected_bucket_owner(self) -> typing.Optional[builtins.str]:
|
|
4339
|
+
'''The AWS account ID that owns the Amazon S3 bucket specified in the *Location* field.'''
|
|
4318
4340
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "expectedBucketOwner"))
|
|
4319
4341
|
|
|
4320
4342
|
@expected_bucket_owner.setter
|
|
@@ -4327,6 +4349,7 @@ class CfnThreatEntitySet(
|
|
|
4327
4349
|
@builtins.property
|
|
4328
4350
|
@jsii.member(jsii_name="name")
|
|
4329
4351
|
def name(self) -> typing.Optional[builtins.str]:
|
|
4352
|
+
'''The user-friendly name to identify the threat entity set.'''
|
|
4330
4353
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "name"))
|
|
4331
4354
|
|
|
4332
4355
|
@name.setter
|
|
@@ -4341,6 +4364,7 @@ class CfnThreatEntitySet(
|
|
|
4341
4364
|
def tags(
|
|
4342
4365
|
self,
|
|
4343
4366
|
) -> typing.Optional[typing.List["CfnThreatEntitySet.TagItemProperty"]]:
|
|
4367
|
+
'''The tags to be added to a new threat entity set resource.'''
|
|
4344
4368
|
return typing.cast(typing.Optional[typing.List["CfnThreatEntitySet.TagItemProperty"]], jsii.get(self, "tags"))
|
|
4345
4369
|
|
|
4346
4370
|
@tags.setter
|
|
@@ -4360,9 +4384,12 @@ class CfnThreatEntitySet(
|
|
|
4360
4384
|
)
|
|
4361
4385
|
class TagItemProperty:
|
|
4362
4386
|
def __init__(self, *, key: builtins.str, value: builtins.str) -> None:
|
|
4363
|
-
'''
|
|
4364
|
-
|
|
4365
|
-
|
|
4387
|
+
'''Describes a tag.
|
|
4388
|
+
|
|
4389
|
+
For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ .
|
|
4390
|
+
|
|
4391
|
+
:param key: The tag key.
|
|
4392
|
+
:param value: The tag value. This is optional.
|
|
4366
4393
|
|
|
4367
4394
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-threatentityset-tagitem.html
|
|
4368
4395
|
:exampleMetadata: fixture=_generated
|
|
@@ -4389,7 +4416,8 @@ class CfnThreatEntitySet(
|
|
|
4389
4416
|
|
|
4390
4417
|
@builtins.property
|
|
4391
4418
|
def key(self) -> builtins.str:
|
|
4392
|
-
'''
|
|
4419
|
+
'''The tag key.
|
|
4420
|
+
|
|
4393
4421
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-threatentityset-tagitem.html#cfn-guardduty-threatentityset-tagitem-key
|
|
4394
4422
|
'''
|
|
4395
4423
|
result = self._values.get("key")
|
|
@@ -4398,7 +4426,10 @@ class CfnThreatEntitySet(
|
|
|
4398
4426
|
|
|
4399
4427
|
@builtins.property
|
|
4400
4428
|
def value(self) -> builtins.str:
|
|
4401
|
-
'''
|
|
4429
|
+
'''The tag value.
|
|
4430
|
+
|
|
4431
|
+
This is optional.
|
|
4432
|
+
|
|
4402
4433
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-threatentityset-tagitem.html#cfn-guardduty-threatentityset-tagitem-value
|
|
4403
4434
|
'''
|
|
4404
4435
|
result = self._values.get("value")
|
|
@@ -4444,13 +4475,13 @@ class CfnThreatEntitySetProps:
|
|
|
4444
4475
|
) -> None:
|
|
4445
4476
|
'''Properties for defining a ``CfnThreatEntitySet``.
|
|
4446
4477
|
|
|
4447
|
-
:param format:
|
|
4448
|
-
:param location:
|
|
4449
|
-
:param activate:
|
|
4450
|
-
:param detector_id:
|
|
4451
|
-
:param expected_bucket_owner:
|
|
4452
|
-
:param name:
|
|
4453
|
-
:param tags:
|
|
4478
|
+
:param format: The format of the file that contains the threat entity set. For information about supported formats, see `List formats <https://docs.aws.amazon.com/guardduty/latest/ug/guardduty_upload-lists.html#prepare_list>`_ in the *Amazon GuardDuty User Guide* .
|
|
4479
|
+
:param location: The URI of the file that contains the threat entity set.
|
|
4480
|
+
:param activate: A boolean value that determines if GuardDuty can start using this list for custom threat detection. For GuardDuty to consider the entries in this list and generate findings based on associated activity, this list must be active.
|
|
4481
|
+
:param detector_id: The unique regional detector ID of the GuardDuty account for which you want to create a threat entity set. To find the ``detectorId`` in the current Region, see the Settings page in the GuardDuty console, or run the `ListDetectors <https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html>`_ API.
|
|
4482
|
+
:param expected_bucket_owner: The AWS account ID that owns the Amazon S3 bucket specified in the *Location* field. Whether or not you provide the account ID for this optional field, GuardDuty validates that the account ID associated with the ``DetectorId`` owns the S3 bucket in the ``Location`` field. If GuardDuty finds that this S3 bucket doesn't belong to the specified account ID, you will get an error at the time of activating this list.
|
|
4483
|
+
:param name: The user-friendly name to identify the threat entity set. Valid characters are alphanumeric, whitespace, dash (-), and underscores (_).
|
|
4484
|
+
:param tags: The tags to be added to a new threat entity set resource. Each tag consists of a key and an optional value, both of which you define. For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ .
|
|
4454
4485
|
|
|
4455
4486
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatentityset.html
|
|
4456
4487
|
:exampleMetadata: fixture=_generated
|
|
@@ -4502,7 +4533,10 @@ class CfnThreatEntitySetProps:
|
|
|
4502
4533
|
|
|
4503
4534
|
@builtins.property
|
|
4504
4535
|
def format(self) -> builtins.str:
|
|
4505
|
-
'''
|
|
4536
|
+
'''The format of the file that contains the threat entity set.
|
|
4537
|
+
|
|
4538
|
+
For information about supported formats, see `List formats <https://docs.aws.amazon.com/guardduty/latest/ug/guardduty_upload-lists.html#prepare_list>`_ in the *Amazon GuardDuty User Guide* .
|
|
4539
|
+
|
|
4506
4540
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatentityset.html#cfn-guardduty-threatentityset-format
|
|
4507
4541
|
'''
|
|
4508
4542
|
result = self._values.get("format")
|
|
@@ -4511,7 +4545,8 @@ class CfnThreatEntitySetProps:
|
|
|
4511
4545
|
|
|
4512
4546
|
@builtins.property
|
|
4513
4547
|
def location(self) -> builtins.str:
|
|
4514
|
-
'''
|
|
4548
|
+
'''The URI of the file that contains the threat entity set.
|
|
4549
|
+
|
|
4515
4550
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatentityset.html#cfn-guardduty-threatentityset-location
|
|
4516
4551
|
'''
|
|
4517
4552
|
result = self._values.get("location")
|
|
@@ -4522,7 +4557,10 @@ class CfnThreatEntitySetProps:
|
|
|
4522
4557
|
def activate(
|
|
4523
4558
|
self,
|
|
4524
4559
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
4525
|
-
'''
|
|
4560
|
+
'''A boolean value that determines if GuardDuty can start using this list for custom threat detection.
|
|
4561
|
+
|
|
4562
|
+
For GuardDuty to consider the entries in this list and generate findings based on associated activity, this list must be active.
|
|
4563
|
+
|
|
4526
4564
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatentityset.html#cfn-guardduty-threatentityset-activate
|
|
4527
4565
|
'''
|
|
4528
4566
|
result = self._values.get("activate")
|
|
@@ -4530,7 +4568,10 @@ class CfnThreatEntitySetProps:
|
|
|
4530
4568
|
|
|
4531
4569
|
@builtins.property
|
|
4532
4570
|
def detector_id(self) -> typing.Optional[builtins.str]:
|
|
4533
|
-
'''
|
|
4571
|
+
'''The unique regional detector ID of the GuardDuty account for which you want to create a threat entity set.
|
|
4572
|
+
|
|
4573
|
+
To find the ``detectorId`` in the current Region, see the Settings page in the GuardDuty console, or run the `ListDetectors <https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html>`_ API.
|
|
4574
|
+
|
|
4534
4575
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatentityset.html#cfn-guardduty-threatentityset-detectorid
|
|
4535
4576
|
'''
|
|
4536
4577
|
result = self._values.get("detector_id")
|
|
@@ -4538,7 +4579,10 @@ class CfnThreatEntitySetProps:
|
|
|
4538
4579
|
|
|
4539
4580
|
@builtins.property
|
|
4540
4581
|
def expected_bucket_owner(self) -> typing.Optional[builtins.str]:
|
|
4541
|
-
'''
|
|
4582
|
+
'''The AWS account ID that owns the Amazon S3 bucket specified in the *Location* field.
|
|
4583
|
+
|
|
4584
|
+
Whether or not you provide the account ID for this optional field, GuardDuty validates that the account ID associated with the ``DetectorId`` owns the S3 bucket in the ``Location`` field. If GuardDuty finds that this S3 bucket doesn't belong to the specified account ID, you will get an error at the time of activating this list.
|
|
4585
|
+
|
|
4542
4586
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatentityset.html#cfn-guardduty-threatentityset-expectedbucketowner
|
|
4543
4587
|
'''
|
|
4544
4588
|
result = self._values.get("expected_bucket_owner")
|
|
@@ -4546,7 +4590,10 @@ class CfnThreatEntitySetProps:
|
|
|
4546
4590
|
|
|
4547
4591
|
@builtins.property
|
|
4548
4592
|
def name(self) -> typing.Optional[builtins.str]:
|
|
4549
|
-
'''
|
|
4593
|
+
'''The user-friendly name to identify the threat entity set.
|
|
4594
|
+
|
|
4595
|
+
Valid characters are alphanumeric, whitespace, dash (-), and underscores (_).
|
|
4596
|
+
|
|
4550
4597
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatentityset.html#cfn-guardduty-threatentityset-name
|
|
4551
4598
|
'''
|
|
4552
4599
|
result = self._values.get("name")
|
|
@@ -4554,7 +4601,12 @@ class CfnThreatEntitySetProps:
|
|
|
4554
4601
|
|
|
4555
4602
|
@builtins.property
|
|
4556
4603
|
def tags(self) -> typing.Optional[typing.List[CfnThreatEntitySet.TagItemProperty]]:
|
|
4557
|
-
'''
|
|
4604
|
+
'''The tags to be added to a new threat entity set resource.
|
|
4605
|
+
|
|
4606
|
+
Each tag consists of a key and an optional value, both of which you define.
|
|
4607
|
+
|
|
4608
|
+
For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ .
|
|
4609
|
+
|
|
4558
4610
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatentityset.html#cfn-guardduty-threatentityset-tags
|
|
4559
4611
|
'''
|
|
4560
4612
|
result = self._values.get("tags")
|
|
@@ -4578,9 +4630,11 @@ class CfnThreatIntelSet(
|
|
|
4578
4630
|
metaclass=jsii.JSIIMeta,
|
|
4579
4631
|
jsii_type="aws-cdk-lib.aws_guardduty.CfnThreatIntelSet",
|
|
4580
4632
|
):
|
|
4581
|
-
'''The ``AWS::GuardDuty::ThreatIntelSet`` resource
|
|
4633
|
+
'''The ``AWS::GuardDuty::ThreatIntelSet`` resource helps you create a list of known malicious IP addresses in your AWS environment.
|
|
4582
4634
|
|
|
4583
|
-
|
|
4635
|
+
Once you activate this list, GuardDuty will use list the entries in this list as an additional source for threat detection and generate findings when there is an activity associated with these known malicious IP addresses. GuardDuty continues to monitor independently of this custom threat intelligence set.
|
|
4636
|
+
|
|
4637
|
+
Only the users of the GuardDuty administrator account can manage this list. These settings automatically apply to the member accounts.
|
|
4584
4638
|
|
|
4585
4639
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html
|
|
4586
4640
|
:cloudformationResource: AWS::GuardDuty::ThreatIntelSet
|
|
@@ -4624,13 +4678,13 @@ class CfnThreatIntelSet(
|
|
|
4624
4678
|
'''
|
|
4625
4679
|
:param scope: Scope in which this resource is defined.
|
|
4626
4680
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
4627
|
-
:param format: The format of the file that contains the ThreatIntelSet.
|
|
4681
|
+
:param format: The format of the file that contains the ``ThreatIntelSet`` . For information about supported formats, see `List formats <https://docs.aws.amazon.com/guardduty/latest/ug/guardduty_upload-lists.html#prepare_list>`_ in the *Amazon GuardDuty User Guide* .
|
|
4628
4682
|
:param location: The URI of the file that contains the ThreatIntelSet.
|
|
4629
|
-
:param activate: A
|
|
4630
|
-
:param detector_id: The unique ID of the detector of the GuardDuty account for which you want to create a ``
|
|
4683
|
+
:param activate: A boolean value that determines if GuardDuty can start using this list for custom threat detection. For GuardDuty to be able to generate findings based on an activity associated with these entries, this list must be active.
|
|
4684
|
+
:param detector_id: The unique ID of the detector of the GuardDuty account for which you want to create a ``threatIntelSet`` . To find the ``detectorId`` in the current Region, see the Settings page in the GuardDuty console, or run the `ListDetectors <https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html>`_ API.
|
|
4631
4685
|
:param expected_bucket_owner: The AWS account ID that owns the Amazon S3 bucket specified in the *Location* field. When you provide this account ID, GuardDuty will validate that the S3 bucket belongs to this account. If you don't specify an account ID owner, GuardDuty doesn't perform any validation.
|
|
4632
|
-
:param name:
|
|
4633
|
-
:param tags: The tags to be added to a new threat
|
|
4686
|
+
:param name: The user-friendly name to identify the ThreatIntelSet. The name of your list must be unique within an AWS account and Region. Valid characters are alphanumeric, whitespace, dash (-), and underscores (_).
|
|
4687
|
+
:param tags: The tags to be added to a new threat entity set resource. Each tag consists of a key and an optional value, both of which you define. For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ .
|
|
4634
4688
|
'''
|
|
4635
4689
|
if __debug__:
|
|
4636
4690
|
type_hints = typing.get_type_hints(_typecheckingstub__e60035c0bc955afb794ee89f0439deae280bfec665014cbbd161f08566de73a7)
|
|
@@ -4701,7 +4755,7 @@ class CfnThreatIntelSet(
|
|
|
4701
4755
|
@builtins.property
|
|
4702
4756
|
@jsii.member(jsii_name="format")
|
|
4703
4757
|
def format(self) -> builtins.str:
|
|
4704
|
-
'''The format of the file that contains the ThreatIntelSet.'''
|
|
4758
|
+
'''The format of the file that contains the ``ThreatIntelSet`` .'''
|
|
4705
4759
|
return typing.cast(builtins.str, jsii.get(self, "format"))
|
|
4706
4760
|
|
|
4707
4761
|
@format.setter
|
|
@@ -4729,7 +4783,7 @@ class CfnThreatIntelSet(
|
|
|
4729
4783
|
def activate(
|
|
4730
4784
|
self,
|
|
4731
4785
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
4732
|
-
'''A
|
|
4786
|
+
'''A boolean value that determines if GuardDuty can start using this list for custom threat detection.'''
|
|
4733
4787
|
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], jsii.get(self, "activate"))
|
|
4734
4788
|
|
|
4735
4789
|
@activate.setter
|
|
@@ -4745,7 +4799,7 @@ class CfnThreatIntelSet(
|
|
|
4745
4799
|
@builtins.property
|
|
4746
4800
|
@jsii.member(jsii_name="detectorId")
|
|
4747
4801
|
def detector_id(self) -> typing.Optional[builtins.str]:
|
|
4748
|
-
'''The unique ID of the detector of the GuardDuty account for which you want to create a ``
|
|
4802
|
+
'''The unique ID of the detector of the GuardDuty account for which you want to create a ``threatIntelSet`` .'''
|
|
4749
4803
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "detectorId"))
|
|
4750
4804
|
|
|
4751
4805
|
@detector_id.setter
|
|
@@ -4771,7 +4825,7 @@ class CfnThreatIntelSet(
|
|
|
4771
4825
|
@builtins.property
|
|
4772
4826
|
@jsii.member(jsii_name="name")
|
|
4773
4827
|
def name(self) -> typing.Optional[builtins.str]:
|
|
4774
|
-
'''
|
|
4828
|
+
'''The user-friendly name to identify the ThreatIntelSet.'''
|
|
4775
4829
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "name"))
|
|
4776
4830
|
|
|
4777
4831
|
@name.setter
|
|
@@ -4784,7 +4838,7 @@ class CfnThreatIntelSet(
|
|
|
4784
4838
|
@builtins.property
|
|
4785
4839
|
@jsii.member(jsii_name="tagsRaw")
|
|
4786
4840
|
def tags_raw(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
4787
|
-
'''The tags to be added to a new threat
|
|
4841
|
+
'''The tags to be added to a new threat entity set resource.'''
|
|
4788
4842
|
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tagsRaw"))
|
|
4789
4843
|
|
|
4790
4844
|
@tags_raw.setter
|
|
@@ -4822,13 +4876,13 @@ class CfnThreatIntelSetProps:
|
|
|
4822
4876
|
) -> None:
|
|
4823
4877
|
'''Properties for defining a ``CfnThreatIntelSet``.
|
|
4824
4878
|
|
|
4825
|
-
:param format: The format of the file that contains the ThreatIntelSet.
|
|
4879
|
+
:param format: The format of the file that contains the ``ThreatIntelSet`` . For information about supported formats, see `List formats <https://docs.aws.amazon.com/guardduty/latest/ug/guardduty_upload-lists.html#prepare_list>`_ in the *Amazon GuardDuty User Guide* .
|
|
4826
4880
|
:param location: The URI of the file that contains the ThreatIntelSet.
|
|
4827
|
-
:param activate: A
|
|
4828
|
-
:param detector_id: The unique ID of the detector of the GuardDuty account for which you want to create a ``
|
|
4881
|
+
:param activate: A boolean value that determines if GuardDuty can start using this list for custom threat detection. For GuardDuty to be able to generate findings based on an activity associated with these entries, this list must be active.
|
|
4882
|
+
:param detector_id: The unique ID of the detector of the GuardDuty account for which you want to create a ``threatIntelSet`` . To find the ``detectorId`` in the current Region, see the Settings page in the GuardDuty console, or run the `ListDetectors <https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html>`_ API.
|
|
4829
4883
|
:param expected_bucket_owner: The AWS account ID that owns the Amazon S3 bucket specified in the *Location* field. When you provide this account ID, GuardDuty will validate that the S3 bucket belongs to this account. If you don't specify an account ID owner, GuardDuty doesn't perform any validation.
|
|
4830
|
-
:param name:
|
|
4831
|
-
:param tags: The tags to be added to a new threat
|
|
4884
|
+
:param name: The user-friendly name to identify the ThreatIntelSet. The name of your list must be unique within an AWS account and Region. Valid characters are alphanumeric, whitespace, dash (-), and underscores (_).
|
|
4885
|
+
:param tags: The tags to be added to a new threat entity set resource. Each tag consists of a key and an optional value, both of which you define. For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ .
|
|
4832
4886
|
|
|
4833
4887
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html
|
|
4834
4888
|
:exampleMetadata: fixture=_generated
|
|
@@ -4880,7 +4934,9 @@ class CfnThreatIntelSetProps:
|
|
|
4880
4934
|
|
|
4881
4935
|
@builtins.property
|
|
4882
4936
|
def format(self) -> builtins.str:
|
|
4883
|
-
'''The format of the file that contains the ThreatIntelSet.
|
|
4937
|
+
'''The format of the file that contains the ``ThreatIntelSet`` .
|
|
4938
|
+
|
|
4939
|
+
For information about supported formats, see `List formats <https://docs.aws.amazon.com/guardduty/latest/ug/guardduty_upload-lists.html#prepare_list>`_ in the *Amazon GuardDuty User Guide* .
|
|
4884
4940
|
|
|
4885
4941
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-format
|
|
4886
4942
|
'''
|
|
@@ -4902,7 +4958,9 @@ class CfnThreatIntelSetProps:
|
|
|
4902
4958
|
def activate(
|
|
4903
4959
|
self,
|
|
4904
4960
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
4905
|
-
'''A
|
|
4961
|
+
'''A boolean value that determines if GuardDuty can start using this list for custom threat detection.
|
|
4962
|
+
|
|
4963
|
+
For GuardDuty to be able to generate findings based on an activity associated with these entries, this list must be active.
|
|
4906
4964
|
|
|
4907
4965
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-activate
|
|
4908
4966
|
'''
|
|
@@ -4911,7 +4969,7 @@ class CfnThreatIntelSetProps:
|
|
|
4911
4969
|
|
|
4912
4970
|
@builtins.property
|
|
4913
4971
|
def detector_id(self) -> typing.Optional[builtins.str]:
|
|
4914
|
-
'''The unique ID of the detector of the GuardDuty account for which you want to create a ``
|
|
4972
|
+
'''The unique ID of the detector of the GuardDuty account for which you want to create a ``threatIntelSet`` .
|
|
4915
4973
|
|
|
4916
4974
|
To find the ``detectorId`` in the current Region, see the
|
|
4917
4975
|
Settings page in the GuardDuty console, or run the `ListDetectors <https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html>`_ API.
|
|
@@ -4934,7 +4992,9 @@ class CfnThreatIntelSetProps:
|
|
|
4934
4992
|
|
|
4935
4993
|
@builtins.property
|
|
4936
4994
|
def name(self) -> typing.Optional[builtins.str]:
|
|
4937
|
-
'''
|
|
4995
|
+
'''The user-friendly name to identify the ThreatIntelSet.
|
|
4996
|
+
|
|
4997
|
+
The name of your list must be unique within an AWS account and Region. Valid characters are alphanumeric, whitespace, dash (-), and underscores (_).
|
|
4938
4998
|
|
|
4939
4999
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-name
|
|
4940
5000
|
'''
|
|
@@ -4943,7 +5003,7 @@ class CfnThreatIntelSetProps:
|
|
|
4943
5003
|
|
|
4944
5004
|
@builtins.property
|
|
4945
5005
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
4946
|
-
'''The tags to be added to a new threat
|
|
5006
|
+
'''The tags to be added to a new threat entity set resource.
|
|
4947
5007
|
|
|
4948
5008
|
Each tag consists of a key and an optional value, both of which you define.
|
|
4949
5009
|
|
|
@@ -4972,7 +5032,11 @@ class CfnTrustedEntitySet(
|
|
|
4972
5032
|
metaclass=jsii.JSIIMeta,
|
|
4973
5033
|
jsii_type="aws-cdk-lib.aws_guardduty.CfnTrustedEntitySet",
|
|
4974
5034
|
):
|
|
4975
|
-
'''
|
|
5035
|
+
'''The ``AWS::GuardDuty::TrustedEntitySet`` resource helps you create a list of IP addresses and domain names that you can use for secure communication with your AWS infrastructure and applications.
|
|
5036
|
+
|
|
5037
|
+
Once you activate this list, GuardDuty will not generate findings when there is an activity associated with these safe IP addresses and domain names. At any given time, you can have only one trusted entity set.
|
|
5038
|
+
|
|
5039
|
+
Only the users of the GuardDuty administrator account can manage the entity sets. These settings automatically apply member accounts.
|
|
4976
5040
|
|
|
4977
5041
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-trustedentityset.html
|
|
4978
5042
|
:cloudformationResource: AWS::GuardDuty::TrustedEntitySet
|
|
@@ -5016,13 +5080,13 @@ class CfnTrustedEntitySet(
|
|
|
5016
5080
|
'''
|
|
5017
5081
|
:param scope: Scope in which this resource is defined.
|
|
5018
5082
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
5019
|
-
:param format:
|
|
5020
|
-
:param location:
|
|
5021
|
-
:param activate:
|
|
5022
|
-
:param detector_id:
|
|
5023
|
-
:param expected_bucket_owner:
|
|
5024
|
-
:param name:
|
|
5025
|
-
:param tags:
|
|
5083
|
+
:param format: The format of the file that contains the trusted entity set. For information about supported formats, see `List formats <https://docs.aws.amazon.com/guardduty/latest/ug/guardduty_upload-lists.html#prepare_list>`_ in the *Amazon GuardDuty User Guide* .
|
|
5084
|
+
:param location: The URI of the file that contains the trusted entity set.
|
|
5085
|
+
:param activate: A boolean value that determines if GuardDuty can start using this list for custom threat detection. For GuardDuty to prevent generating findings based on an activity associated with these entries, this list must be active.
|
|
5086
|
+
:param detector_id: The unique regional detector ID of the GuardDuty account for which you want to create a trusted entity set. To find the ``detectorId`` in the current Region, see the Settings page in the GuardDuty console, or run the `ListDetectors <https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html>`_ API.
|
|
5087
|
+
:param expected_bucket_owner: The AWS account ID that owns the Amazon S3 bucket specified in the *Location* field. Whether or not you provide the account ID for this optional field, GuardDuty validates that the account ID associated with the ``DetectorId`` value owns the S3 bucket in the ``Location`` field. If GuardDuty finds that this S3 bucket doesn't belong to the specified account ID, you will get an error at the time of activating this list.
|
|
5088
|
+
:param name: A user-friendly name to identify the trusted entity set. Valid characters include lowercase letters, uppercase letters, numbers, dash(-), and underscore (_).
|
|
5089
|
+
:param tags: The tags to be added to a new trusted entity set resource. Each tag consists of a key and an optional value, both of which you define. For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ .
|
|
5026
5090
|
'''
|
|
5027
5091
|
if __debug__:
|
|
5028
5092
|
type_hints = typing.get_type_hints(_typecheckingstub__f97ca040c13911b4ef646900134e880ef92baa555cc7ae3a3f589a5b783d6bdd)
|
|
@@ -5073,7 +5137,8 @@ class CfnTrustedEntitySet(
|
|
|
5073
5137
|
@builtins.property
|
|
5074
5138
|
@jsii.member(jsii_name="attrCreatedAt")
|
|
5075
5139
|
def attr_created_at(self) -> builtins.str:
|
|
5076
|
-
'''
|
|
5140
|
+
'''The timestamp when the trusted entity set was created.
|
|
5141
|
+
|
|
5077
5142
|
:cloudformationAttribute: CreatedAt
|
|
5078
5143
|
'''
|
|
5079
5144
|
return typing.cast(builtins.str, jsii.get(self, "attrCreatedAt"))
|
|
@@ -5081,7 +5146,8 @@ class CfnTrustedEntitySet(
|
|
|
5081
5146
|
@builtins.property
|
|
5082
5147
|
@jsii.member(jsii_name="attrErrorDetails")
|
|
5083
5148
|
def attr_error_details(self) -> builtins.str:
|
|
5084
|
-
'''
|
|
5149
|
+
'''Specifies the error details when the status of the trusted entity set shows as *Error* .
|
|
5150
|
+
|
|
5085
5151
|
:cloudformationAttribute: ErrorDetails
|
|
5086
5152
|
'''
|
|
5087
5153
|
return typing.cast(builtins.str, jsii.get(self, "attrErrorDetails"))
|
|
@@ -5097,7 +5163,10 @@ class CfnTrustedEntitySet(
|
|
|
5097
5163
|
@builtins.property
|
|
5098
5164
|
@jsii.member(jsii_name="attrStatus")
|
|
5099
5165
|
def attr_status(self) -> builtins.str:
|
|
5100
|
-
'''
|
|
5166
|
+
'''The status of your ``TrustedEntitySet`` .
|
|
5167
|
+
|
|
5168
|
+
For information about valid status values, see `Understanding list statuses <https://docs.aws.amazon.com/guardduty/latest/ug/guardduty_upload-lists.html#guardduty-entity-list-statuses>`_ in the *Amazon GuardDuty User Guide* .
|
|
5169
|
+
|
|
5101
5170
|
:cloudformationAttribute: Status
|
|
5102
5171
|
'''
|
|
5103
5172
|
return typing.cast(builtins.str, jsii.get(self, "attrStatus"))
|
|
@@ -5105,7 +5174,8 @@ class CfnTrustedEntitySet(
|
|
|
5105
5174
|
@builtins.property
|
|
5106
5175
|
@jsii.member(jsii_name="attrUpdatedAt")
|
|
5107
5176
|
def attr_updated_at(self) -> builtins.str:
|
|
5108
|
-
'''
|
|
5177
|
+
'''The timestamp when the trusted entity set was updated.
|
|
5178
|
+
|
|
5109
5179
|
:cloudformationAttribute: UpdatedAt
|
|
5110
5180
|
'''
|
|
5111
5181
|
return typing.cast(builtins.str, jsii.get(self, "attrUpdatedAt"))
|
|
@@ -5124,6 +5194,7 @@ class CfnTrustedEntitySet(
|
|
|
5124
5194
|
@builtins.property
|
|
5125
5195
|
@jsii.member(jsii_name="format")
|
|
5126
5196
|
def format(self) -> builtins.str:
|
|
5197
|
+
'''The format of the file that contains the trusted entity set.'''
|
|
5127
5198
|
return typing.cast(builtins.str, jsii.get(self, "format"))
|
|
5128
5199
|
|
|
5129
5200
|
@format.setter
|
|
@@ -5136,6 +5207,7 @@ class CfnTrustedEntitySet(
|
|
|
5136
5207
|
@builtins.property
|
|
5137
5208
|
@jsii.member(jsii_name="location")
|
|
5138
5209
|
def location(self) -> builtins.str:
|
|
5210
|
+
'''The URI of the file that contains the trusted entity set.'''
|
|
5139
5211
|
return typing.cast(builtins.str, jsii.get(self, "location"))
|
|
5140
5212
|
|
|
5141
5213
|
@location.setter
|
|
@@ -5150,6 +5222,7 @@ class CfnTrustedEntitySet(
|
|
|
5150
5222
|
def activate(
|
|
5151
5223
|
self,
|
|
5152
5224
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
5225
|
+
'''A boolean value that determines if GuardDuty can start using this list for custom threat detection.'''
|
|
5153
5226
|
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], jsii.get(self, "activate"))
|
|
5154
5227
|
|
|
5155
5228
|
@activate.setter
|
|
@@ -5165,6 +5238,7 @@ class CfnTrustedEntitySet(
|
|
|
5165
5238
|
@builtins.property
|
|
5166
5239
|
@jsii.member(jsii_name="detectorId")
|
|
5167
5240
|
def detector_id(self) -> typing.Optional[builtins.str]:
|
|
5241
|
+
'''The unique regional detector ID of the GuardDuty account for which you want to create a trusted entity set.'''
|
|
5168
5242
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "detectorId"))
|
|
5169
5243
|
|
|
5170
5244
|
@detector_id.setter
|
|
@@ -5177,6 +5251,7 @@ class CfnTrustedEntitySet(
|
|
|
5177
5251
|
@builtins.property
|
|
5178
5252
|
@jsii.member(jsii_name="expectedBucketOwner")
|
|
5179
5253
|
def expected_bucket_owner(self) -> typing.Optional[builtins.str]:
|
|
5254
|
+
'''The AWS account ID that owns the Amazon S3 bucket specified in the *Location* field.'''
|
|
5180
5255
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "expectedBucketOwner"))
|
|
5181
5256
|
|
|
5182
5257
|
@expected_bucket_owner.setter
|
|
@@ -5189,6 +5264,7 @@ class CfnTrustedEntitySet(
|
|
|
5189
5264
|
@builtins.property
|
|
5190
5265
|
@jsii.member(jsii_name="name")
|
|
5191
5266
|
def name(self) -> typing.Optional[builtins.str]:
|
|
5267
|
+
'''A user-friendly name to identify the trusted entity set.'''
|
|
5192
5268
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "name"))
|
|
5193
5269
|
|
|
5194
5270
|
@name.setter
|
|
@@ -5203,6 +5279,7 @@ class CfnTrustedEntitySet(
|
|
|
5203
5279
|
def tags(
|
|
5204
5280
|
self,
|
|
5205
5281
|
) -> typing.Optional[typing.List["CfnTrustedEntitySet.TagItemProperty"]]:
|
|
5282
|
+
'''The tags to be added to a new trusted entity set resource.'''
|
|
5206
5283
|
return typing.cast(typing.Optional[typing.List["CfnTrustedEntitySet.TagItemProperty"]], jsii.get(self, "tags"))
|
|
5207
5284
|
|
|
5208
5285
|
@tags.setter
|
|
@@ -5222,9 +5299,12 @@ class CfnTrustedEntitySet(
|
|
|
5222
5299
|
)
|
|
5223
5300
|
class TagItemProperty:
|
|
5224
5301
|
def __init__(self, *, key: builtins.str, value: builtins.str) -> None:
|
|
5225
|
-
'''
|
|
5226
|
-
|
|
5227
|
-
|
|
5302
|
+
'''Describes a tag.
|
|
5303
|
+
|
|
5304
|
+
For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ .
|
|
5305
|
+
|
|
5306
|
+
:param key: The tag key.
|
|
5307
|
+
:param value: The tag value. This is optional.
|
|
5228
5308
|
|
|
5229
5309
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-trustedentityset-tagitem.html
|
|
5230
5310
|
:exampleMetadata: fixture=_generated
|
|
@@ -5251,7 +5331,8 @@ class CfnTrustedEntitySet(
|
|
|
5251
5331
|
|
|
5252
5332
|
@builtins.property
|
|
5253
5333
|
def key(self) -> builtins.str:
|
|
5254
|
-
'''
|
|
5334
|
+
'''The tag key.
|
|
5335
|
+
|
|
5255
5336
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-trustedentityset-tagitem.html#cfn-guardduty-trustedentityset-tagitem-key
|
|
5256
5337
|
'''
|
|
5257
5338
|
result = self._values.get("key")
|
|
@@ -5260,7 +5341,10 @@ class CfnTrustedEntitySet(
|
|
|
5260
5341
|
|
|
5261
5342
|
@builtins.property
|
|
5262
5343
|
def value(self) -> builtins.str:
|
|
5263
|
-
'''
|
|
5344
|
+
'''The tag value.
|
|
5345
|
+
|
|
5346
|
+
This is optional.
|
|
5347
|
+
|
|
5264
5348
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-trustedentityset-tagitem.html#cfn-guardduty-trustedentityset-tagitem-value
|
|
5265
5349
|
'''
|
|
5266
5350
|
result = self._values.get("value")
|
|
@@ -5306,13 +5390,13 @@ class CfnTrustedEntitySetProps:
|
|
|
5306
5390
|
) -> None:
|
|
5307
5391
|
'''Properties for defining a ``CfnTrustedEntitySet``.
|
|
5308
5392
|
|
|
5309
|
-
:param format:
|
|
5310
|
-
:param location:
|
|
5311
|
-
:param activate:
|
|
5312
|
-
:param detector_id:
|
|
5313
|
-
:param expected_bucket_owner:
|
|
5314
|
-
:param name:
|
|
5315
|
-
:param tags:
|
|
5393
|
+
:param format: The format of the file that contains the trusted entity set. For information about supported formats, see `List formats <https://docs.aws.amazon.com/guardduty/latest/ug/guardduty_upload-lists.html#prepare_list>`_ in the *Amazon GuardDuty User Guide* .
|
|
5394
|
+
:param location: The URI of the file that contains the trusted entity set.
|
|
5395
|
+
:param activate: A boolean value that determines if GuardDuty can start using this list for custom threat detection. For GuardDuty to prevent generating findings based on an activity associated with these entries, this list must be active.
|
|
5396
|
+
:param detector_id: The unique regional detector ID of the GuardDuty account for which you want to create a trusted entity set. To find the ``detectorId`` in the current Region, see the Settings page in the GuardDuty console, or run the `ListDetectors <https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html>`_ API.
|
|
5397
|
+
:param expected_bucket_owner: The AWS account ID that owns the Amazon S3 bucket specified in the *Location* field. Whether or not you provide the account ID for this optional field, GuardDuty validates that the account ID associated with the ``DetectorId`` value owns the S3 bucket in the ``Location`` field. If GuardDuty finds that this S3 bucket doesn't belong to the specified account ID, you will get an error at the time of activating this list.
|
|
5398
|
+
:param name: A user-friendly name to identify the trusted entity set. Valid characters include lowercase letters, uppercase letters, numbers, dash(-), and underscore (_).
|
|
5399
|
+
:param tags: The tags to be added to a new trusted entity set resource. Each tag consists of a key and an optional value, both of which you define. For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ .
|
|
5316
5400
|
|
|
5317
5401
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-trustedentityset.html
|
|
5318
5402
|
:exampleMetadata: fixture=_generated
|
|
@@ -5364,7 +5448,10 @@ class CfnTrustedEntitySetProps:
|
|
|
5364
5448
|
|
|
5365
5449
|
@builtins.property
|
|
5366
5450
|
def format(self) -> builtins.str:
|
|
5367
|
-
'''
|
|
5451
|
+
'''The format of the file that contains the trusted entity set.
|
|
5452
|
+
|
|
5453
|
+
For information about supported formats, see `List formats <https://docs.aws.amazon.com/guardduty/latest/ug/guardduty_upload-lists.html#prepare_list>`_ in the *Amazon GuardDuty User Guide* .
|
|
5454
|
+
|
|
5368
5455
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-trustedentityset.html#cfn-guardduty-trustedentityset-format
|
|
5369
5456
|
'''
|
|
5370
5457
|
result = self._values.get("format")
|
|
@@ -5373,7 +5460,8 @@ class CfnTrustedEntitySetProps:
|
|
|
5373
5460
|
|
|
5374
5461
|
@builtins.property
|
|
5375
5462
|
def location(self) -> builtins.str:
|
|
5376
|
-
'''
|
|
5463
|
+
'''The URI of the file that contains the trusted entity set.
|
|
5464
|
+
|
|
5377
5465
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-trustedentityset.html#cfn-guardduty-trustedentityset-location
|
|
5378
5466
|
'''
|
|
5379
5467
|
result = self._values.get("location")
|
|
@@ -5384,7 +5472,10 @@ class CfnTrustedEntitySetProps:
|
|
|
5384
5472
|
def activate(
|
|
5385
5473
|
self,
|
|
5386
5474
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
5387
|
-
'''
|
|
5475
|
+
'''A boolean value that determines if GuardDuty can start using this list for custom threat detection.
|
|
5476
|
+
|
|
5477
|
+
For GuardDuty to prevent generating findings based on an activity associated with these entries, this list must be active.
|
|
5478
|
+
|
|
5388
5479
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-trustedentityset.html#cfn-guardduty-trustedentityset-activate
|
|
5389
5480
|
'''
|
|
5390
5481
|
result = self._values.get("activate")
|
|
@@ -5392,7 +5483,10 @@ class CfnTrustedEntitySetProps:
|
|
|
5392
5483
|
|
|
5393
5484
|
@builtins.property
|
|
5394
5485
|
def detector_id(self) -> typing.Optional[builtins.str]:
|
|
5395
|
-
'''
|
|
5486
|
+
'''The unique regional detector ID of the GuardDuty account for which you want to create a trusted entity set.
|
|
5487
|
+
|
|
5488
|
+
To find the ``detectorId`` in the current Region, see the Settings page in the GuardDuty console, or run the `ListDetectors <https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html>`_ API.
|
|
5489
|
+
|
|
5396
5490
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-trustedentityset.html#cfn-guardduty-trustedentityset-detectorid
|
|
5397
5491
|
'''
|
|
5398
5492
|
result = self._values.get("detector_id")
|
|
@@ -5400,7 +5494,10 @@ class CfnTrustedEntitySetProps:
|
|
|
5400
5494
|
|
|
5401
5495
|
@builtins.property
|
|
5402
5496
|
def expected_bucket_owner(self) -> typing.Optional[builtins.str]:
|
|
5403
|
-
'''
|
|
5497
|
+
'''The AWS account ID that owns the Amazon S3 bucket specified in the *Location* field.
|
|
5498
|
+
|
|
5499
|
+
Whether or not you provide the account ID for this optional field, GuardDuty validates that the account ID associated with the ``DetectorId`` value owns the S3 bucket in the ``Location`` field. If GuardDuty finds that this S3 bucket doesn't belong to the specified account ID, you will get an error at the time of activating this list.
|
|
5500
|
+
|
|
5404
5501
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-trustedentityset.html#cfn-guardduty-trustedentityset-expectedbucketowner
|
|
5405
5502
|
'''
|
|
5406
5503
|
result = self._values.get("expected_bucket_owner")
|
|
@@ -5408,7 +5505,10 @@ class CfnTrustedEntitySetProps:
|
|
|
5408
5505
|
|
|
5409
5506
|
@builtins.property
|
|
5410
5507
|
def name(self) -> typing.Optional[builtins.str]:
|
|
5411
|
-
'''
|
|
5508
|
+
'''A user-friendly name to identify the trusted entity set.
|
|
5509
|
+
|
|
5510
|
+
Valid characters include lowercase letters, uppercase letters, numbers, dash(-), and underscore (_).
|
|
5511
|
+
|
|
5412
5512
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-trustedentityset.html#cfn-guardduty-trustedentityset-name
|
|
5413
5513
|
'''
|
|
5414
5514
|
result = self._values.get("name")
|
|
@@ -5416,7 +5516,12 @@ class CfnTrustedEntitySetProps:
|
|
|
5416
5516
|
|
|
5417
5517
|
@builtins.property
|
|
5418
5518
|
def tags(self) -> typing.Optional[typing.List[CfnTrustedEntitySet.TagItemProperty]]:
|
|
5419
|
-
'''
|
|
5519
|
+
'''The tags to be added to a new trusted entity set resource.
|
|
5520
|
+
|
|
5521
|
+
Each tag consists of a key and an optional value, both of which you define.
|
|
5522
|
+
|
|
5523
|
+
For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ .
|
|
5524
|
+
|
|
5420
5525
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-trustedentityset.html#cfn-guardduty-trustedentityset-tags
|
|
5421
5526
|
'''
|
|
5422
5527
|
result = self._values.get("tags")
|