CfnThreatEntitySetProps

class aws_cdk.aws_guardduty.CfnThreatEntitySetProps(*, format, location, activate=None, detector_id=None, expected_bucket_owner=None, name=None, tags=None)

Bases: object

Properties for defining a CfnThreatEntitySet.

Parameters:
  • format (str)

  • location (str)

  • activate (Union[bool, IResolvable, None])

  • detector_id (Optional[str])

  • expected_bucket_owner (Optional[str])

  • name (Optional[str])

  • tags (Optional[Sequence[Union[TagItemProperty, Dict[str, Any]]]])

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatentityset.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_guardduty as guardduty

cfn_threat_entity_set_props = guardduty.CfnThreatEntitySetProps(
    format="format",
    location="location",

    # the properties below are optional
    activate=False,
    detector_id="detectorId",
    expected_bucket_owner="expectedBucketOwner",
    name="name",
    tags=[guardduty.CfnThreatEntitySet.TagItemProperty(
        key="key",
        value="value"
    )]
)

Attributes

activate

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatentityset.html#cfn-guardduty-threatentityset-activate

Type:

see

detector_id

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatentityset.html#cfn-guardduty-threatentityset-detectorid

Type:

see

expected_bucket_owner

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatentityset.html#cfn-guardduty-threatentityset-expectedbucketowner

Type:

see

format

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatentityset.html#cfn-guardduty-threatentityset-format

Type:

see

location

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatentityset.html#cfn-guardduty-threatentityset-location

Type:

see

name

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatentityset.html#cfn-guardduty-threatentityset-name

Type:

see

tags

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatentityset.html#cfn-guardduty-threatentityset-tags

Type:

see