com.pulumi.aws.redshift.SnapshotScheduleArgs 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.aws.redshift;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class SnapshotScheduleArgs extends com.pulumi.resources.ResourceArgs {
public static final SnapshotScheduleArgs Empty = new SnapshotScheduleArgs();
/**
* The definition of the snapshot schedule. The definition is made up of schedule expressions, for example `cron(30 12 *)` or `rate(12 hours)`.
*
*/
@Import(name="definitions", required=true)
private Output> definitions;
/**
* @return The definition of the snapshot schedule. The definition is made up of schedule expressions, for example `cron(30 12 *)` or `rate(12 hours)`.
*
*/
public Output> definitions() {
return this.definitions;
}
/**
* The description of the snapshot schedule.
*
*/
@Import(name="description")
private @Nullable Output description;
/**
* @return The description of the snapshot schedule.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy