پیکربندی وبسایت برای صندوقچه
مولفهها
- کلیدهای احراز هویت
- نام صندوقچه
- قوانین پیکربندی وبسایت
- NET.
- PHP
- Python
- Javascript
- GO
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache - 2.0
using Amazon;
using Amazon.S3;
using Amazon.S3.Model;
using System;
using System.Threading.Tasks;
using System.Reflection;
using Newtonsoft.Json;
using System.Collections.Generic;
namespace DeleteBucketWebsite
{
class DeleteBucketWebsite
{
private static IAmazonS3 _s3Client;
private const string BUCKET_NAME = "<BUCKET_NAME>";
static void Main()
{
var awsCredentials = new Amazon.Runtime.BasicAWSCredentials("<ACCESS_KEY>", "<SECRET_KEY>");
var config = new AmazonS3Config { ServiceURL = "<ENDPOINT_URL>" };
_s3Client = new AmazonS3Client(awsCredentials, config);
DeleteBucketWebsiteAsync().Wait();
}
private static async Task DeleteBucketWebsiteAsync()
{
try
{
// Create the request
DeleteBucketWebsiteRequest request = new()
{
BucketName = BUCKET_NAME,
};
// Submit the request
DeleteBucketWebsiteResponse response = await _s3Client.DeleteBucketWebsiteAsync(request);
Console.WriteLine(JsonConvert.SerializeObject(response, Formatting.Indented));
Console.WriteLine($"Website configuration successfully deleted from {BUCKET_NAME} bucket");
}
catch (AmazonS3Exception amazonS3Exception)
{
Console.WriteLine("An AmazonS3Exception was thrown. Exception: " + amazonS3Exception.ToString());
}
catch (Exception e)
{
Console.WriteLine("Exception: " + e.ToString());
}
}
}
}
<?php
require('client.php');
$bucket = '<BUCKET_NAME>';
$params = [
'Bucket' => $bucket,
'WebsiteConfiguration' => [
'ErrorDocument' => [
'Key' => 'foo',
],
'IndexDocument' => [
'Suffix' => 'bar',
],
]
];
try {
$resp = $client->putBucketWebsite($params);
var_dump($resp);
} catch (AwsException $e) {
// Display error message
echo $e->getMessage();
echo "\n";
}
import boto3
import logging
from botocore.exceptions import ClientError
logging.basicConfig(level=logging.INFO)
try:
s3_client = boto3.client(
's3',
endpoint_url='<ENDPOINT>',
aws_access_key_id='<ACCESS-KEY>',
aws_secret_access_key='<SECRET-KEY>'
)
except Exception as exc:
logging.error(exc)
else:
try:
response = s3_client.put_bucket_website(
Bucket='<BUCKET_NAME>',
WebsiteConfiguration={
'ErrorDocument': {
'Key': 'string'
},
'IndexDocument': {
'Suffix': 'string'
},
'RedirectAllRequestsTo': {
'HostName': 'string',
'Protocol': 'http' # 'http'|'https'
},
'RoutingRules': [
{
'Condition': {
'HttpErrorCodeReturnedEquals': 'string',
'KeyPrefixEquals': 'string'
},
'Redirect': {
'HostName': 'string',
'HttpRedirectCode': 'string',
'Protocol': 'http', # 'http'|'https'
'ReplaceKeyPrefixWith': 'string',
'ReplaceKeyWith': 'string'
}
},
]
},
ExpectedBucketOwner='string'
)
logging.info(response)
except ClientError as exc:
logging.error(exc)
// Import required AWS SDK clients and commands for Node.js
const { S3Client, PutBucketWebsiteCommand } = require('@aws-sdk/client-s3');
// Create an S3 client service object
const s3 = new S3Client({
region: 'default',
endpoint: '<ENDPOINT_URL>',
credentials: {
accessKeyId: '<ACCESS_KEY>',
secretAccessKey: '<SECRET_KEY>',
},
});
const BUCKET_NAME = '<BUCKET_NAME>';
const run = async () => {
try {
const params = {
Bucket: BUCKET_NAME,
WebsiteConfiguration: {
ErrorDocument: {
Key: 'foo',
},
IndexDocument: {
Suffix: 'bar',
},
},
};
const response = await s3.send(new PutBucketWebsiteCommand(params));
console.log('Success', response);
} catch (err) {
console.log('Error', err);
}
};
run();
package main
import (
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/credentials"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/s3"
"fmt"
"os"
)
// Puts bucket website configuration
//
// Usage:
// go run s3_put_bucket_website.go BUCKET
func main() {
if len(os.Args) < 2 {
exitErrorf("Bucket name: go run", os.Args[0], "BUCKET")
}
bucket := os.Args[1]
// Initialize a session in us-west-2 that the SDK will use to load
// credentials from the shared credentials file ~/.aws/credentials.
sess, err := session.NewSession(&aws.Config{
Credentials: credentials.NewStaticCredentials("<ACCESS_KEY>", "<SECRET_KEY>", ""),
})
svc := s3.New(sess, &aws.Config{
Region: aws.String("default"),
Endpoint: aws.String("<ENDPOINT_URL>"),
})
params := &s3.PutBucketWebsiteInput{
Bucket: &bucket,
WebsiteConfiguration: &s3.WebsiteConfiguration{
ErrorDocument: &s3.ErrorDocument{
Key: aws.String("foo"),
},
IndexDocument: &s3.IndexDocument{
Suffix: aws.String("bar"),
},
},
}
// Set bucket website configuration
_, err = svc.PutBucketWebsite(params)
if err != nil {
exitErrorf(err.Error())
}
fmt.Println("Congratulations. You put website configuration on bucket", bucket)
}
func exitErrorf(msg string, args ...interface{}) {
fmt.Fprintf(os.Stderr, msg+"\n", args...)
os.Exit(1)
}
برای اجرای قطعه کد بالا با فرض نامگذاری فایل کد به s3_put_bucket_website.go میتوان از دستور زیر استفاده کرد:
go run s3_put_bucket_website.go BUCKET