/* * 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 arc-zonal-shift-2022-10-30.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.ARCZonalShift.Model { /// /// Container for the parameters to the CancelZonalShift operation. /// Cancel a zonal shift in Amazon Route 53 Application Recovery Controller that you've /// started for a resource in your AWS account in an AWS Region. /// public partial class CancelZonalShiftRequest : AmazonARCZonalShiftRequest { private string _zonalShiftId; /// /// Gets and sets the property ZonalShiftId. /// /// The internally-generated identifier of a zonal shift. /// /// [AWSProperty(Required=true, Min=6, Max=36)] public string ZonalShiftId { get { return this._zonalShiftId; } set { this._zonalShiftId = value; } } // Check to see if ZonalShiftId property is set internal bool IsSetZonalShiftId() { return this._zonalShiftId != null; } } }