Exemple #1
0
        public void StorageGatewayDeleteChapCredentials()
        {
            #region to-delete-chap-credentials-1471375025612

            var client   = new AmazonStorageGatewayClient();
            var response = client.DeleteChapCredentials(new DeleteChapCredentialsRequest
            {
                InitiatorName = "iqn.1991-05.com.microsoft:computername.domain.example.com",
                TargetARN     = "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume"
            });

            string initiatorName = response.InitiatorName;
            string targetARN     = response.TargetARN;

            #endregion
        }