
com.pulumi.azurenative.awsconnector.outputs.AwsDynamoDBContinuousBackupsDescriptionPropertiesResponse 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.outputs;
import com.pulumi.azurenative.awsconnector.outputs.ContinuousBackupsStatusEnumValueResponse;
import com.pulumi.azurenative.awsconnector.outputs.PointInTimeRecoveryDescriptionResponse;
import com.pulumi.core.annotations.CustomType;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class AwsDynamoDBContinuousBackupsDescriptionPropertiesResponse {
/**
* @return <p> <code>ContinuousBackupsStatus</code> can be one of the following states: ENABLED, DISABLED</p>
*
*/
private @Nullable ContinuousBackupsStatusEnumValueResponse continuousBackupsStatus;
/**
* @return <p>The description of the point in time recovery settings applied to the table.</p>
*
*/
private @Nullable PointInTimeRecoveryDescriptionResponse pointInTimeRecoveryDescription;
private AwsDynamoDBContinuousBackupsDescriptionPropertiesResponse() {}
/**
* @return <p> <code>ContinuousBackupsStatus</code> can be one of the following states: ENABLED, DISABLED</p>
*
*/
public Optional continuousBackupsStatus() {
return Optional.ofNullable(this.continuousBackupsStatus);
}
/**
* @return <p>The description of the point in time recovery settings applied to the table.</p>
*
*/
public Optional pointInTimeRecoveryDescription() {
return Optional.ofNullable(this.pointInTimeRecoveryDescription);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(AwsDynamoDBContinuousBackupsDescriptionPropertiesResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable ContinuousBackupsStatusEnumValueResponse continuousBackupsStatus;
private @Nullable PointInTimeRecoveryDescriptionResponse pointInTimeRecoveryDescription;
public Builder() {}
public Builder(AwsDynamoDBContinuousBackupsDescriptionPropertiesResponse defaults) {
Objects.requireNonNull(defaults);
this.continuousBackupsStatus = defaults.continuousBackupsStatus;
this.pointInTimeRecoveryDescription = defaults.pointInTimeRecoveryDescription;
}
@CustomType.Setter
public Builder continuousBackupsStatus(@Nullable ContinuousBackupsStatusEnumValueResponse continuousBackupsStatus) {
this.continuousBackupsStatus = continuousBackupsStatus;
return this;
}
@CustomType.Setter
public Builder pointInTimeRecoveryDescription(@Nullable PointInTimeRecoveryDescriptionResponse pointInTimeRecoveryDescription) {
this.pointInTimeRecoveryDescription = pointInTimeRecoveryDescription;
return this;
}
public AwsDynamoDBContinuousBackupsDescriptionPropertiesResponse build() {
final var _resultValue = new AwsDynamoDBContinuousBackupsDescriptionPropertiesResponse();
_resultValue.continuousBackupsStatus = continuousBackupsStatus;
_resultValue.pointInTimeRecoveryDescription = pointInTimeRecoveryDescription;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy