@Generated(value="jsii-pacmak/1.47.0 (build 86d2c33)", date="2021-12-22T10:27:17.387Z") @Stability(value=Stable) public class CfnAccessPoint extends CfnResource implements IInspectable
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.efs.*;
CfnAccessPoint cfnAccessPoint = CfnAccessPoint.Builder.create(this, "MyCfnAccessPoint")
.fileSystemId("fileSystemId")
// the properties below are optional
.accessPointTags(List.of(AccessPointTagProperty.builder()
.key("key")
.value("value")
.build()))
.clientToken("clientToken")
.posixUser(PosixUserProperty.builder()
.gid("gid")
.uid("uid")
// the properties below are optional
.secondaryGids(List.of("secondaryGids"))
.build())
.rootDirectory(RootDirectoryProperty.builder()
.creationInfo(CreationInfoProperty.builder()
.ownerGid("ownerGid")
.ownerUid("ownerUid")
.permissions("permissions")
.build())
.path("path")
.build())
.build();
| Modifier and Type | Class and Description |
|---|---|
static interface |
CfnAccessPoint.AccessPointTagProperty
Example:
|
static class |
CfnAccessPoint.Builder
A fluent builder for
CfnAccessPoint. |
static interface |
CfnAccessPoint.CreationInfoProperty
Example:
|
static interface |
CfnAccessPoint.PosixUserProperty
Example:
|
static interface |
CfnAccessPoint.RootDirectoryProperty
Example:
|
software.amazon.jsii.JsiiObject.InitializationModeIInspectable.Jsii$Default, IInspectable.Jsii$Proxy| Modifier and Type | Field and Description |
|---|---|
static String |
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
|
| Modifier | Constructor and Description |
|---|---|
|
CfnAccessPoint(software.constructs.Construct scope,
String id,
CfnAccessPointProps props)
Create a new `AWS::EFS::AccessPoint`.
|
protected |
CfnAccessPoint(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) |
protected |
CfnAccessPoint(software.amazon.jsii.JsiiObjectRef objRef) |
| Modifier and Type | Method and Description |
|---|---|
Object |
getAccessPointTags()
`AWS::EFS::AccessPoint.AccessPointTags`.
|
String |
getAttrAccessPointId() |
String |
getAttrArn() |
protected Map<String,Object> |
getCfnProperties() |
String |
getClientToken()
`AWS::EFS::AccessPoint.ClientToken`.
|
String |
getFileSystemId()
`AWS::EFS::AccessPoint.FileSystemId`.
|
Object |
getPosixUser()
`AWS::EFS::AccessPoint.PosixUser`.
|
Object |
getRootDirectory()
`AWS::EFS::AccessPoint.RootDirectory`.
|
void |
inspect(TreeInspector inspector)
Examines the CloudFormation resource and discloses attributes.
|
protected Map<String,Object> |
renderProperties(Map<String,Object> props) |
void |
setAccessPointTags(IResolvable value)
`AWS::EFS::AccessPoint.AccessPointTags`.
|
void |
setAccessPointTags(List<Object> value)
`AWS::EFS::AccessPoint.AccessPointTags`.
|
void |
setClientToken(String value)
`AWS::EFS::AccessPoint.ClientToken`.
|
void |
setFileSystemId(String value)
`AWS::EFS::AccessPoint.FileSystemId`.
|
void |
setPosixUser(CfnAccessPoint.PosixUserProperty value)
`AWS::EFS::AccessPoint.PosixUser`.
|
void |
setPosixUser(IResolvable value)
`AWS::EFS::AccessPoint.PosixUser`.
|
void |
setRootDirectory(CfnAccessPoint.RootDirectoryProperty value)
`AWS::EFS::AccessPoint.RootDirectory`.
|
void |
setRootDirectory(IResolvable value)
`AWS::EFS::AccessPoint.RootDirectory`.
|
addDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, isCfnResource, shouldSynthesize, toString, validatePropertiesgetRefgetCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdjsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet@Stability(value=Stable) public static final String CFN_RESOURCE_TYPE_NAME
protected CfnAccessPoint(software.amazon.jsii.JsiiObjectRef objRef)
protected CfnAccessPoint(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
@Stability(value=Stable)
public CfnAccessPoint(@NotNull
software.constructs.Construct scope,
@NotNull
String id,
@NotNull
CfnAccessPointProps props)
scope - - scope in which this resource is defined. This parameter is required.id - - scoped id of the resource. This parameter is required.props - - resource properties. This parameter is required.@Stability(value=Stable)
public void inspect(@NotNull
TreeInspector inspector)
inspect in interface IInspectableinspector - - tree inspector to collect and process attributes. This parameter is required.@Stability(value=Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
renderProperties in class CfnResourceprops - This parameter is required.@Stability(value=Stable) @Nullable public Object getAccessPointTags()
@Stability(value=Stable)
public void setAccessPointTags(@Nullable
IResolvable value)
@Stability(value=Stable)
public void setAccessPointTags(@Nullable
List<Object> value)
@Stability(value=Stable) @NotNull public String getAttrAccessPointId()
@Stability(value=Stable) @NotNull public String getAttrArn()
@Stability(value=Stable) @NotNull protected Map<String,Object> getCfnProperties()
getCfnProperties in class CfnResource@Stability(value=Stable) @Nullable public String getClientToken()
@Stability(value=Stable)
public void setClientToken(@Nullable
String value)
@Stability(value=Stable) @NotNull public String getFileSystemId()
@Stability(value=Stable)
public void setFileSystemId(@NotNull
String value)
@Stability(value=Stable) @Nullable public Object getPosixUser()
@Stability(value=Stable)
public void setPosixUser(@Nullable
CfnAccessPoint.PosixUserProperty value)
@Stability(value=Stable)
public void setPosixUser(@Nullable
IResolvable value)
@Stability(value=Stable) @Nullable public Object getRootDirectory()
@Stability(value=Stable)
public void setRootDirectory(@Nullable
CfnAccessPoint.RootDirectoryProperty value)
@Stability(value=Stable)
public void setRootDirectory(@Nullable
IResolvable value)
Copyright © 2021. All rights reserved.