SIGN IN SIGN UP

Welcome to the AWS Code Examples Repository. This repo contains code examples used in the AWS documentation, AWS SDK Developer Guides, and more. For more information, see the Readme.md file below.

0 0 94 Java
2021-11-15 13:15:43 +00:00
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
2021-11-15 12:21:32 +00:00
#include <aws/core/Aws.h>
#include <aws/core/utils/Outcome.h>
#include <aws/elasticfilesystem/EFSClient.h>
#include <aws/elasticfilesystem/model/CreateFileSystemRequest.h>
#include <aws/elasticfilesystem/model/CreateFileSystemResult.h>
#include <iostream>
/**
* Creates file system based on command line input
*/
int main(int argc, char **argv)
{
if (argc != 2)
{
std::cout << "Usage: create_file_system <creation_token>";
return 1;
}
Aws::SDKOptions options;
Aws::InitAPI(options);
{
Aws::String creation_token(argv[1]);
Aws::EFS::EFSClient efs;
Aws::EFS::Model::CreateFileSystemRequest cfs_req;
cfs_req.SetCreationToken(creation_token);
auto cfs_out = efs.CreateFileSystem(cfs_req);
if (cfs_out.IsSuccess())
{
std::cout << "Successfully created file system " << std::endl;
}
else
{
std::cout << "Error creating file system " << cfs_out.GetError().GetMessage()
<< std::endl;
}
}
Aws::ShutdownAPI(options);
return 0;
}