/*
* 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 kms-2014-11-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.KeyManagementService.Model
{
///
/// Container for the parameters to the DisconnectCustomKeyStore operation.
/// Disconnects the custom
/// key store from its backing key store. This operation disconnects an CloudHSM key
/// store from its associated CloudHSM cluster or disconnects an external key store from
/// the external key store proxy that communicates with your external key manager.
///
///
///
/// This operation is part of the custom
/// key stores feature in KMS, which combines the convenience and extensive integration
/// of KMS with the isolation and control of a key store that you own and manage.
///
///
///
/// While a custom key store is disconnected, you can manage the custom key store and
/// its KMS keys, but you cannot create or use its KMS keys. You can reconnect the custom
/// key store at any time.
///
///
///
/// While a custom key store is disconnected, all attempts to create KMS keys in the custom
/// key store or to use existing KMS keys in cryptographic
/// operations will fail. This action can prevent users from storing and accessing
/// sensitive data.
///
///
///
/// When you disconnect a custom key store, its ConnectionState
changes to
/// Disconnected
. To find the connection state of a custom key store, use
/// the DescribeCustomKeyStores operation. To reconnect a custom key store, use
/// the ConnectCustomKeyStore operation.
///
///
///
/// If the operation succeeds, it returns a JSON object with no properties.
///
///
///
/// Cross-account use: No. You cannot perform this operation on a custom key store
/// in a different Amazon Web Services account.
///
///
///
/// Required permissions: kms:DisconnectCustomKeyStore
/// (IAM policy)
///
///
///
/// Related operations:
///
///
///
public partial class DisconnectCustomKeyStoreRequest : AmazonKeyManagementServiceRequest
{
private string _customKeyStoreId;
///
/// Gets and sets the property CustomKeyStoreId.
///
/// Enter the ID of the custom key store you want to disconnect. To find the ID of a custom
/// key store, use the DescribeCustomKeyStores operation.
///
///
[AWSProperty(Required=true, Min=1, Max=64)]
public string CustomKeyStoreId
{
get { return this._customKeyStoreId; }
set { this._customKeyStoreId = value; }
}
// Check to see if CustomKeyStoreId property is set
internal bool IsSetCustomKeyStoreId()
{
return this._customKeyStoreId != null;
}
}
}