/* * 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 ec2-2016-11-15.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.EC2.Model { /// /// Container for the parameters to the GetFlowLogsIntegrationTemplate operation. /// Generates a CloudFormation template that streamlines and automates the integration /// of VPC flow logs with Amazon Athena. This make it easier for you to query and gain /// insights from VPC flow logs data. Based on the information that you provide, we configure /// resources in the template to do the following: /// /// /// /// GetFlowLogsIntegrationTemplate does not support integration between /// Amazon Web Services Transit Gateway Flow Logs and Amazon Athena. /// /// /// public partial class GetFlowLogsIntegrationTemplateRequest : AmazonEC2Request { private string _configDeliveryS3DestinationArn; private string _flowLogId; private IntegrateServices _integrateServices; /// /// Gets and sets the property ConfigDeliveryS3DestinationArn. /// /// To store the CloudFormation template in Amazon S3, specify the location in Amazon /// S3. /// /// [AWSProperty(Required=true)] public string ConfigDeliveryS3DestinationArn { get { return this._configDeliveryS3DestinationArn; } set { this._configDeliveryS3DestinationArn = value; } } // Check to see if ConfigDeliveryS3DestinationArn property is set internal bool IsSetConfigDeliveryS3DestinationArn() { return this._configDeliveryS3DestinationArn != null; } /// /// Gets and sets the property FlowLogId. /// /// The ID of the flow log. /// /// [AWSProperty(Required=true)] public string FlowLogId { get { return this._flowLogId; } set { this._flowLogId = value; } } // Check to see if FlowLogId property is set internal bool IsSetFlowLogId() { return this._flowLogId != null; } /// /// Gets and sets the property IntegrateServices. /// /// Information about the service integration. /// /// [AWSProperty(Required=true)] public IntegrateServices IntegrateServices { get { return this._integrateServices; } set { this._integrateServices = value; } } // Check to see if IntegrateServices property is set internal bool IsSetIntegrateServices() { return this._integrateServices != null; } } }