software.aws.awsprototypingsdk.openapigateway.AuthorizerProps Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of open-api-gateway Show documentation
Show all versions of open-api-gateway Show documentation
@aws-prototyping-sdk/open-api-gateway
package software.aws.awsprototypingsdk.openapigateway;
/**
* (experimental) Properties for an authorizer.
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.82.0 (build 2d2ddd7)", date = "2023-08-15T05:38:04.565Z")
@software.amazon.jsii.Jsii(module = software.aws.awsprototypingsdk.openapigateway.$Module.class, fqn = "@aws-prototyping-sdk/open-api-gateway.AuthorizerProps")
@software.amazon.jsii.Jsii.Proxy(AuthorizerProps.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public interface AuthorizerProps extends software.amazon.jsii.JsiiSerializable {
/**
* (experimental) The type of the authorizer.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@org.jetbrains.annotations.NotNull software.amazon.awscdk.services.apigateway.AuthorizationType getAuthorizationType();
/**
* (experimental) The unique identifier for the authorizer.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@org.jetbrains.annotations.NotNull java.lang.String getAuthorizerId();
/**
* (experimental) Scopes for the authorizer, if any.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
default @org.jetbrains.annotations.Nullable java.util.List getAuthorizationScopes() {
return null;
}
/**
* @return a {@link Builder} of {@link AuthorizerProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link AuthorizerProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public static final class Builder implements software.amazon.jsii.Builder {
software.amazon.awscdk.services.apigateway.AuthorizationType authorizationType;
java.lang.String authorizerId;
java.util.List authorizationScopes;
/**
* Sets the value of {@link AuthorizerProps#getAuthorizationType}
* @param authorizationType The type of the authorizer. This parameter is required.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder authorizationType(software.amazon.awscdk.services.apigateway.AuthorizationType authorizationType) {
this.authorizationType = authorizationType;
return this;
}
/**
* Sets the value of {@link AuthorizerProps#getAuthorizerId}
* @param authorizerId The unique identifier for the authorizer. This parameter is required.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder authorizerId(java.lang.String authorizerId) {
this.authorizerId = authorizerId;
return this;
}
/**
* Sets the value of {@link AuthorizerProps#getAuthorizationScopes}
* @param authorizationScopes Scopes for the authorizer, if any.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder authorizationScopes(java.util.List authorizationScopes) {
this.authorizationScopes = authorizationScopes;
return this;
}
/**
* Builds the configured instance.
* @return a new instance of {@link AuthorizerProps}
* @throws NullPointerException if any required attribute was not provided
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@Override
public AuthorizerProps build() {
return new Jsii$Proxy(this);
}
}
/**
* An implementation for {@link AuthorizerProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@software.amazon.jsii.Internal
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements AuthorizerProps {
private final software.amazon.awscdk.services.apigateway.AuthorizationType authorizationType;
private final java.lang.String authorizerId;
private final java.util.List authorizationScopes;
/**
* Constructor that initializes the object based on values retrieved from the JsiiObject.
* @param objRef Reference to the JSII managed object.
*/
protected Jsii$Proxy(final software.amazon.jsii.JsiiObjectRef objRef) {
super(objRef);
this.authorizationType = software.amazon.jsii.Kernel.get(this, "authorizationType", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.apigateway.AuthorizationType.class));
this.authorizerId = software.amazon.jsii.Kernel.get(this, "authorizerId", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
this.authorizationScopes = software.amazon.jsii.Kernel.get(this, "authorizationScopes", software.amazon.jsii.NativeType.listOf(software.amazon.jsii.NativeType.forClass(java.lang.String.class)));
}
/**
* Constructor that initializes the object based on literal property values passed by the {@link Builder}.
*/
protected Jsii$Proxy(final Builder builder) {
super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
this.authorizationType = java.util.Objects.requireNonNull(builder.authorizationType, "authorizationType is required");
this.authorizerId = java.util.Objects.requireNonNull(builder.authorizerId, "authorizerId is required");
this.authorizationScopes = builder.authorizationScopes;
}
@Override
public final software.amazon.awscdk.services.apigateway.AuthorizationType getAuthorizationType() {
return this.authorizationType;
}
@Override
public final java.lang.String getAuthorizerId() {
return this.authorizerId;
}
@Override
public final java.util.List getAuthorizationScopes() {
return this.authorizationScopes;
}
@Override
@software.amazon.jsii.Internal
public com.fasterxml.jackson.databind.JsonNode $jsii$toJson() {
final com.fasterxml.jackson.databind.ObjectMapper om = software.amazon.jsii.JsiiObjectMapper.INSTANCE;
final com.fasterxml.jackson.databind.node.ObjectNode data = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
data.set("authorizationType", om.valueToTree(this.getAuthorizationType()));
data.set("authorizerId", om.valueToTree(this.getAuthorizerId()));
if (this.getAuthorizationScopes() != null) {
data.set("authorizationScopes", om.valueToTree(this.getAuthorizationScopes()));
}
final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
struct.set("fqn", om.valueToTree("@aws-prototyping-sdk/open-api-gateway.AuthorizerProps"));
struct.set("data", data);
final com.fasterxml.jackson.databind.node.ObjectNode obj = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
obj.set("$jsii.struct", struct);
return obj;
}
@Override
public final boolean equals(final Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
AuthorizerProps.Jsii$Proxy that = (AuthorizerProps.Jsii$Proxy) o;
if (!authorizationType.equals(that.authorizationType)) return false;
if (!authorizerId.equals(that.authorizerId)) return false;
return this.authorizationScopes != null ? this.authorizationScopes.equals(that.authorizationScopes) : that.authorizationScopes == null;
}
@Override
public final int hashCode() {
int result = this.authorizationType.hashCode();
result = 31 * result + (this.authorizerId.hashCode());
result = 31 * result + (this.authorizationScopes != null ? this.authorizationScopes.hashCode() : 0);
return result;
}
}
}