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

com.pulumi.alicloud.oss.inputs.BucketReplicationSourceSelectionCriteriaArgs Maven / Gradle / Ivy

There is a newer version: 3.63.0-alpha.1727424957
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.alicloud.oss.inputs;

import com.pulumi.alicloud.oss.inputs.BucketReplicationSourceSelectionCriteriaSseKmsEncryptedObjectsArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class BucketReplicationSourceSelectionCriteriaArgs extends com.pulumi.resources.ResourceArgs {

    public static final BucketReplicationSourceSelectionCriteriaArgs Empty = new BucketReplicationSourceSelectionCriteriaArgs();

    /**
     * Filter source objects encrypted by using SSE-KMS. See `sse_kms_encrypted_objects` below.
     * 
     */
    @Import(name="sseKmsEncryptedObjects")
    private @Nullable Output sseKmsEncryptedObjects;

    /**
     * @return Filter source objects encrypted by using SSE-KMS. See `sse_kms_encrypted_objects` below.
     * 
     */
    public Optional> sseKmsEncryptedObjects() {
        return Optional.ofNullable(this.sseKmsEncryptedObjects);
    }

    private BucketReplicationSourceSelectionCriteriaArgs() {}

    private BucketReplicationSourceSelectionCriteriaArgs(BucketReplicationSourceSelectionCriteriaArgs $) {
        this.sseKmsEncryptedObjects = $.sseKmsEncryptedObjects;
    }

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

    public static final class Builder {
        private BucketReplicationSourceSelectionCriteriaArgs $;

        public Builder() {
            $ = new BucketReplicationSourceSelectionCriteriaArgs();
        }

        public Builder(BucketReplicationSourceSelectionCriteriaArgs defaults) {
            $ = new BucketReplicationSourceSelectionCriteriaArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param sseKmsEncryptedObjects Filter source objects encrypted by using SSE-KMS. See `sse_kms_encrypted_objects` below.
         * 
         * @return builder
         * 
         */
        public Builder sseKmsEncryptedObjects(@Nullable Output sseKmsEncryptedObjects) {
            $.sseKmsEncryptedObjects = sseKmsEncryptedObjects;
            return this;
        }

        /**
         * @param sseKmsEncryptedObjects Filter source objects encrypted by using SSE-KMS. See `sse_kms_encrypted_objects` below.
         * 
         * @return builder
         * 
         */
        public Builder sseKmsEncryptedObjects(BucketReplicationSourceSelectionCriteriaSseKmsEncryptedObjectsArgs sseKmsEncryptedObjects) {
            return sseKmsEncryptedObjects(Output.of(sseKmsEncryptedObjects));
        }

        public BucketReplicationSourceSelectionCriteriaArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy