Interface AccessPointDescription.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AccessPointDescription.Builder,AccessPointDescription>,SdkBuilder<AccessPointDescription.Builder,AccessPointDescription>,SdkPojo
- Enclosing class:
- AccessPointDescription
public static interface AccessPointDescription.Builder extends SdkPojo, CopyableBuilder<AccessPointDescription.Builder,AccessPointDescription>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description AccessPointDescription.BuilderaccessPointArn(String accessPointArn)The unique Amazon Resource Name (ARN) associated with the access point.AccessPointDescription.BuilderaccessPointId(String accessPointId)The ID of the access point, assigned by Amazon EFS.AccessPointDescription.BuilderclientToken(String clientToken)The opaque string specified in the request to ensure idempotent creation.AccessPointDescription.BuilderfileSystemId(String fileSystemId)The ID of the EFS file system that the access point applies to.AccessPointDescription.BuilderlifeCycleState(String lifeCycleState)Identifies the lifecycle phase of the access point.AccessPointDescription.BuilderlifeCycleState(LifeCycleState lifeCycleState)Identifies the lifecycle phase of the access point.AccessPointDescription.Buildername(String name)The name of the access point.AccessPointDescription.BuilderownerId(String ownerId)Identifies the Amazon Web Services account that owns the access point resource.default AccessPointDescription.BuilderposixUser(Consumer<PosixUser.Builder> posixUser)The full POSIX identity, including the user ID, group ID, and secondary group IDs on the access point that is used for all file operations by NFS clients using the access point.AccessPointDescription.BuilderposixUser(PosixUser posixUser)The full POSIX identity, including the user ID, group ID, and secondary group IDs on the access point that is used for all file operations by NFS clients using the access point.default AccessPointDescription.BuilderrootDirectory(Consumer<RootDirectory.Builder> rootDirectory)The directory on the EFS file system that the access point exposes as the root directory to NFS clients using the access point.AccessPointDescription.BuilderrootDirectory(RootDirectory rootDirectory)The directory on the EFS file system that the access point exposes as the root directory to NFS clients using the access point.AccessPointDescription.Buildertags(Collection<Tag> tags)The tags associated with the access point, presented as an array of Tag objects.AccessPointDescription.Buildertags(Consumer<Tag.Builder>... tags)The tags associated with the access point, presented as an array of Tag objects.AccessPointDescription.Buildertags(Tag... tags)The tags associated with the access point, presented as an array of Tag objects.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
clientToken
AccessPointDescription.Builder clientToken(String clientToken)
The opaque string specified in the request to ensure idempotent creation.
- Parameters:
clientToken- The opaque string specified in the request to ensure idempotent creation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
AccessPointDescription.Builder name(String name)
The name of the access point. This is the value of the
Nametag.- Parameters:
name- The name of the access point. This is the value of theNametag.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
AccessPointDescription.Builder tags(Collection<Tag> tags)
The tags associated with the access point, presented as an array of Tag objects.
- Parameters:
tags- The tags associated with the access point, presented as an array of Tag objects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
AccessPointDescription.Builder tags(Tag... tags)
The tags associated with the access point, presented as an array of Tag objects.
- Parameters:
tags- The tags associated with the access point, presented as an array of Tag objects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
AccessPointDescription.Builder tags(Consumer<Tag.Builder>... tags)
The tags associated with the access point, presented as an array of Tag objects.
This is a convenience method that creates an instance of theTag.Builderavoiding the need to create one manually viaTag.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tags(List.) - Parameters:
tags- a consumer that will call methods onTag.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tags(java.util.Collection)
-
accessPointId
AccessPointDescription.Builder accessPointId(String accessPointId)
The ID of the access point, assigned by Amazon EFS.
- Parameters:
accessPointId- The ID of the access point, assigned by Amazon EFS.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
accessPointArn
AccessPointDescription.Builder accessPointArn(String accessPointArn)
The unique Amazon Resource Name (ARN) associated with the access point.
- Parameters:
accessPointArn- The unique Amazon Resource Name (ARN) associated with the access point.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fileSystemId
AccessPointDescription.Builder fileSystemId(String fileSystemId)
The ID of the EFS file system that the access point applies to.
- Parameters:
fileSystemId- The ID of the EFS file system that the access point applies to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
posixUser
AccessPointDescription.Builder posixUser(PosixUser posixUser)
The full POSIX identity, including the user ID, group ID, and secondary group IDs on the access point that is used for all file operations by NFS clients using the access point.
- Parameters:
posixUser- The full POSIX identity, including the user ID, group ID, and secondary group IDs on the access point that is used for all file operations by NFS clients using the access point.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
posixUser
default AccessPointDescription.Builder posixUser(Consumer<PosixUser.Builder> posixUser)
The full POSIX identity, including the user ID, group ID, and secondary group IDs on the access point that is used for all file operations by NFS clients using the access point.
This is a convenience method that creates an instance of thePosixUser.Builderavoiding the need to create one manually viaPosixUser.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toposixUser(PosixUser).- Parameters:
posixUser- a consumer that will call methods onPosixUser.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
posixUser(PosixUser)
-
rootDirectory
AccessPointDescription.Builder rootDirectory(RootDirectory rootDirectory)
The directory on the EFS file system that the access point exposes as the root directory to NFS clients using the access point.
- Parameters:
rootDirectory- The directory on the EFS file system that the access point exposes as the root directory to NFS clients using the access point.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rootDirectory
default AccessPointDescription.Builder rootDirectory(Consumer<RootDirectory.Builder> rootDirectory)
The directory on the EFS file system that the access point exposes as the root directory to NFS clients using the access point.
This is a convenience method that creates an instance of theRootDirectory.Builderavoiding the need to create one manually viaRootDirectory.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed torootDirectory(RootDirectory).- Parameters:
rootDirectory- a consumer that will call methods onRootDirectory.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
rootDirectory(RootDirectory)
-
ownerId
AccessPointDescription.Builder ownerId(String ownerId)
Identifies the Amazon Web Services account that owns the access point resource.
- Parameters:
ownerId- Identifies the Amazon Web Services account that owns the access point resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lifeCycleState
AccessPointDescription.Builder lifeCycleState(String lifeCycleState)
Identifies the lifecycle phase of the access point.
- Parameters:
lifeCycleState- Identifies the lifecycle phase of the access point.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
LifeCycleState,LifeCycleState
-
lifeCycleState
AccessPointDescription.Builder lifeCycleState(LifeCycleState lifeCycleState)
Identifies the lifecycle phase of the access point.
- Parameters:
lifeCycleState- Identifies the lifecycle phase of the access point.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
LifeCycleState,LifeCycleState
-
-