python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How to migrate backup to AWS cloud ?(AWS Storage Gateway)
I am trying to create an application to migrate on-premise tape backup to the AWS cloud in an online way.
I went through the training where snowball service device as an offline mode of transportation...
Learners
Votes: 0
Answers: 0
AWS FSx vs S3 File Gateway
let's suppose I have the need to have a NAS-equivalent share on AWS that will replace my on-prem NAS server. I see that both solutions, FSx and S3 File Gateway, allow to have a SMB protocol interface....
wizard
Votes: 0
Answers: 1
Error: error creating Storage gateway SMB file Share: InvalidGatewayRequestExeption
I tried to run following terraform code o create test smb share but got error
see code
provider "aws" {
region = "us-east-1"
}
resource "aws_storagegateway_smb_file_share&q...
wwe34124
Votes: 0
Answers: 1
List file shares on AWS Storage Gateway with boto3
I am trying to list all fileshares on a specific Storage Gateway like so:
import boto3
sg = boto3.client('storagegateway', 'us-east-1')
aws = sg.list_file_shares(
GatewayARN = "arn:aws:stora...
wwe34124
Votes: 0
Answers: 1