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

com.pulumi.azurenative.awsconnector.inputs.AwsDynamoDBContinuousBackupsDescriptionPropertiesArgs Maven / Gradle / Ivy

// *** 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.azurenative.awsconnector.inputs;

import com.pulumi.azurenative.awsconnector.inputs.ContinuousBackupsStatusEnumValueArgs;
import com.pulumi.azurenative.awsconnector.inputs.PointInTimeRecoveryDescriptionArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * Definition of awsDynamoDBContinuousBackupsDescription
 * 
 */
public final class AwsDynamoDBContinuousBackupsDescriptionPropertiesArgs extends com.pulumi.resources.ResourceArgs {

    public static final AwsDynamoDBContinuousBackupsDescriptionPropertiesArgs Empty = new AwsDynamoDBContinuousBackupsDescriptionPropertiesArgs();

    /**
     * <p> <code>ContinuousBackupsStatus</code> can be one of the following states: ENABLED, DISABLED</p>
     * 
     */
    @Import(name="continuousBackupsStatus")
    private @Nullable Output continuousBackupsStatus;

    /**
     * @return <p> <code>ContinuousBackupsStatus</code> can be one of the following states: ENABLED, DISABLED</p>
     * 
     */
    public Optional> continuousBackupsStatus() {
        return Optional.ofNullable(this.continuousBackupsStatus);
    }

    /**
     * <p>The description of the point in time recovery settings applied to the table.</p>
     * 
     */
    @Import(name="pointInTimeRecoveryDescription")
    private @Nullable Output pointInTimeRecoveryDescription;

    /**
     * @return <p>The description of the point in time recovery settings applied to the table.</p>
     * 
     */
    public Optional> pointInTimeRecoveryDescription() {
        return Optional.ofNullable(this.pointInTimeRecoveryDescription);
    }

    private AwsDynamoDBContinuousBackupsDescriptionPropertiesArgs() {}

    private AwsDynamoDBContinuousBackupsDescriptionPropertiesArgs(AwsDynamoDBContinuousBackupsDescriptionPropertiesArgs $) {
        this.continuousBackupsStatus = $.continuousBackupsStatus;
        this.pointInTimeRecoveryDescription = $.pointInTimeRecoveryDescription;
    }

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

    public static final class Builder {
        private AwsDynamoDBContinuousBackupsDescriptionPropertiesArgs $;

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

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

        /**
         * @param continuousBackupsStatus <p> <code>ContinuousBackupsStatus</code> can be one of the following states: ENABLED, DISABLED</p>
         * 
         * @return builder
         * 
         */
        public Builder continuousBackupsStatus(@Nullable Output continuousBackupsStatus) {
            $.continuousBackupsStatus = continuousBackupsStatus;
            return this;
        }

        /**
         * @param continuousBackupsStatus <p> <code>ContinuousBackupsStatus</code> can be one of the following states: ENABLED, DISABLED</p>
         * 
         * @return builder
         * 
         */
        public Builder continuousBackupsStatus(ContinuousBackupsStatusEnumValueArgs continuousBackupsStatus) {
            return continuousBackupsStatus(Output.of(continuousBackupsStatus));
        }

        /**
         * @param pointInTimeRecoveryDescription <p>The description of the point in time recovery settings applied to the table.</p>
         * 
         * @return builder
         * 
         */
        public Builder pointInTimeRecoveryDescription(@Nullable Output pointInTimeRecoveryDescription) {
            $.pointInTimeRecoveryDescription = pointInTimeRecoveryDescription;
            return this;
        }

        /**
         * @param pointInTimeRecoveryDescription <p>The description of the point in time recovery settings applied to the table.</p>
         * 
         * @return builder
         * 
         */
        public Builder pointInTimeRecoveryDescription(PointInTimeRecoveryDescriptionArgs pointInTimeRecoveryDescription) {
            return pointInTimeRecoveryDescription(Output.of(pointInTimeRecoveryDescription));
        }

        public AwsDynamoDBContinuousBackupsDescriptionPropertiesArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy