Viewing docs for AWS v5.43.0 (Older version)
published on Tuesday, Mar 10, 2026 by Pulumi
published on Tuesday, Mar 10, 2026 by Pulumi
Viewing docs for AWS v5.43.0 (Older version)
published on Tuesday, Mar 10, 2026 by Pulumi
published on Tuesday, Mar 10, 2026 by Pulumi
Retrieve information about a GuardDuty detector.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = Aws.GuardDuty.GetDetector.Invoke();
});
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/guardduty"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := guardduty.LookupDetector(ctx, nil, nil)
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.guardduty.GuarddutyFunctions;
import com.pulumi.aws.guardduty.inputs.GetDetectorArgs;
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) {
final var example = GuarddutyFunctions.getDetector();
}
}
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = aws.guardduty.getDetector({});
import pulumi
import pulumi_aws as aws
example = aws.guardduty.get_detector()
variables:
example:
fn::invoke:
Function: aws:guardduty:getDetector
Arguments: {}
Using getDetector
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getDetector(args: GetDetectorArgs, opts?: InvokeOptions): Promise<GetDetectorResult>
function getDetectorOutput(args: GetDetectorOutputArgs, opts?: InvokeOptions): Output<GetDetectorResult>def get_detector(id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetDetectorResult
def get_detector_output(id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetDetectorResult]func LookupDetector(ctx *Context, args *LookupDetectorArgs, opts ...InvokeOption) (*LookupDetectorResult, error)
func LookupDetectorOutput(ctx *Context, args *LookupDetectorOutputArgs, opts ...InvokeOption) LookupDetectorResultOutput> Note: This function is named LookupDetector in the Go SDK.
public static class GetDetector
{
public static Task<GetDetectorResult> InvokeAsync(GetDetectorArgs args, InvokeOptions? opts = null)
public static Output<GetDetectorResult> Invoke(GetDetectorInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetDetectorResult> getDetector(GetDetectorArgs args, InvokeOptions options)
public static Output<GetDetectorResult> getDetector(GetDetectorArgs args, InvokeOptions options)
fn::invoke:
function: aws:guardduty/getDetector:getDetector
arguments:
# arguments dictionaryThe following arguments are supported:
- Id string
- ID of the detector.
- Id string
- ID of the detector.
- id String
- ID of the detector.
- id string
- ID of the detector.
- id str
- ID of the detector.
- id String
- ID of the detector.
getDetector Result
The following output properties are available:
- Finding
Publishing stringFrequency - The frequency of notifications sent about subsequent finding occurrences.
- Id string
- Service
Role stringArn - Service-linked role that grants GuardDuty access to the resources in the AWS account.
- Status string
- Current status of the detector.
- Finding
Publishing stringFrequency - The frequency of notifications sent about subsequent finding occurrences.
- Id string
- Service
Role stringArn - Service-linked role that grants GuardDuty access to the resources in the AWS account.
- Status string
- Current status of the detector.
- finding
Publishing StringFrequency - The frequency of notifications sent about subsequent finding occurrences.
- id String
- service
Role StringArn - Service-linked role that grants GuardDuty access to the resources in the AWS account.
- status String
- Current status of the detector.
- finding
Publishing stringFrequency - The frequency of notifications sent about subsequent finding occurrences.
- id string
- service
Role stringArn - Service-linked role that grants GuardDuty access to the resources in the AWS account.
- status string
- Current status of the detector.
- finding_
publishing_ strfrequency - The frequency of notifications sent about subsequent finding occurrences.
- id str
- service_
role_ strarn - Service-linked role that grants GuardDuty access to the resources in the AWS account.
- status str
- Current status of the detector.
- finding
Publishing StringFrequency - The frequency of notifications sent about subsequent finding occurrences.
- id String
- service
Role StringArn - Service-linked role that grants GuardDuty access to the resources in the AWS account.
- status String
- Current status of the detector.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
awsTerraform Provider.
Viewing docs for AWS v5.43.0 (Older version)
published on Tuesday, Mar 10, 2026 by Pulumi
published on Tuesday, Mar 10, 2026 by Pulumi
