/*
* Copyright 2010-2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the dynamodb-2012-08-10.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.DynamoDBv2.Model
{
///
/// Represents the continuous backups and point in time recovery settings on the table.
///
public partial class ContinuousBackupsDescription
{
private ContinuousBackupsStatus _continuousBackupsStatus;
private PointInTimeRecoveryDescription _pointInTimeRecoveryDescription;
///
/// Gets and sets the property ContinuousBackupsStatus.
///
/// ContinuousBackupsStatus
can be one of the following states: ENABLED,
/// DISABLED
///
///
[AWSProperty(Required=true)]
public ContinuousBackupsStatus ContinuousBackupsStatus
{
get { return this._continuousBackupsStatus; }
set { this._continuousBackupsStatus = value; }
}
// Check to see if ContinuousBackupsStatus property is set
internal bool IsSetContinuousBackupsStatus()
{
return this._continuousBackupsStatus != null;
}
///
/// Gets and sets the property PointInTimeRecoveryDescription.
///
/// The description of the point in time recovery settings applied to the table.
///
///
public PointInTimeRecoveryDescription PointInTimeRecoveryDescription
{
get { return this._pointInTimeRecoveryDescription; }
set { this._pointInTimeRecoveryDescription = value; }
}
// Check to see if PointInTimeRecoveryDescription property is set
internal bool IsSetPointInTimeRecoveryDescription()
{
return this._pointInTimeRecoveryDescription != null;
}
}
}