@Stability(value=Stable)
public static interface CfnAllowList.S3WordsListProperty
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.macie.*;
S3WordsListProperty s3WordsListProperty = S3WordsListProperty.builder()
.bucketName("bucketName")
.objectKey("objectKey")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnAllowList.S3WordsListProperty.Builder
A builder for
CfnAllowList.S3WordsListProperty |
static class |
CfnAllowList.S3WordsListProperty.Jsii$Proxy
An implementation for
CfnAllowList.S3WordsListProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnAllowList.S3WordsListProperty.Builder |
builder() |
String |
getBucketName()
The full name of the S3 bucket that contains the object.
|
String |
getObjectKey()
The full name of the S3 object.
|
@Stability(value=Stable) @NotNull String getBucketName()
This value correlates to the Name field of a bucket's properties in Amazon S3 .
This value is case sensitive. In addition, don't use wildcard characters or specify partial values for the name.
@Stability(value=Stable) @NotNull String getObjectKey()
This value correlates to the Key field of an object's properties in Amazon S3 . If the name includes a path, include the complete path. For example, AllowLists/Macie/MyList.txt .
This value is case sensitive. In addition, don't use wildcard characters or specify partial values for the name.
@Stability(value=Stable) static CfnAllowList.S3WordsListProperty.Builder builder()
Copyright © 2022. All rights reserved.