@Stability(value=Stable)
public static interface CfnDataSource.AuthorizationConfigProperty
extends software.amazon.jsii.JsiiSerializable
AuthorizationConfig is a property of the AWS AppSync DataSource HttpConfig property type.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.appsync.*;
AuthorizationConfigProperty authorizationConfigProperty = AuthorizationConfigProperty.builder()
.authorizationType("authorizationType")
// the properties below are optional
.awsIamConfig(AwsIamConfigProperty.builder()
.signingRegion("signingRegion")
.signingServiceName("signingServiceName")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDataSource.AuthorizationConfigProperty.Builder
A builder for
CfnDataSource.AuthorizationConfigProperty |
static class |
CfnDataSource.AuthorizationConfigProperty.Jsii$Proxy
An implementation for
CfnDataSource.AuthorizationConfigProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDataSource.AuthorizationConfigProperty.Builder |
builder() |
String |
getAuthorizationType()
The authorization type that the HTTP endpoint requires.
|
default Object |
getAwsIamConfig()
The AWS Identity and Access Management settings.
|
@Stability(value=Stable) @NotNull String getAuthorizationType()
@Stability(value=Stable) @Nullable default Object getAwsIamConfig()
@Stability(value=Stable) static CfnDataSource.AuthorizationConfigProperty.Builder builder()
Copyright © 2022. All rights reserved.