All Downloads are FREE. Search and download functionalities are using the official Maven repository.

software.amazon.awssdk.services.lambda.model.CreateFunctionUrlConfigResponse Maven / Gradle / Ivy

/*
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
 * the License. A copy of the License is located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 */

package software.amazon.awssdk.services.lambda.model;

import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import java.util.function.BiConsumer;
import java.util.function.Consumer;
import java.util.function.Function;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.core.SdkField;
import software.amazon.awssdk.core.SdkPojo;
import software.amazon.awssdk.core.protocol.MarshallLocation;
import software.amazon.awssdk.core.protocol.MarshallingType;
import software.amazon.awssdk.core.traits.LocationTrait;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;

/**
 */
@Generated("software.amazon.awssdk:codegen")
public final class CreateFunctionUrlConfigResponse extends LambdaResponse implements
        ToCopyableBuilder {
    private static final SdkField FUNCTION_URL_FIELD = SdkField. builder(MarshallingType.STRING)
            .memberName("FunctionUrl").getter(getter(CreateFunctionUrlConfigResponse::functionUrl))
            .setter(setter(Builder::functionUrl))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("FunctionUrl").build()).build();

    private static final SdkField FUNCTION_ARN_FIELD = SdkField. builder(MarshallingType.STRING)
            .memberName("FunctionArn").getter(getter(CreateFunctionUrlConfigResponse::functionArn))
            .setter(setter(Builder::functionArn))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("FunctionArn").build()).build();

    private static final SdkField AUTH_TYPE_FIELD = SdkField. builder(MarshallingType.STRING)
            .memberName("AuthType").getter(getter(CreateFunctionUrlConfigResponse::authTypeAsString))
            .setter(setter(Builder::authType))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("AuthType").build()).build();

    private static final SdkField CORS_FIELD = SdkField. builder(MarshallingType.SDK_POJO).memberName("Cors")
            .getter(getter(CreateFunctionUrlConfigResponse::cors)).setter(setter(Builder::cors)).constructor(Cors::builder)
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Cors").build()).build();

    private static final SdkField CREATION_TIME_FIELD = SdkField. builder(MarshallingType.STRING)
            .memberName("CreationTime").getter(getter(CreateFunctionUrlConfigResponse::creationTime))
            .setter(setter(Builder::creationTime))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("CreationTime").build()).build();

    private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(FUNCTION_URL_FIELD,
            FUNCTION_ARN_FIELD, AUTH_TYPE_FIELD, CORS_FIELD, CREATION_TIME_FIELD));

    private final String functionUrl;

    private final String functionArn;

    private final String authType;

    private final Cors cors;

    private final String creationTime;

    private CreateFunctionUrlConfigResponse(BuilderImpl builder) {
        super(builder);
        this.functionUrl = builder.functionUrl;
        this.functionArn = builder.functionArn;
        this.authType = builder.authType;
        this.cors = builder.cors;
        this.creationTime = builder.creationTime;
    }

    /**
     * 

* The HTTP URL endpoint for your function. *

* * @return The HTTP URL endpoint for your function. */ public final String functionUrl() { return functionUrl; } /** *

* The Amazon Resource Name (ARN) of your function. *

* * @return The Amazon Resource Name (ARN) of your function. */ public final String functionArn() { return functionArn; } /** *

* The type of authentication that your function URL uses. Set to AWS_IAM if you want to restrict * access to authenticated IAM users only. Set to NONE if you want to bypass IAM authentication to * create a public endpoint. For more information, see Security and auth model for Lambda function * URLs. *

*

* If the service returns an enum value that is not available in the current SDK version, {@link #authType} will * return {@link FunctionUrlAuthType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available * from {@link #authTypeAsString}. *

* * @return The type of authentication that your function URL uses. Set to AWS_IAM if you want to * restrict access to authenticated IAM users only. Set to NONE if you want to bypass IAM * authentication to create a public endpoint. For more information, see Security and auth model for Lambda * function URLs. * @see FunctionUrlAuthType */ public final FunctionUrlAuthType authType() { return FunctionUrlAuthType.fromValue(authType); } /** *

* The type of authentication that your function URL uses. Set to AWS_IAM if you want to restrict * access to authenticated IAM users only. Set to NONE if you want to bypass IAM authentication to * create a public endpoint. For more information, see Security and auth model for Lambda function * URLs. *

*

* If the service returns an enum value that is not available in the current SDK version, {@link #authType} will * return {@link FunctionUrlAuthType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available * from {@link #authTypeAsString}. *

* * @return The type of authentication that your function URL uses. Set to AWS_IAM if you want to * restrict access to authenticated IAM users only. Set to NONE if you want to bypass IAM * authentication to create a public endpoint. For more information, see Security and auth model for Lambda * function URLs. * @see FunctionUrlAuthType */ public final String authTypeAsString() { return authType; } /** *

* The cross-origin resource sharing (CORS) * settings for your function URL. *

* * @return The cross-origin resource sharing * (CORS) settings for your function URL. */ public final Cors cors() { return cors; } /** *

* When the function URL was created, in ISO-8601 format * (YYYY-MM-DDThh:mm:ss.sTZD). *

* * @return When the function URL was created, in ISO-8601 format * (YYYY-MM-DDThh:mm:ss.sTZD). */ public final String creationTime() { return creationTime; } @Override public Builder toBuilder() { return new BuilderImpl(this); } public static Builder builder() { return new BuilderImpl(); } public static Class serializableBuilderClass() { return BuilderImpl.class; } @Override public final int hashCode() { int hashCode = 1; hashCode = 31 * hashCode + super.hashCode(); hashCode = 31 * hashCode + Objects.hashCode(functionUrl()); hashCode = 31 * hashCode + Objects.hashCode(functionArn()); hashCode = 31 * hashCode + Objects.hashCode(authTypeAsString()); hashCode = 31 * hashCode + Objects.hashCode(cors()); hashCode = 31 * hashCode + Objects.hashCode(creationTime()); return hashCode; } @Override public final boolean equals(Object obj) { return super.equals(obj) && equalsBySdkFields(obj); } @Override public final boolean equalsBySdkFields(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (!(obj instanceof CreateFunctionUrlConfigResponse)) { return false; } CreateFunctionUrlConfigResponse other = (CreateFunctionUrlConfigResponse) obj; return Objects.equals(functionUrl(), other.functionUrl()) && Objects.equals(functionArn(), other.functionArn()) && Objects.equals(authTypeAsString(), other.authTypeAsString()) && Objects.equals(cors(), other.cors()) && Objects.equals(creationTime(), other.creationTime()); } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. */ @Override public final String toString() { return ToString.builder("CreateFunctionUrlConfigResponse").add("FunctionUrl", functionUrl()) .add("FunctionArn", functionArn()).add("AuthType", authTypeAsString()).add("Cors", cors()) .add("CreationTime", creationTime()).build(); } public final Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "FunctionUrl": return Optional.ofNullable(clazz.cast(functionUrl())); case "FunctionArn": return Optional.ofNullable(clazz.cast(functionArn())); case "AuthType": return Optional.ofNullable(clazz.cast(authTypeAsString())); case "Cors": return Optional.ofNullable(clazz.cast(cors())); case "CreationTime": return Optional.ofNullable(clazz.cast(creationTime())); default: return Optional.empty(); } } @Override public final List> sdkFields() { return SDK_FIELDS; } private static Function getter(Function g) { return obj -> g.apply((CreateFunctionUrlConfigResponse) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends LambdaResponse.Builder, SdkPojo, CopyableBuilder { /** *

* The HTTP URL endpoint for your function. *

* * @param functionUrl * The HTTP URL endpoint for your function. * @return Returns a reference to this object so that method calls can be chained together. */ Builder functionUrl(String functionUrl); /** *

* The Amazon Resource Name (ARN) of your function. *

* * @param functionArn * The Amazon Resource Name (ARN) of your function. * @return Returns a reference to this object so that method calls can be chained together. */ Builder functionArn(String functionArn); /** *

* The type of authentication that your function URL uses. Set to AWS_IAM if you want to restrict * access to authenticated IAM users only. Set to NONE if you want to bypass IAM authentication to * create a public endpoint. For more information, see Security and auth model for Lambda * function URLs. *

* * @param authType * The type of authentication that your function URL uses. Set to AWS_IAM if you want to * restrict access to authenticated IAM users only. Set to NONE if you want to bypass IAM * authentication to create a public endpoint. For more information, see Security and auth model for Lambda * function URLs. * @see FunctionUrlAuthType * @return Returns a reference to this object so that method calls can be chained together. * @see FunctionUrlAuthType */ Builder authType(String authType); /** *

* The type of authentication that your function URL uses. Set to AWS_IAM if you want to restrict * access to authenticated IAM users only. Set to NONE if you want to bypass IAM authentication to * create a public endpoint. For more information, see Security and auth model for Lambda * function URLs. *

* * @param authType * The type of authentication that your function URL uses. Set to AWS_IAM if you want to * restrict access to authenticated IAM users only. Set to NONE if you want to bypass IAM * authentication to create a public endpoint. For more information, see Security and auth model for Lambda * function URLs. * @see FunctionUrlAuthType * @return Returns a reference to this object so that method calls can be chained together. * @see FunctionUrlAuthType */ Builder authType(FunctionUrlAuthType authType); /** *

* The cross-origin resource sharing (CORS) * settings for your function URL. *

* * @param cors * The cross-origin resource sharing * (CORS) settings for your function URL. * @return Returns a reference to this object so that method calls can be chained together. */ Builder cors(Cors cors); /** *

* The cross-origin resource sharing (CORS) * settings for your function URL. *

* This is a convenience method that creates an instance of the {@link Cors.Builder} avoiding the need to create * one manually via {@link Cors#builder()}. * *

* When the {@link Consumer} completes, {@link Cors.Builder#build()} is called immediately and its result is * passed to {@link #cors(Cors)}. * * @param cors * a consumer that will call methods on {@link Cors.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #cors(Cors) */ default Builder cors(Consumer cors) { return cors(Cors.builder().applyMutation(cors).build()); } /** *

* When the function URL was created, in ISO-8601 format * (YYYY-MM-DDThh:mm:ss.sTZD). *

* * @param creationTime * When the function URL was created, in ISO-8601 * format (YYYY-MM-DDThh:mm:ss.sTZD). * @return Returns a reference to this object so that method calls can be chained together. */ Builder creationTime(String creationTime); } static final class BuilderImpl extends LambdaResponse.BuilderImpl implements Builder { private String functionUrl; private String functionArn; private String authType; private Cors cors; private String creationTime; private BuilderImpl() { } private BuilderImpl(CreateFunctionUrlConfigResponse model) { super(model); functionUrl(model.functionUrl); functionArn(model.functionArn); authType(model.authType); cors(model.cors); creationTime(model.creationTime); } public final String getFunctionUrl() { return functionUrl; } public final void setFunctionUrl(String functionUrl) { this.functionUrl = functionUrl; } @Override public final Builder functionUrl(String functionUrl) { this.functionUrl = functionUrl; return this; } public final String getFunctionArn() { return functionArn; } public final void setFunctionArn(String functionArn) { this.functionArn = functionArn; } @Override public final Builder functionArn(String functionArn) { this.functionArn = functionArn; return this; } public final String getAuthType() { return authType; } public final void setAuthType(String authType) { this.authType = authType; } @Override public final Builder authType(String authType) { this.authType = authType; return this; } @Override public final Builder authType(FunctionUrlAuthType authType) { this.authType(authType == null ? null : authType.toString()); return this; } public final Cors.Builder getCors() { return cors != null ? cors.toBuilder() : null; } public final void setCors(Cors.BuilderImpl cors) { this.cors = cors != null ? cors.build() : null; } @Override public final Builder cors(Cors cors) { this.cors = cors; return this; } public final String getCreationTime() { return creationTime; } public final void setCreationTime(String creationTime) { this.creationTime = creationTime; } @Override public final Builder creationTime(String creationTime) { this.creationTime = creationTime; return this; } @Override public CreateFunctionUrlConfigResponse build() { return new CreateFunctionUrlConfigResponse(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy