Amazon.Kinesis.AmazonKinesisClient.DecreaseStreamRetentionPeriod C# (CSharp) Метод

DecreaseStreamRetentionPeriod() публичный Метод

Decreases the Amazon Kinesis stream's retention period, which is the length of time data records are accessible after they are added to the stream. The minimum value of a stream's retention period is 24 hours.

This operation may result in lost data. For example, if the stream's retention period is 48 hours and is decreased to 24 hours, any data already in the stream that is older than 24 hours is inaccessible.

/// A specified parameter exceeds its restrictions, is not supported, or can't be used. /// For more information, see the returned message. /// /// The resource is not available for this operation. For successful operation, the resource /// needs to be in the ACTIVE state. /// /// The requested resource could not be found. The stream might not be specified correctly. ///
public DecreaseStreamRetentionPeriod ( string streamName, int retentionPeriodHours ) : DecreaseStreamRetentionPeriodResponse
streamName string The name of the stream to modify.
retentionPeriodHours int The new retention period of the stream, in hours. Must be less than the current retention period.
Результат DecreaseStreamRetentionPeriodResponse
        public DecreaseStreamRetentionPeriodResponse DecreaseStreamRetentionPeriod(string streamName, int retentionPeriodHours)
        {
            var request = new DecreaseStreamRetentionPeriodRequest();
            request.StreamName = streamName;
            request.RetentionPeriodHours = retentionPeriodHours;
            return DecreaseStreamRetentionPeriod(request);
        }

Same methods

AmazonKinesisClient::DecreaseStreamRetentionPeriod ( DecreaseStreamRetentionPeriodRequest request ) : DecreaseStreamRetentionPeriodResponse
AmazonKinesisClient