
com.pulumi.aws.securityhub.ActionTargetArgs Maven / Gradle / Ivy
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.aws.securityhub;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class ActionTargetArgs extends com.pulumi.resources.ResourceArgs {
public static final ActionTargetArgs Empty = new ActionTargetArgs();
/**
* The name of the custom action target.
*
*/
@Import(name="description", required=true)
private Output description;
/**
* @return The name of the custom action target.
*
*/
public Output description() {
return this.description;
}
/**
* The ID for the custom action target.
*
*/
@Import(name="identifier", required=true)
private Output identifier;
/**
* @return The ID for the custom action target.
*
*/
public Output identifier() {
return this.identifier;
}
/**
* The description for the custom action target.
*
*/
@Import(name="name")
private @Nullable Output name;
/**
* @return The description for the custom action target.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy