@Stability(value=Stable)
public static interface CfnDataSource.HttpConfigProperty
extends software.amazon.jsii.JsiiSerializable
HttpConfig is a property of the AWS::AppSync::DataSource resource.
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.*;
HttpConfigProperty httpConfigProperty = HttpConfigProperty.builder()
.endpoint("endpoint")
// the properties below are optional
.authorizationConfig(AuthorizationConfigProperty.builder()
.authorizationType("authorizationType")
// the properties below are optional
.awsIamConfig(AwsIamConfigProperty.builder()
.signingRegion("signingRegion")
.signingServiceName("signingServiceName")
.build())
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDataSource.HttpConfigProperty.Builder
A builder for
CfnDataSource.HttpConfigProperty |
static class |
CfnDataSource.HttpConfigProperty.Jsii$Proxy
An implementation for
CfnDataSource.HttpConfigProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDataSource.HttpConfigProperty.Builder |
builder() |
default Object |
getAuthorizationConfig()
The authorization configuration.
|
String |
getEndpoint()
The endpoint.
|
@Stability(value=Stable) @NotNull String getEndpoint()
@Stability(value=Stable) @Nullable default Object getAuthorizationConfig()
@Stability(value=Stable) static CfnDataSource.HttpConfigProperty.Builder builder()
Copyright © 2022. All rights reserved.