@pulumi/aws-native
Version:
The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)
74 lines • 4.17 kB
JavaScript
;
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
Object.defineProperty(exports, "__esModule", { value: true });
exports.AccessPoint = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* The ``AWS::EFS::AccessPoint`` resource creates an EFS access point. An access point is an application-specific view into an EFS file system that applies an operating system user and group, and a file system path, to any file system request made through the access point. The operating system user and group override any identity information provided by the NFS client. The file system path is exposed as the access point's root directory. Applications using the access point can only access data in its own directory and below. To learn more, see [Mounting a file system using EFS access points](https://docs.aws.amazon.com/efs/latest/ug/efs-access-points.html).
* This operation requires permissions for the ``elasticfilesystem:CreateAccessPoint`` action.
*/
class AccessPoint extends pulumi.CustomResource {
/**
* Get an existing AccessPoint resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
static get(name, id, opts) {
return new AccessPoint(name, undefined, Object.assign(Object.assign({}, opts), { id: id }));
}
/**
* Returns true if the given object is an instance of AccessPoint. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
static isInstance(obj) {
if (obj === undefined || obj === null) {
return false;
}
return obj['__pulumiType'] === AccessPoint.__pulumiType;
}
/**
* Create a AccessPoint resource with the given unique name, arguments, and options.
*
* @param name The _unique_ name of the resource.
* @param args The arguments to use to populate this resource's properties.
* @param opts A bag of options that control this resource's behavior.
*/
constructor(name, args, opts) {
let resourceInputs = {};
opts = opts || {};
if (!opts.id) {
if ((!args || args.fileSystemId === undefined) && !opts.urn) {
throw new Error("Missing required property 'fileSystemId'");
}
resourceInputs["accessPointTags"] = args ? args.accessPointTags : undefined;
resourceInputs["clientToken"] = args ? args.clientToken : undefined;
resourceInputs["fileSystemId"] = args ? args.fileSystemId : undefined;
resourceInputs["posixUser"] = args ? args.posixUser : undefined;
resourceInputs["rootDirectory"] = args ? args.rootDirectory : undefined;
resourceInputs["accessPointId"] = undefined /*out*/;
resourceInputs["arn"] = undefined /*out*/;
}
else {
resourceInputs["accessPointId"] = undefined /*out*/;
resourceInputs["accessPointTags"] = undefined /*out*/;
resourceInputs["arn"] = undefined /*out*/;
resourceInputs["clientToken"] = undefined /*out*/;
resourceInputs["fileSystemId"] = undefined /*out*/;
resourceInputs["posixUser"] = undefined /*out*/;
resourceInputs["rootDirectory"] = undefined /*out*/;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
const replaceOnChanges = { replaceOnChanges: ["clientToken", "fileSystemId", "posixUser", "rootDirectory"] };
opts = pulumi.mergeOptions(opts, replaceOnChanges);
super(AccessPoint.__pulumiType, name, resourceInputs, opts);
}
}
exports.AccessPoint = AccessPoint;
/** @internal */
AccessPoint.__pulumiType = 'aws-native:efs:AccessPoint';
//# sourceMappingURL=accessPoint.js.map