/* * 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 firehose-2015-08-04.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.KinesisFirehose.Model { /// /// Specifies the schema to which you want Kinesis Data Firehose to configure your data /// before it writes it to Amazon S3. /// public partial class SchemaConfiguration { private string _catalogId; private string _databaseName; private string _region; private string _roleARN; private string _tableName; private string _versionId; /// /// Gets and sets the property CatalogId. /// /// The ID of the AWS Glue Data Catalog. If you don't supply this, the AWS account ID /// is used by default. /// /// public string CatalogId { get { return this._catalogId; } set { this._catalogId = value; } } // Check to see if CatalogId property is set internal bool IsSetCatalogId() { return this._catalogId != null; } /// /// Gets and sets the property DatabaseName. /// /// Specifies the name of the AWS Glue database that contains the schema for the output /// data. /// /// public string DatabaseName { get { return this._databaseName; } set { this._databaseName = value; } } // Check to see if DatabaseName property is set internal bool IsSetDatabaseName() { return this._databaseName != null; } /// /// Gets and sets the property Region. /// /// If you don't specify an AWS Region, the default is the current Region. /// /// 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 RoleARN. /// /// The role that Kinesis Data Firehose can use to access AWS Glue. This role must be /// in the same account you use for Kinesis Data Firehose. Cross-account roles aren't /// allowed. /// /// public string RoleARN { get { return this._roleARN; } set { this._roleARN = value; } } // Check to see if RoleARN property is set internal bool IsSetRoleARN() { return this._roleARN != null; } /// /// Gets and sets the property TableName. /// /// Specifies the AWS Glue table that contains the column information that constitutes /// your data schema. /// /// public string TableName { get { return this._tableName; } set { this._tableName = value; } } // Check to see if TableName property is set internal bool IsSetTableName() { return this._tableName != null; } /// /// Gets and sets the property VersionId. /// /// Specifies the table version for the output data schema. If you don't specify this /// version ID, or if you set it to LATEST, Kinesis Data Firehose uses the /// most recent version. This means that any updates to the table are automatically picked /// up. /// /// public string VersionId { get { return this._versionId; } set { this._versionId = value; } } // Check to see if VersionId property is set internal bool IsSetVersionId() { return this._versionId != null; } } }