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
Modifier and TypeClassDescriptionstatic final class
Builds anAuthorizersTrait
.static final class
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic AuthorizersTrait.Builder
builder()
Creates a builder for the trait.protected Node
The 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, toString
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods 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:ToSmithyBuilder
Take this object and create a builder that contains all of the current property values of this object.- Specified by:
toBuilder
in interfaceToSmithyBuilder<AuthorizersTrait>
- Returns:
- a builder for type T
-
createNode
Description copied from class:AbstractTrait
The 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:
createNode
in classAbstractTrait
- Returns:
- Returns the trait as a node.
-