Class AuthorizersTrait
java.lang.Object
software.amazon.smithy.model.traits.AbstractTrait
software.amazon.smithy.aws.apigateway.traits.AuthorizersTrait
- All Implemented Interfaces:
FromSourceLocation,ToNode,ToShapeId,Trait,ToSmithyBuilder<AuthorizersTrait>
public final class AuthorizersTrait
extends AbstractTrait
implements ToSmithyBuilder<AuthorizersTrait>
Defines a map of API Gateway
x-amazon-apigateway-authorizer
values that correspond to Smithy authorization definitions.
The key in each key-value pair of the aws.apigateway#authorizers
trait is an arbitrary name that's used to associate authorizer definitions
to operations. The scheme property of an authorizer must correspond
to the name of an authorization scheme of the service the trait is bound to.
When used to generate and OpenAPI model, the aws.apigateway#authorizers
trait is used to add the x-amazon-apigateway-authorizer OpenAPI
extension to the generated security scheme.
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classBuilds anAuthorizersTrait.static final class -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic AuthorizersTrait.Builderbuilder()Creates a builder for the trait.protected NodeThe result of toNode is used for hashCodes and equality.getAuthorizer(String name) Gets a specific authorizer by name.Gets an immutable map of authorizer names to their definitions.Take this object and create a builder that contains all of the current property values of this object.Methods inherited from class software.amazon.smithy.model.traits.AbstractTrait
equals, getSourceLocation, hashCode, setNodeCache, toNode, toShapeId, toStringMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface software.amazon.smithy.model.traits.Trait
isSynthetic
-
Field Details
-
ID
-
-
Method Details
-
builder
Creates a builder for the trait.- Returns:
- Returns the created builder.
-
getAuthorizer
Gets a specific authorizer by name.- Parameters:
name- Name of the authorizer to get.- Returns:
- Returns the optionally found authorizer.
-
getAuthorizers
Gets an immutable map of authorizer names to their definitions.- Returns:
- Returns the authorizers.
-
toBuilder
Description copied from interface:ToSmithyBuilderTake this object and create a builder that contains all of the current property values of this object.- Specified by:
toBuilderin interfaceToSmithyBuilder<AuthorizersTrait>- Returns:
- a builder for type T
-
createNode
Description copied from class:AbstractTraitThe result of toNode is used for hashCodes and equality. Subclasses must implement createNode to turn the trait into a Node. This is then cached for subsequent retrievals.- Specified by:
createNodein classAbstractTrait- Returns:
- Returns the trait as a node.
-