com.pulumi.aws.appflow.inputs.ConnectorProfileConnectorProfileConfigConnectorProfileCredentialsDatadogArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws Show documentation
Show all versions of aws Show documentation
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
// *** 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.appflow.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class ConnectorProfileConnectorProfileConfigConnectorProfileCredentialsDatadogArgs extends com.pulumi.resources.ResourceArgs {
public static final ConnectorProfileConnectorProfileConfigConnectorProfileCredentialsDatadogArgs Empty = new ConnectorProfileConnectorProfileConfigConnectorProfileCredentialsDatadogArgs();
@Import(name="apiKey", required=true)
private Output apiKey;
public Output apiKey() {
return this.apiKey;
}
/**
* Application keys, in conjunction with your API key, give you full access to Datadog’s programmatic API. Application keys are associated with the user account that created them. The application key is used to log all requests made to the API.
*
*/
@Import(name="applicationKey", required=true)
private Output applicationKey;
/**
* @return Application keys, in conjunction with your API key, give you full access to Datadog’s programmatic API. Application keys are associated with the user account that created them. The application key is used to log all requests made to the API.
*
*/
public Output applicationKey() {
return this.applicationKey;
}
private ConnectorProfileConnectorProfileConfigConnectorProfileCredentialsDatadogArgs() {}
private ConnectorProfileConnectorProfileConfigConnectorProfileCredentialsDatadogArgs(ConnectorProfileConnectorProfileConfigConnectorProfileCredentialsDatadogArgs $) {
this.apiKey = $.apiKey;
this.applicationKey = $.applicationKey;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ConnectorProfileConnectorProfileConfigConnectorProfileCredentialsDatadogArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private ConnectorProfileConnectorProfileConfigConnectorProfileCredentialsDatadogArgs $;
public Builder() {
$ = new ConnectorProfileConnectorProfileConfigConnectorProfileCredentialsDatadogArgs();
}
public Builder(ConnectorProfileConnectorProfileConfigConnectorProfileCredentialsDatadogArgs defaults) {
$ = new ConnectorProfileConnectorProfileConfigConnectorProfileCredentialsDatadogArgs(Objects.requireNonNull(defaults));
}
public Builder apiKey(Output apiKey) {
$.apiKey = apiKey;
return this;
}
public Builder apiKey(String apiKey) {
return apiKey(Output.of(apiKey));
}
/**
* @param applicationKey Application keys, in conjunction with your API key, give you full access to Datadog’s programmatic API. Application keys are associated with the user account that created them. The application key is used to log all requests made to the API.
*
* @return builder
*
*/
public Builder applicationKey(Output applicationKey) {
$.applicationKey = applicationKey;
return this;
}
/**
* @param applicationKey Application keys, in conjunction with your API key, give you full access to Datadog’s programmatic API. Application keys are associated with the user account that created them. The application key is used to log all requests made to the API.
*
* @return builder
*
*/
public Builder applicationKey(String applicationKey) {
return applicationKey(Output.of(applicationKey));
}
public ConnectorProfileConnectorProfileConfigConnectorProfileCredentialsDatadogArgs build() {
if ($.apiKey == null) {
throw new MissingRequiredPropertyException("ConnectorProfileConnectorProfileConfigConnectorProfileCredentialsDatadogArgs", "apiKey");
}
if ($.applicationKey == null) {
throw new MissingRequiredPropertyException("ConnectorProfileConnectorProfileConfigConnectorProfileCredentialsDatadogArgs", "applicationKey");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy