Class CfnTrustedEntitySetMixinProps
Properties for CfnTrustedEntitySetPropsMixin.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.GuardDuty
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnTrustedEntitySetMixinProps : ICfnTrustedEntitySetMixinProps
Syntax (vb)
Public Class CfnTrustedEntitySetMixinProps Implements ICfnTrustedEntitySetMixinProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.GuardDuty;
var cfnTrustedEntitySetMixinProps = new CfnTrustedEntitySetMixinProps {
Activate = false,
DetectorId = "detectorId",
ExpectedBucketOwner = "expectedBucketOwner",
Format = "format",
Location = "location",
Name = "name",
Tags = new [] { new TagItemProperty {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
| CfnTrustedEntitySetMixinProps() | Properties for CfnTrustedEntitySetPropsMixin. |
Properties
| Activate | A boolean value that determines if GuardDuty can start using this list for custom threat detection. |
| DetectorId | The unique regional detector ID of the GuardDuty account for which you want to create a trusted entity set. |
| ExpectedBucketOwner | The AWS account ID that owns the Amazon S3 bucket specified in the Location field. |
| Format | The format of the file that contains the trusted entity set. |
| Location | The URI of the file that contains the trusted entity set. |
| Name | A user-friendly name to identify the trusted entity set. |
| Tags | The tags to be added to a new trusted entity set resource. |
Constructors
CfnTrustedEntitySetMixinProps()
Properties for CfnTrustedEntitySetPropsMixin.
public CfnTrustedEntitySetMixinProps()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.GuardDuty;
var cfnTrustedEntitySetMixinProps = new CfnTrustedEntitySetMixinProps {
Activate = false,
DetectorId = "detectorId",
ExpectedBucketOwner = "expectedBucketOwner",
Format = "format",
Location = "location",
Name = "name",
Tags = new [] { new TagItemProperty {
Key = "key",
Value = "value"
} }
};
Properties
Activate
A boolean value that determines if GuardDuty can start using this list for custom threat detection.
public object? Activate { get; set; }
Property Value
Remarks
For GuardDuty to prevent generating findings based on an activity associated with these entries, this list must be active.
Type union: either bool or IResolvable
DetectorId
The unique regional detector ID of the GuardDuty account for which you want to create a trusted entity set.
public string? DetectorId { get; set; }
Property Value
Remarks
To find the detectorId in the current Region, see the Settings page in the GuardDuty console, or run the ListDetectors API.
ExpectedBucketOwner
The AWS account ID that owns the Amazon S3 bucket specified in the Location field.
public string? ExpectedBucketOwner { get; set; }
Property Value
Remarks
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.
Format
The format of the file that contains the trusted entity set.
public string? Format { get; set; }
Property Value
Remarks
For information about supported formats, see List formats in the Amazon GuardDuty User Guide .
Location
The URI of the file that contains the trusted entity set.
public string? Location { get; set; }
Property Value
Remarks
Name
A user-friendly name to identify the trusted entity set.
public string? Name { get; set; }
Property Value
Remarks
Valid characters include lowercase letters, uppercase letters, numbers, dash(-), and underscore (_).
Tags
The tags to be added to a new trusted entity set resource.
public CfnTrustedEntitySetPropsMixin.ITagItemProperty[]? Tags { get; set; }
Property Value
Remarks
Each tag consists of a key and an optional value, both of which you define.
For more information, see Tag .