Enum Class AuthorizationType
- All Implemented Interfaces:
Serializable,Comparable<AuthorizationType>,java.lang.constant.Constable
@Generated(value="jsii-pacmak/1.110.0 (build 336b265)",
date="2025-04-22T23:08:07.289Z")
@Stability(Stable)
public enum AuthorizationType
extends Enum<AuthorizationType>
enum with all possible values for AppSync authorization type.
Example:
import software.amazon.awscdk.services.iam.*;
import software.amazon.awscdk.services.appsync.*;
IGraphqlApi api = GraphqlApi.fromGraphqlApiAttributes(this, "ImportedAPI", GraphqlApiAttributes.builder()
.graphqlApiId("<api-id>")
.graphqlApiArn("<api-arn>")
.graphQLEndpointArn("<api-endpoint-arn>")
.visibility(Visibility.GLOBAL)
.modes(List.of(AuthorizationType.IAM))
.build());
Rule rule = Rule.Builder.create(this, "Rule").schedule(Schedule.rate(Duration.minutes(1))).build();
Role role = Role.Builder.create(this, "Role").assumedBy(new ServicePrincipal("events.amazonaws.com")).build();
// allow EventBridge to use the `publish` mutation
api.grantMutation(role, "publish");
rule.addTarget(AppSync.Builder.create(api)
.graphQLOperation("mutation Publish($message: String!){ publish(message: $message) { message } }")
.variables(RuleTargetInput.fromObject(Map.of(
"message", "hello world")))
.eventRole(role)
.build());
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic AuthorizationTypeReturns the enum constant of this class with the specified name.static AuthorizationType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
API_KEY
API Key authorization type. -
IAM
AWS IAM authorization type.Can be used with Cognito Identity Pool federated credentials
-
USER_POOL
Cognito User Pool authorization type. -
OIDC
OpenID Connect authorization type. -
LAMBDA
Lambda authorization type.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-