/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the securityhub-2018-10-26.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.SecurityHub.Model
{
///
/// Provides information about an Amazon EFS access point.
///
public partial class AwsEfsAccessPointDetails
{
private string _accessPointId;
private string _arn;
private string _clientToken;
private string _fileSystemId;
private AwsEfsAccessPointPosixUserDetails _posixUser;
private AwsEfsAccessPointRootDirectoryDetails _rootDirectory;
///
/// Gets and sets the property AccessPointId.
///
/// The ID of the Amazon EFS access point.
///
///
public string AccessPointId
{
get { return this._accessPointId; }
set { this._accessPointId = value; }
}
// Check to see if AccessPointId property is set
internal bool IsSetAccessPointId()
{
return this._accessPointId != null;
}
///
/// Gets and sets the property Arn.
///
/// The Amazon Resource Name (ARN) of the Amazon EFS access point.
///
///
public string Arn
{
get { return this._arn; }
set { this._arn = value; }
}
// Check to see if Arn property is set
internal bool IsSetArn()
{
return this._arn != null;
}
///
/// Gets and sets the property ClientToken.
///
/// The opaque string specified in the request to ensure idempotent creation.
///
///
public string ClientToken
{
get { return this._clientToken; }
set { this._clientToken = value; }
}
// Check to see if ClientToken property is set
internal bool IsSetClientToken()
{
return this._clientToken != null;
}
///
/// Gets and sets the property FileSystemId.
///
/// The ID of the Amazon EFS file system that the access point applies to.
///
///
public string FileSystemId
{
get { return this._fileSystemId; }
set { this._fileSystemId = value; }
}
// Check to see if FileSystemId property is set
internal bool IsSetFileSystemId()
{
return this._fileSystemId != null;
}
///
/// Gets and sets the property 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.
///
///
public AwsEfsAccessPointPosixUserDetails PosixUser
{
get { return this._posixUser; }
set { this._posixUser = value; }
}
// Check to see if PosixUser property is set
internal bool IsSetPosixUser()
{
return this._posixUser != null;
}
///
/// Gets and sets the property RootDirectory.
///
/// The directory on the Amazon EFS file system that the access point exposes as the root
/// directory to NFS clients using the access point.
///
///
public AwsEfsAccessPointRootDirectoryDetails RootDirectory
{
get { return this._rootDirectory; }
set { this._rootDirectory = value; }
}
// Check to see if RootDirectory property is set
internal bool IsSetRootDirectory()
{
return this._rootDirectory != null;
}
}
}