1. Packages
  2. AWS
  3. API Docs
  4. guardduty
  5. MemberDetectorFeature
AWS v6.72.0 published on Tuesday, Mar 11, 2025 by Pulumi

aws.guardduty.MemberDetectorFeature

Explore with Pulumi AI

aws logo
AWS v6.72.0 published on Tuesday, Mar 11, 2025 by Pulumi

    Provides a resource to manage a single Amazon GuardDuty detector feature for a member account.

    NOTE: Deleting this resource does not disable the detector feature in the member account, the resource in simply removed from state instead.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.guardduty.Detector("example", {enable: true});
    const runtimeMonitoring = new aws.guardduty.MemberDetectorFeature("runtime_monitoring", {
        detectorId: example.id,
        accountId: "123456789012",
        name: "RUNTIME_MONITORING",
        status: "ENABLED",
        additionalConfigurations: [
            {
                name: "EKS_ADDON_MANAGEMENT",
                status: "ENABLED",
            },
            {
                name: "ECS_FARGATE_AGENT_MANAGEMENT",
                status: "ENABLED",
            },
        ],
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.guardduty.Detector("example", enable=True)
    runtime_monitoring = aws.guardduty.MemberDetectorFeature("runtime_monitoring",
        detector_id=example.id,
        account_id="123456789012",
        name="RUNTIME_MONITORING",
        status="ENABLED",
        additional_configurations=[
            {
                "name": "EKS_ADDON_MANAGEMENT",
                "status": "ENABLED",
            },
            {
                "name": "ECS_FARGATE_AGENT_MANAGEMENT",
                "status": "ENABLED",
            },
        ])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/guardduty"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := guardduty.NewDetector(ctx, "example", &guardduty.DetectorArgs{
    			Enable: pulumi.Bool(true),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = guardduty.NewMemberDetectorFeature(ctx, "runtime_monitoring", &guardduty.MemberDetectorFeatureArgs{
    			DetectorId: example.ID(),
    			AccountId:  pulumi.String("123456789012"),
    			Name:       pulumi.String("RUNTIME_MONITORING"),
    			Status:     pulumi.String("ENABLED"),
    			AdditionalConfigurations: guardduty.MemberDetectorFeatureAdditionalConfigurationArray{
    				&guardduty.MemberDetectorFeatureAdditionalConfigurationArgs{
    					Name:   pulumi.String("EKS_ADDON_MANAGEMENT"),
    					Status: pulumi.String("ENABLED"),
    				},
    				&guardduty.MemberDetectorFeatureAdditionalConfigurationArgs{
    					Name:   pulumi.String("ECS_FARGATE_AGENT_MANAGEMENT"),
    					Status: pulumi.String("ENABLED"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.GuardDuty.Detector("example", new()
        {
            Enable = true,
        });
    
        var runtimeMonitoring = new Aws.GuardDuty.MemberDetectorFeature("runtime_monitoring", new()
        {
            DetectorId = example.Id,
            AccountId = "123456789012",
            Name = "RUNTIME_MONITORING",
            Status = "ENABLED",
            AdditionalConfigurations = new[]
            {
                new Aws.GuardDuty.Inputs.MemberDetectorFeatureAdditionalConfigurationArgs
                {
                    Name = "EKS_ADDON_MANAGEMENT",
                    Status = "ENABLED",
                },
                new Aws.GuardDuty.Inputs.MemberDetectorFeatureAdditionalConfigurationArgs
                {
                    Name = "ECS_FARGATE_AGENT_MANAGEMENT",
                    Status = "ENABLED",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.guardduty.Detector;
    import com.pulumi.aws.guardduty.DetectorArgs;
    import com.pulumi.aws.guardduty.MemberDetectorFeature;
    import com.pulumi.aws.guardduty.MemberDetectorFeatureArgs;
    import com.pulumi.aws.guardduty.inputs.MemberDetectorFeatureAdditionalConfigurationArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new Detector("example", DetectorArgs.builder()
                .enable(true)
                .build());
    
            var runtimeMonitoring = new MemberDetectorFeature("runtimeMonitoring", MemberDetectorFeatureArgs.builder()
                .detectorId(example.id())
                .accountId("123456789012")
                .name("RUNTIME_MONITORING")
                .status("ENABLED")
                .additionalConfigurations(            
                    MemberDetectorFeatureAdditionalConfigurationArgs.builder()
                        .name("EKS_ADDON_MANAGEMENT")
                        .status("ENABLED")
                        .build(),
                    MemberDetectorFeatureAdditionalConfigurationArgs.builder()
                        .name("ECS_FARGATE_AGENT_MANAGEMENT")
                        .status("ENABLED")
                        .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:guardduty:Detector
        properties:
          enable: true
      runtimeMonitoring:
        type: aws:guardduty:MemberDetectorFeature
        name: runtime_monitoring
        properties:
          detectorId: ${example.id}
          accountId: '123456789012'
          name: RUNTIME_MONITORING
          status: ENABLED
          additionalConfigurations:
            - name: EKS_ADDON_MANAGEMENT
              status: ENABLED
            - name: ECS_FARGATE_AGENT_MANAGEMENT
              status: ENABLED
    

    Create MemberDetectorFeature Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new MemberDetectorFeature(name: string, args: MemberDetectorFeatureArgs, opts?: CustomResourceOptions);
    @overload
    def MemberDetectorFeature(resource_name: str,
                              args: MemberDetectorFeatureArgs,
                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def MemberDetectorFeature(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              account_id: Optional[str] = None,
                              detector_id: Optional[str] = None,
                              status: Optional[str] = None,
                              additional_configurations: Optional[Sequence[MemberDetectorFeatureAdditionalConfigurationArgs]] = None,
                              name: Optional[str] = None)
    func NewMemberDetectorFeature(ctx *Context, name string, args MemberDetectorFeatureArgs, opts ...ResourceOption) (*MemberDetectorFeature, error)
    public MemberDetectorFeature(string name, MemberDetectorFeatureArgs args, CustomResourceOptions? opts = null)
    public MemberDetectorFeature(String name, MemberDetectorFeatureArgs args)
    public MemberDetectorFeature(String name, MemberDetectorFeatureArgs args, CustomResourceOptions options)
    
    type: aws:guardduty:MemberDetectorFeature
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args MemberDetectorFeatureArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args MemberDetectorFeatureArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args MemberDetectorFeatureArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args MemberDetectorFeatureArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args MemberDetectorFeatureArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var memberDetectorFeatureResource = new Aws.GuardDuty.MemberDetectorFeature("memberDetectorFeatureResource", new()
    {
        AccountId = "string",
        DetectorId = "string",
        Status = "string",
        AdditionalConfigurations = new[]
        {
            new Aws.GuardDuty.Inputs.MemberDetectorFeatureAdditionalConfigurationArgs
            {
                Name = "string",
                Status = "string",
            },
        },
        Name = "string",
    });
    
    example, err := guardduty.NewMemberDetectorFeature(ctx, "memberDetectorFeatureResource", &guardduty.MemberDetectorFeatureArgs{
    	AccountId:  pulumi.String("string"),
    	DetectorId: pulumi.String("string"),
    	Status:     pulumi.String("string"),
    	AdditionalConfigurations: guardduty.MemberDetectorFeatureAdditionalConfigurationArray{
    		&guardduty.MemberDetectorFeatureAdditionalConfigurationArgs{
    			Name:   pulumi.String("string"),
    			Status: pulumi.String("string"),
    		},
    	},
    	Name: pulumi.String("string"),
    })
    
    var memberDetectorFeatureResource = new MemberDetectorFeature("memberDetectorFeatureResource", MemberDetectorFeatureArgs.builder()
        .accountId("string")
        .detectorId("string")
        .status("string")
        .additionalConfigurations(MemberDetectorFeatureAdditionalConfigurationArgs.builder()
            .name("string")
            .status("string")
            .build())
        .name("string")
        .build());
    
    member_detector_feature_resource = aws.guardduty.MemberDetectorFeature("memberDetectorFeatureResource",
        account_id="string",
        detector_id="string",
        status="string",
        additional_configurations=[{
            "name": "string",
            "status": "string",
        }],
        name="string")
    
    const memberDetectorFeatureResource = new aws.guardduty.MemberDetectorFeature("memberDetectorFeatureResource", {
        accountId: "string",
        detectorId: "string",
        status: "string",
        additionalConfigurations: [{
            name: "string",
            status: "string",
        }],
        name: "string",
    });
    
    type: aws:guardduty:MemberDetectorFeature
    properties:
        accountId: string
        additionalConfigurations:
            - name: string
              status: string
        detectorId: string
        name: string
        status: string
    

    MemberDetectorFeature Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The MemberDetectorFeature resource accepts the following input properties:

    AccountId string
    Member account ID to be updated.
    DetectorId string
    Amazon GuardDuty detector ID.
    Status string
    The status of the detector feature. Valid values: ENABLED, DISABLED.
    AdditionalConfigurations List<MemberDetectorFeatureAdditionalConfiguration>
    Additional feature configuration block. See below.
    Name string
    The name of the detector feature. Valid values: S3_DATA_EVENTS, EKS_AUDIT_LOGS, EBS_MALWARE_PROTECTION, RDS_LOGIN_EVENTS, EKS_RUNTIME_MONITORING,RUNTIME_MONITORING, LAMBDA_NETWORK_LOGS.
    AccountId string
    Member account ID to be updated.
    DetectorId string
    Amazon GuardDuty detector ID.
    Status string
    The status of the detector feature. Valid values: ENABLED, DISABLED.
    AdditionalConfigurations []MemberDetectorFeatureAdditionalConfigurationArgs
    Additional feature configuration block. See below.
    Name string
    The name of the detector feature. Valid values: S3_DATA_EVENTS, EKS_AUDIT_LOGS, EBS_MALWARE_PROTECTION, RDS_LOGIN_EVENTS, EKS_RUNTIME_MONITORING,RUNTIME_MONITORING, LAMBDA_NETWORK_LOGS.
    accountId String
    Member account ID to be updated.
    detectorId String
    Amazon GuardDuty detector ID.
    status String
    The status of the detector feature. Valid values: ENABLED, DISABLED.
    additionalConfigurations List<MemberDetectorFeatureAdditionalConfiguration>
    Additional feature configuration block. See below.
    name String
    The name of the detector feature. Valid values: S3_DATA_EVENTS, EKS_AUDIT_LOGS, EBS_MALWARE_PROTECTION, RDS_LOGIN_EVENTS, EKS_RUNTIME_MONITORING,RUNTIME_MONITORING, LAMBDA_NETWORK_LOGS.
    accountId string
    Member account ID to be updated.
    detectorId string
    Amazon GuardDuty detector ID.
    status string
    The status of the detector feature. Valid values: ENABLED, DISABLED.
    additionalConfigurations MemberDetectorFeatureAdditionalConfiguration[]
    Additional feature configuration block. See below.
    name string
    The name of the detector feature. Valid values: S3_DATA_EVENTS, EKS_AUDIT_LOGS, EBS_MALWARE_PROTECTION, RDS_LOGIN_EVENTS, EKS_RUNTIME_MONITORING,RUNTIME_MONITORING, LAMBDA_NETWORK_LOGS.
    account_id str
    Member account ID to be updated.
    detector_id str
    Amazon GuardDuty detector ID.
    status str
    The status of the detector feature. Valid values: ENABLED, DISABLED.
    additional_configurations Sequence[MemberDetectorFeatureAdditionalConfigurationArgs]
    Additional feature configuration block. See below.
    name str
    The name of the detector feature. Valid values: S3_DATA_EVENTS, EKS_AUDIT_LOGS, EBS_MALWARE_PROTECTION, RDS_LOGIN_EVENTS, EKS_RUNTIME_MONITORING,RUNTIME_MONITORING, LAMBDA_NETWORK_LOGS.
    accountId String
    Member account ID to be updated.
    detectorId String
    Amazon GuardDuty detector ID.
    status String
    The status of the detector feature. Valid values: ENABLED, DISABLED.
    additionalConfigurations List<Property Map>
    Additional feature configuration block. See below.
    name String
    The name of the detector feature. Valid values: S3_DATA_EVENTS, EKS_AUDIT_LOGS, EBS_MALWARE_PROTECTION, RDS_LOGIN_EVENTS, EKS_RUNTIME_MONITORING,RUNTIME_MONITORING, LAMBDA_NETWORK_LOGS.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the MemberDetectorFeature resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing MemberDetectorFeature Resource

    Get an existing MemberDetectorFeature resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: MemberDetectorFeatureState, opts?: CustomResourceOptions): MemberDetectorFeature
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            account_id: Optional[str] = None,
            additional_configurations: Optional[Sequence[MemberDetectorFeatureAdditionalConfigurationArgs]] = None,
            detector_id: Optional[str] = None,
            name: Optional[str] = None,
            status: Optional[str] = None) -> MemberDetectorFeature
    func GetMemberDetectorFeature(ctx *Context, name string, id IDInput, state *MemberDetectorFeatureState, opts ...ResourceOption) (*MemberDetectorFeature, error)
    public static MemberDetectorFeature Get(string name, Input<string> id, MemberDetectorFeatureState? state, CustomResourceOptions? opts = null)
    public static MemberDetectorFeature get(String name, Output<String> id, MemberDetectorFeatureState state, CustomResourceOptions options)
    resources:  _:    type: aws:guardduty:MemberDetectorFeature    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AccountId string
    Member account ID to be updated.
    AdditionalConfigurations List<MemberDetectorFeatureAdditionalConfiguration>
    Additional feature configuration block. See below.
    DetectorId string
    Amazon GuardDuty detector ID.
    Name string
    The name of the detector feature. Valid values: S3_DATA_EVENTS, EKS_AUDIT_LOGS, EBS_MALWARE_PROTECTION, RDS_LOGIN_EVENTS, EKS_RUNTIME_MONITORING,RUNTIME_MONITORING, LAMBDA_NETWORK_LOGS.
    Status string
    The status of the detector feature. Valid values: ENABLED, DISABLED.
    AccountId string
    Member account ID to be updated.
    AdditionalConfigurations []MemberDetectorFeatureAdditionalConfigurationArgs
    Additional feature configuration block. See below.
    DetectorId string
    Amazon GuardDuty detector ID.
    Name string
    The name of the detector feature. Valid values: S3_DATA_EVENTS, EKS_AUDIT_LOGS, EBS_MALWARE_PROTECTION, RDS_LOGIN_EVENTS, EKS_RUNTIME_MONITORING,RUNTIME_MONITORING, LAMBDA_NETWORK_LOGS.
    Status string
    The status of the detector feature. Valid values: ENABLED, DISABLED.
    accountId String
    Member account ID to be updated.
    additionalConfigurations List<MemberDetectorFeatureAdditionalConfiguration>
    Additional feature configuration block. See below.
    detectorId String
    Amazon GuardDuty detector ID.
    name String
    The name of the detector feature. Valid values: S3_DATA_EVENTS, EKS_AUDIT_LOGS, EBS_MALWARE_PROTECTION, RDS_LOGIN_EVENTS, EKS_RUNTIME_MONITORING,RUNTIME_MONITORING, LAMBDA_NETWORK_LOGS.
    status String
    The status of the detector feature. Valid values: ENABLED, DISABLED.
    accountId string
    Member account ID to be updated.
    additionalConfigurations MemberDetectorFeatureAdditionalConfiguration[]
    Additional feature configuration block. See below.
    detectorId string
    Amazon GuardDuty detector ID.
    name string
    The name of the detector feature. Valid values: S3_DATA_EVENTS, EKS_AUDIT_LOGS, EBS_MALWARE_PROTECTION, RDS_LOGIN_EVENTS, EKS_RUNTIME_MONITORING,RUNTIME_MONITORING, LAMBDA_NETWORK_LOGS.
    status string
    The status of the detector feature. Valid values: ENABLED, DISABLED.
    account_id str
    Member account ID to be updated.
    additional_configurations Sequence[MemberDetectorFeatureAdditionalConfigurationArgs]
    Additional feature configuration block. See below.
    detector_id str
    Amazon GuardDuty detector ID.
    name str
    The name of the detector feature. Valid values: S3_DATA_EVENTS, EKS_AUDIT_LOGS, EBS_MALWARE_PROTECTION, RDS_LOGIN_EVENTS, EKS_RUNTIME_MONITORING,RUNTIME_MONITORING, LAMBDA_NETWORK_LOGS.
    status str
    The status of the detector feature. Valid values: ENABLED, DISABLED.
    accountId String
    Member account ID to be updated.
    additionalConfigurations List<Property Map>
    Additional feature configuration block. See below.
    detectorId String
    Amazon GuardDuty detector ID.
    name String
    The name of the detector feature. Valid values: S3_DATA_EVENTS, EKS_AUDIT_LOGS, EBS_MALWARE_PROTECTION, RDS_LOGIN_EVENTS, EKS_RUNTIME_MONITORING,RUNTIME_MONITORING, LAMBDA_NETWORK_LOGS.
    status String
    The status of the detector feature. Valid values: ENABLED, DISABLED.

    Supporting Types

    MemberDetectorFeatureAdditionalConfiguration, MemberDetectorFeatureAdditionalConfigurationArgs

    Name string
    The name of the additional configuration. Valid values: EKS_ADDON_MANAGEMENT, ECS_FARGATE_AGENT_MANAGEMENT.
    Status string
    The status of the additional configuration. Valid values: ENABLED, DISABLED.
    Name string
    The name of the additional configuration. Valid values: EKS_ADDON_MANAGEMENT, ECS_FARGATE_AGENT_MANAGEMENT.
    Status string
    The status of the additional configuration. Valid values: ENABLED, DISABLED.
    name String
    The name of the additional configuration. Valid values: EKS_ADDON_MANAGEMENT, ECS_FARGATE_AGENT_MANAGEMENT.
    status String
    The status of the additional configuration. Valid values: ENABLED, DISABLED.
    name string
    The name of the additional configuration. Valid values: EKS_ADDON_MANAGEMENT, ECS_FARGATE_AGENT_MANAGEMENT.
    status string
    The status of the additional configuration. Valid values: ENABLED, DISABLED.
    name str
    The name of the additional configuration. Valid values: EKS_ADDON_MANAGEMENT, ECS_FARGATE_AGENT_MANAGEMENT.
    status str
    The status of the additional configuration. Valid values: ENABLED, DISABLED.
    name String
    The name of the additional configuration. Valid values: EKS_ADDON_MANAGEMENT, ECS_FARGATE_AGENT_MANAGEMENT.
    status String
    The status of the additional configuration. Valid values: ENABLED, DISABLED.

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo
    AWS v6.72.0 published on Tuesday, Mar 11, 2025 by Pulumi