The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Paws::EFS::DescribeAccessPoints - Arguments for method DescribeAccessPoints on Paws::EFS

DESCRIPTION

This class represents the parameters used for calling the method DescribeAccessPoints on the Amazon Elastic File System service. Use the attributes of this class as arguments to method DescribeAccessPoints.

You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to DescribeAccessPoints.

SYNOPSIS

    my $elasticfilesystem = Paws->service('EFS');
    my $DescribeAccessPointsResponse = $elasticfilesystem->DescribeAccessPoints(
      AccessPointId => 'MyAccessPointId',    # OPTIONAL
      FileSystemId  => 'MyFileSystemId',     # OPTIONAL
      MaxResults    => 1,                    # OPTIONAL
      NextToken     => 'MyToken',            # OPTIONAL
    );

    # Results:
    my $AccessPoints = $DescribeAccessPointsResponse->AccessPoints;
    my $NextToken    = $DescribeAccessPointsResponse->NextToken;

    # Returns a L<Paws::EFS::DescribeAccessPointsResponse> object.

Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see https://docs.aws.amazon.com/goto/WebAPI/elasticfilesystem/DescribeAccessPoints

ATTRIBUTES

AccessPointId => Str

(Optional) Specifies an EFS access point to describe in the response; mutually exclusive with FileSystemId.

FileSystemId => Str

(Optional) If you provide a FileSystemId, EFS returns all access points for that file system; mutually exclusive with AccessPointId.

MaxResults => Int

(Optional) When retrieving all access points for a file system, you can optionally specify the MaxItems parameter to limit the number of objects returned in a response. The default value is 100.

NextToken => Str

NextToken is present if the response is paginated. You can use NextMarker in the subsequent request to fetch the next page of access point descriptions.

SEE ALSO

This class forms part of Paws, documenting arguments for method DescribeAccessPoints in Paws::EFS

BUGS and CONTRIBUTIONS

The source code is located here: https://github.com/pplu/aws-sdk-perl

Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues