/*
* Copyright 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 securitylake-2018-05-10.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.SecurityLake.Model
{
///
/// Provides details of Amazon Security Lake object.
///
public partial class DataLakeConfiguration
{
private DataLakeEncryptionConfiguration _encryptionConfiguration;
private DataLakeLifecycleConfiguration _lifecycleConfiguration;
private string _region;
private DataLakeReplicationConfiguration _replicationConfiguration;
///
/// Gets and sets the property EncryptionConfiguration.
///
/// Provides encryption details of Amazon Security Lake object.
///
///
public DataLakeEncryptionConfiguration EncryptionConfiguration
{
get { return this._encryptionConfiguration; }
set { this._encryptionConfiguration = value; }
}
// Check to see if EncryptionConfiguration property is set
internal bool IsSetEncryptionConfiguration()
{
return this._encryptionConfiguration != null;
}
///
/// Gets and sets the property LifecycleConfiguration.
///
/// Provides lifecycle details of Amazon Security Lake object.
///
///
public DataLakeLifecycleConfiguration LifecycleConfiguration
{
get { return this._lifecycleConfiguration; }
set { this._lifecycleConfiguration = value; }
}
// Check to see if LifecycleConfiguration property is set
internal bool IsSetLifecycleConfiguration()
{
return this._lifecycleConfiguration != null;
}
///
/// Gets and sets the property Region.
///
/// The Amazon Web Services Regions where Security Lake is automatically enabled.
///
///
[AWSProperty(Required=true)]
public string Region
{
get { return this._region; }
set { this._region = value; }
}
// Check to see if Region property is set
internal bool IsSetRegion()
{
return this._region != null;
}
///
/// Gets and sets the property ReplicationConfiguration.
///
/// Provides replication details of Amazon Security Lake object.
///
///
public DataLakeReplicationConfiguration ReplicationConfiguration
{
get { return this._replicationConfiguration; }
set { this._replicationConfiguration = value; }
}
// Check to see if ReplicationConfiguration property is set
internal bool IsSetReplicationConfiguration()
{
return this._replicationConfiguration != null;
}
}
}