@Stability(value=Stable)
public static interface CfnBucket.CorsRuleProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.s3.*;
CorsRuleProperty corsRuleProperty = CorsRuleProperty.builder()
.allowedMethods(List.of("allowedMethods"))
.allowedOrigins(List.of("allowedOrigins"))
// the properties below are optional
.allowedHeaders(List.of("allowedHeaders"))
.exposedHeaders(List.of("exposedHeaders"))
.id("id")
.maxAge(123)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnBucket.CorsRuleProperty.Builder
A builder for
CfnBucket.CorsRuleProperty |
static class |
CfnBucket.CorsRuleProperty.Jsii$Proxy
An implementation for
CfnBucket.CorsRuleProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnBucket.CorsRuleProperty.Builder |
builder() |
default List<String> |
getAllowedHeaders()
Headers that are specified in the `Access-Control-Request-Headers` header.
|
List<String> |
getAllowedMethods()
An HTTP method that you allow the origin to run.
|
List<String> |
getAllowedOrigins()
One or more origins you want customers to be able to access the bucket from.
|
default List<String> |
getExposedHeaders()
One or more headers in the response that you want customers to be able to access from their applications (for example, from a JavaScript `XMLHttpRequest` object).
|
default String |
getId()
A unique identifier for this rule.
|
default Number |
getMaxAge()
The time in seconds that your browser is to cache the preflight response for the specified resource.
|
@Stability(value=Stable) @NotNull List<String> getAllowedMethods()
Allowed values : GET | PUT | HEAD | POST | DELETE
@Stability(value=Stable) @NotNull List<String> getAllowedOrigins()
@Stability(value=Stable) @Nullable default List<String> getAllowedHeaders()
These headers are allowed in a preflight OPTIONS request. In response to any preflight OPTIONS request, Amazon S3 returns any requested headers that are allowed.
@Stability(value=Stable) @Nullable default List<String> getExposedHeaders()
@Stability(value=Stable) @Nullable default String getId()
The value must be no more than 255 characters.
@Stability(value=Stable) @Nullable default Number getMaxAge()
@Stability(value=Stable) static CfnBucket.CorsRuleProperty.Builder builder()
CfnBucket.CorsRuleProperty.Builder of CfnBucket.CorsRulePropertyCopyright © 2022. All rights reserved.