2021-11-15 13:15:43 +00:00
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
# include <aws/core/Aws.h>
# include <aws/elasticache/ElastiCacheClient.h>
# include <aws/elasticache/model/DeleteCacheClusterRequest.h>
# include <aws/elasticache/model/DeleteCacheClusterResult.h>
# include <iostream>
int main ( int argc , char * * argv )
{
if ( argc ! = 2 )
{
std : : cout < < " Usage: delete_cache_cluster <cluster_id> " < < std : : endl ;
return 1 ;
}
Aws : : SDKOptions options ;
Aws : : InitAPI ( options ) ;
{
Aws : : String cluster_id ( argv [ 1 ] ) ;
Aws : : ElastiCache : : ElastiCacheClient elasticache ;
Aws : : ElastiCache : : Model : : DeleteCacheClusterRequest ccc_req ;
ccc_req . SetCacheClusterId ( cluster_id ) ;
auto ccc_out = elasticache . DeleteCacheCluster ( ccc_req ) ;
if ( ccc_out . IsSuccess ( ) )
{
std : : cout < < " Successfully deleted cache cluster " < < std : : endl ;
}
else
{
std : : cout < < " Error deleting cache cluster " < < ccc_out . GetError ( ) . GetMessage ( )
< < std : : endl ;
}
}
Aws : : ShutdownAPI ( options ) ;
return 0 ;
}