Interface CfnDataSource.AuthorizationConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSource.AuthorizationConfigProperty.Jsii$Proxy
- Enclosing class:
CfnDataSource
@Stability(Stable)
public static interface CfnDataSource.AuthorizationConfigProperty
extends software.amazon.jsii.JsiiSerializable
The
AuthorizationConfig
property type specifies the authorization type and configuration for an AWS AppSync http data source.
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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDataSource.AuthorizationConfigProperty
static final class
An implementation forCfnDataSource.AuthorizationConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAuthorizationType
The authorization type that the HTTP endpoint requires.- AWS_IAM : The authorization type is Signature Version 4 (SigV4).
- See Also:
-
getAwsIamConfig
The AWS Identity and Access Management settings.- See Also:
-
builder
-