LogpushOwnershipChallengeArgs

data class LogpushOwnershipChallengeArgs(val accountId: Output<String>? = null, val destinationConf: Output<String>? = null, val zoneId: Output<String>? = null) : ConvertibleToJava<LogpushOwnershipChallengeArgs>

Provides a resource which manages Cloudflare Logpush ownership challenges to use in a Logpush Job. On it's own, doesn't do much however this resource should be used in conjunction to create Logpush jobs.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.cloudflare.LogpushOwnershipChallenge;
import com.pulumi.cloudflare.LogpushOwnershipChallengeArgs;
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 LogpushOwnershipChallenge("example", LogpushOwnershipChallengeArgs.builder()
.destinationConf("s3://my-bucket-path?region=us-west-2")
.zoneId("0da42c8d2132a9ddaf714f9e7c920711")
.build());
}
}

Constructors

Link copied to clipboard
constructor(accountId: Output<String>? = null, destinationConf: Output<String>? = null, zoneId: Output<String>? = null)

Properties

Link copied to clipboard
val accountId: Output<String>? = null

The account identifier to target for the resource. Must provide only one of account_id, zone_id.

Link copied to clipboard
val destinationConf: Output<String>? = null

Uniquely identifies a resource (such as an s3 bucket) where data will be pushed. Additional configuration parameters supported by the destination may be included. See Logpush destination documentation. Modifying this attribute will force creation of a new resource.

Link copied to clipboard
val zoneId: Output<String>? = null

The zone identifier to target for the resource. Must provide only one of account_id, zone_id.

Functions

Link copied to clipboard
open override fun toJava(): LogpushOwnershipChallengeArgs