com.pulumi.aws.cloudwatch.EventConnectionArgs 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.cloudwatch;
import com.pulumi.aws.cloudwatch.inputs.EventConnectionAuthParametersArgs;
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 EventConnectionArgs extends com.pulumi.resources.ResourceArgs {
public static final EventConnectionArgs Empty = new EventConnectionArgs();
/**
* Parameters used for authorization. A maximum of 1 are allowed. Documented below.
*
*/
@Import(name="authParameters", required=true)
private Output authParameters;
/**
* @return Parameters used for authorization. A maximum of 1 are allowed. Documented below.
*
*/
public Output authParameters() {
return this.authParameters;
}
/**
* Choose the type of authorization to use for the connection. One of `API_KEY`,`BASIC`,`OAUTH_CLIENT_CREDENTIALS`.
*
*/
@Import(name="authorizationType", required=true)
private Output authorizationType;
/**
* @return Choose the type of authorization to use for the connection. One of `API_KEY`,`BASIC`,`OAUTH_CLIENT_CREDENTIALS`.
*
*/
public Output authorizationType() {
return this.authorizationType;
}
/**
* Enter a description for the connection. Maximum of 512 characters.
*
*/
@Import(name="description")
private @Nullable Output description;
/**
* @return Enter a description for the connection. Maximum of 512 characters.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy