public static interface CfnDataSource.AuthorizationConfigProperty
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() |
java.lang.String |
getAuthorizationType()
The authorization type that the HTTP endpoint requires.
|
default java.lang.Object |
getAwsIamConfig()
The AWS Identity and Access Management settings.
|
java.lang.String getAuthorizationType()
default java.lang.Object getAwsIamConfig()
static CfnDataSource.AuthorizationConfigProperty.Builder builder()