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

com.pulumi.aws.cloudfront.outputs.CachePolicyParametersInCacheKeyAndForwardedToOriginQueryStringsConfigQueryStrings Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.

There is a newer version: 6.66.3
Show newest version
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***

package com.pulumi.aws.cloudfront.outputs;

import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import javax.annotation.Nullable;

@CustomType
public final class CachePolicyParametersInCacheKeyAndForwardedToOriginQueryStringsConfigQueryStrings {
    /**
     * @return List of item names, such as cookies, headers, or query strings.
     * 
     */
    private @Nullable List items;

    private CachePolicyParametersInCacheKeyAndForwardedToOriginQueryStringsConfigQueryStrings() {}
    /**
     * @return List of item names, such as cookies, headers, or query strings.
     * 
     */
    public List items() {
        return this.items == null ? List.of() : this.items;
    }

    public static Builder builder() {
        return new Builder();
    }

    public static Builder builder(CachePolicyParametersInCacheKeyAndForwardedToOriginQueryStringsConfigQueryStrings defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable List items;
        public Builder() {}
        public Builder(CachePolicyParametersInCacheKeyAndForwardedToOriginQueryStringsConfigQueryStrings defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.items = defaults.items;
        }

        @CustomType.Setter
        public Builder items(@Nullable List items) {

            this.items = items;
            return this;
        }
        public Builder items(String... items) {
            return items(List.of(items));
        }
        public CachePolicyParametersInCacheKeyAndForwardedToOriginQueryStringsConfigQueryStrings build() {
            final var _resultValue = new CachePolicyParametersInCacheKeyAndForwardedToOriginQueryStringsConfigQueryStrings();
            _resultValue.items = items;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy