/* * 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 quicksight-2018-04-01.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.QuickSight.Model { /// /// The Amazon S3 result from the snapshot job. The result includes the DestinationConfiguration /// and the Amazon S3 Uri. If an error occured during the job, the result returns information /// on the error. /// public partial class SnapshotJobS3Result { private List _errorInfo = new List(); private SnapshotS3DestinationConfiguration _s3DestinationConfiguration; private string _s3Uri; /// /// Gets and sets the property ErrorInfo. /// /// An array of error records that describe any failures that occur while the dashboard /// snapshot job runs. /// /// public List ErrorInfo { get { return this._errorInfo; } set { this._errorInfo = value; } } // Check to see if ErrorInfo property is set internal bool IsSetErrorInfo() { return this._errorInfo != null && this._errorInfo.Count > 0; } /// /// Gets and sets the property S3DestinationConfiguration. /// /// A list of Amazon S3 bucket configurations that are provided when you make a StartDashboardSnapshotJob /// API call. /// /// public SnapshotS3DestinationConfiguration S3DestinationConfiguration { get { return this._s3DestinationConfiguration; } set { this._s3DestinationConfiguration = value; } } // Check to see if S3DestinationConfiguration property is set internal bool IsSetS3DestinationConfiguration() { return this._s3DestinationConfiguration != null; } /// /// Gets and sets the property S3Uri. /// /// The Amazon S3 Uri. /// /// [AWSProperty(Sensitive=true)] public string S3Uri { get { return this._s3Uri; } set { this._s3Uri = value; } } // Check to see if S3Uri property is set internal bool IsSetS3Uri() { return this._s3Uri != null; } } }