software.amazon.awssdk.services.lambda.model.GetFunctionUrlConfigResponse Maven / Gradle / Ivy
Show all versions of lambda Show documentation
/*
* 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 GetFunctionUrlConfigResponse extends LambdaResponse implements
ToCopyableBuilder {
private static final SdkField FUNCTION_URL_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("FunctionUrl").getter(getter(GetFunctionUrlConfigResponse::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(GetFunctionUrlConfigResponse::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(GetFunctionUrlConfigResponse::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(GetFunctionUrlConfigResponse::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(GetFunctionUrlConfigResponse::creationTime))
.setter(setter(Builder::creationTime))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("CreationTime").build()).build();
private static final SdkField LAST_MODIFIED_TIME_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("LastModifiedTime").getter(getter(GetFunctionUrlConfigResponse::lastModifiedTime))
.setter(setter(Builder::lastModifiedTime))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("LastModifiedTime").build()).build();
private static final SdkField INVOKE_MODE_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("InvokeMode").getter(getter(GetFunctionUrlConfigResponse::invokeModeAsString))
.setter(setter(Builder::invokeMode))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("InvokeMode").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, LAST_MODIFIED_TIME_FIELD, INVOKE_MODE_FIELD));
private final String functionUrl;
private final String functionArn;
private final String authType;
private final Cors cors;
private final String creationTime;
private final String lastModifiedTime;
private final String invokeMode;
private GetFunctionUrlConfigResponse(BuilderImpl builder) {
super(builder);
this.functionUrl = builder.functionUrl;
this.functionArn = builder.functionArn;
this.authType = builder.authType;
this.cors = builder.cors;
this.creationTime = builder.creationTime;
this.lastModifiedTime = builder.lastModifiedTime;
this.invokeMode = builder.invokeMode;
}
/**
*
* 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 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 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 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 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;
}
/**
*
* When the function URL configuration was last updated, in ISO-8601
* format (YYYY-MM-DDThh:mm:ss.sTZD).
*
*
* @return When the function URL configuration was last updated, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).
*/
public final String lastModifiedTime() {
return lastModifiedTime;
}
/**
*
* Use one of the following options:
*
*
* -
*
* BUFFERED
– This is the default option. Lambda invokes your function using the Invoke
* API operation. Invocation results are available when the payload is complete. The maximum payload size is 6 MB.
*
*
* -
*
* RESPONSE_STREAM
– Your function streams payload results as they become available. Lambda invokes
* your function using the InvokeWithResponseStream
API operation. The maximum response payload size is
* 20 MB, however, you can request a quota
* increase.
*
*
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #invokeMode} will
* return {@link InvokeMode#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from
* {@link #invokeModeAsString}.
*
*
* @return Use one of the following options:
*
* -
*
* BUFFERED
– This is the default option. Lambda invokes your function using the
* Invoke
API operation. Invocation results are available when the payload is complete. The
* maximum payload size is 6 MB.
*
*
* -
*
* RESPONSE_STREAM
– Your function streams payload results as they become available. Lambda
* invokes your function using the InvokeWithResponseStream
API operation. The maximum response
* payload size is 20 MB, however, you can request a
* quota increase.
*
*
* @see InvokeMode
*/
public final InvokeMode invokeMode() {
return InvokeMode.fromValue(invokeMode);
}
/**
*
* Use one of the following options:
*
*
* -
*
* BUFFERED
– This is the default option. Lambda invokes your function using the Invoke
* API operation. Invocation results are available when the payload is complete. The maximum payload size is 6 MB.
*
*
* -
*
* RESPONSE_STREAM
– Your function streams payload results as they become available. Lambda invokes
* your function using the InvokeWithResponseStream
API operation. The maximum response payload size is
* 20 MB, however, you can request a quota
* increase.
*
*
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #invokeMode} will
* return {@link InvokeMode#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from
* {@link #invokeModeAsString}.
*
*
* @return Use one of the following options:
*
* -
*
* BUFFERED
– This is the default option. Lambda invokes your function using the
* Invoke
API operation. Invocation results are available when the payload is complete. The
* maximum payload size is 6 MB.
*
*
* -
*
* RESPONSE_STREAM
– Your function streams payload results as they become available. Lambda
* invokes your function using the InvokeWithResponseStream
API operation. The maximum response
* payload size is 20 MB, however, you can request a
* quota increase.
*
*
* @see InvokeMode
*/
public final String invokeModeAsString() {
return invokeMode;
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
public static Builder builder() {
return new BuilderImpl();
}
public static Class extends Builder> 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());
hashCode = 31 * hashCode + Objects.hashCode(lastModifiedTime());
hashCode = 31 * hashCode + Objects.hashCode(invokeModeAsString());
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 GetFunctionUrlConfigResponse)) {
return false;
}
GetFunctionUrlConfigResponse other = (GetFunctionUrlConfigResponse) 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())
&& Objects.equals(lastModifiedTime(), other.lastModifiedTime())
&& Objects.equals(invokeModeAsString(), other.invokeModeAsString());
}
/**
* 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("GetFunctionUrlConfigResponse").add("FunctionUrl", functionUrl())
.add("FunctionArn", functionArn()).add("AuthType", authTypeAsString()).add("Cors", cors())
.add("CreationTime", creationTime()).add("LastModifiedTime", lastModifiedTime())
.add("InvokeMode", invokeModeAsString()).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()));
case "LastModifiedTime":
return Optional.ofNullable(clazz.cast(lastModifiedTime()));
case "InvokeMode":
return Optional.ofNullable(clazz.cast(invokeModeAsString()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
private static Function