Class EventConnectionAuthParameters
- java.lang.Object
-
- com.pulumi.aws.cloudwatch.outputs.EventConnectionAuthParameters
-
public final class EventConnectionAuthParameters extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
EventConnectionAuthParameters.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Optional<EventConnectionAuthParametersApiKey>
apiKey()
java.util.Optional<EventConnectionAuthParametersBasic>
basic()
static EventConnectionAuthParameters.Builder
builder()
static EventConnectionAuthParameters.Builder
builder(EventConnectionAuthParameters defaults)
java.util.Optional<EventConnectionAuthParametersInvocationHttpParameters>
invocationHttpParameters()
java.util.Optional<EventConnectionAuthParametersOauth>
oauth()
-
-
-
Method Detail
-
apiKey
public java.util.Optional<EventConnectionAuthParametersApiKey> apiKey()
- Returns:
- Parameters used for API_KEY authorization. An API key to include in the header for each authentication request. A maximum of 1 are allowed. Conflicts with `basic` and `oauth`. Documented below.
-
basic
public java.util.Optional<EventConnectionAuthParametersBasic> basic()
- Returns:
- Parameters used for BASIC authorization. A maximum of 1 are allowed. Conflicts with `api_key` and `oauth`. Documented below.
-
invocationHttpParameters
public java.util.Optional<EventConnectionAuthParametersInvocationHttpParameters> invocationHttpParameters()
- Returns:
- Invocation Http Parameters are additional credentials used to sign each Invocation of the ApiDestination created from this Connection. If the ApiDestination Rule Target has additional HttpParameters, the values will be merged together, with the Connection Invocation Http Parameters taking precedence. Secret values are stored and managed by AWS Secrets Manager. A maximum of 1 are allowed. Documented below.
-
oauth
public java.util.Optional<EventConnectionAuthParametersOauth> oauth()
- Returns:
- Parameters used for OAUTH_CLIENT_CREDENTIALS authorization. A maximum of 1 are allowed. Conflicts with `basic` and `api_key`. Documented below.
-
builder
public static EventConnectionAuthParameters.Builder builder()
-
builder
public static EventConnectionAuthParameters.Builder builder(EventConnectionAuthParameters defaults)
-
-