/*
* 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
{
///
/// Container for the parameters to the DescribeDeliveryStream operation.
/// Describes the specified delivery stream and its status. For example, after your delivery
/// stream is created, call DescribeDeliveryStream
to see whether the delivery
/// stream is ACTIVE
and therefore ready for data to be sent to it.
///
///
///
/// If the status of a delivery stream is CREATING_FAILED
, this status doesn't
/// change, and you can't invoke CreateDeliveryStream again on it. However, you
/// can invoke the DeleteDeliveryStream operation to delete it. If the status is
/// DELETING_FAILED
, you can force deletion by invoking DeleteDeliveryStream
/// again but with DeleteDeliveryStreamInput$AllowForceDelete set to true.
///
///
public partial class DescribeDeliveryStreamRequest : AmazonKinesisFirehoseRequest
{
private string _deliveryStreamName;
private string _exclusiveStartDestinationId;
private int? _limit;
///
/// Gets and sets the property DeliveryStreamName.
///
/// The name of the delivery stream.
///
///
[AWSProperty(Required=true, Min=1, Max=64)]
public string DeliveryStreamName
{
get { return this._deliveryStreamName; }
set { this._deliveryStreamName = value; }
}
// Check to see if DeliveryStreamName property is set
internal bool IsSetDeliveryStreamName()
{
return this._deliveryStreamName != null;
}
///
/// Gets and sets the property ExclusiveStartDestinationId.
///
/// The ID of the destination to start returning the destination information. Kinesis
/// Data Firehose supports one destination per delivery stream.
///
///
[AWSProperty(Min=1, Max=100)]
public string ExclusiveStartDestinationId
{
get { return this._exclusiveStartDestinationId; }
set { this._exclusiveStartDestinationId = value; }
}
// Check to see if ExclusiveStartDestinationId property is set
internal bool IsSetExclusiveStartDestinationId()
{
return this._exclusiveStartDestinationId != null;
}
///
/// Gets and sets the property Limit.
///
/// The limit on the number of destinations to return. You can have one destination per
/// delivery stream.
///
///
[AWSProperty(Min=1, Max=10000)]
public int Limit
{
get { return this._limit.GetValueOrDefault(); }
set { this._limit = value; }
}
// Check to see if Limit property is set
internal bool IsSetLimit()
{
return this._limit.HasValue;
}
}
}