2018-10-11 14:17:57 -07:00
2021-11-15 12:21:32 +00:00
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX - License - Identifier: Apache - 2.0
2018-10-11 14:17:57 -07:00
/*
2021-11-15 12:21:32 +00:00
Purpose:
create_cache_cluster.cpp demonstrates how to create an Amazon ElastiCache cluster.
2018-10-11 14:17:57 -07:00
2021-11-15 12:21:32 +00:00
*/
//snippet-start:[ecache.cpp.create_cache_cluster.inc]
2018-10-11 14:17:57 -07:00
# include <aws/core/Aws.h>
# include <aws/elasticache/ElastiCacheClient.h>
# include <aws/elasticache/model/CreateCacheClusterRequest.h>
# include <aws/elasticache/model/CreateCacheClusterResult.h>
# include <iostream>
2021-11-15 12:21:32 +00:00
//snippet-end:[ecache.cpp.create_cache_cluster.inc]
2018-10-11 14:17:57 -07:00
int main ( int argc , char * * argv )
{
if ( argc ! = 5 )
{
std : : cout < < " Usage: create_cache_cluster <cluster_id> <engine> <cache_node_type> "
" <num_cache_nodes> " < < std : : endl ;
return 1 ;
}
Aws : : SDKOptions options ;
Aws : : InitAPI ( options ) ;
{
Aws : : String cluster_id ( argv [ 1 ] ) ;
Aws : : String engine ( argv [ 2 ] ) ;
Aws : : String cache_node_type ( argv [ 3 ] ) ;
2019-04-17 15:40:29 -07:00
auto num_cache_nodes = Aws : : Utils : : StringUtils : : ConvertToInt32 ( argv [ 4 ] ) ;
2018-10-11 14:17:57 -07:00
2021-11-15 12:21:32 +00:00
//snippet-start:[ecache.cpp.create_cache_cluster]
2018-10-11 14:17:57 -07:00
Aws : : ElastiCache : : ElastiCacheClient elasticache ;
Aws : : ElastiCache : : Model : : CreateCacheClusterRequest ccc_req ;
ccc_req . SetCacheClusterId ( cluster_id ) ;
ccc_req . SetEngine ( engine ) ;
ccc_req . SetCacheNodeType ( cache_node_type ) ;
ccc_req . SetNumCacheNodes ( num_cache_nodes ) ;
auto ccc_out = elasticache . CreateCacheCluster ( ccc_req ) ;
if ( ccc_out . IsSuccess ( ) )
{
std : : cout < < " Successfully created cache cluster " < < std : : endl ;
}
else
{
std : : cout < < " Error creating cache cluster " < < ccc_out . GetError ( ) . GetMessage ( )
< < std : : endl ;
}
2021-11-15 12:21:32 +00:00
//snippet-end:[ecache.cpp.create_cache_cluster]
2018-10-11 14:17:57 -07:00
}
Aws : : ShutdownAPI ( options ) ;
return 0 ;
}