All Downloads are FREE. Search and download functionalities are using the official Maven repository.

models.elasticfilesystem-2015-02-01-intermediate.json Maven / Gradle / Ivy

Go to download

The AWS SDK for Java with support for OSGi. The AWS SDK for Java provides Java APIs for building software on AWS' cost-effective, scalable, and reliable infrastructure products. The AWS Java SDK allows developers to code against APIs for all of Amazon's infrastructure web services (Amazon S3, Amazon EC2, Amazon SQS, Amazon Relational Database Service, Amazon AutoScaling, etc).

There is a newer version: 1.11.60
Show newest version
{
  "metadata" : {
    "apiVersion" : "2015-02-01",
    "protocol" : "rest-json",
    "checksumFormat" : null,
    "documentation" : "Amazon Elastic File System",
    "defaultEndpoint" : "https://elasticfilesystem.us-east-1.amazonaws.com",
    "defaultEndpointWithoutHttpProtocol" : "elasticfilesystem.us-east-1.amazonaws.com",
    "syncInterface" : "AmazonElasticFileSystem",
    "syncClient" : "AmazonElasticFileSystemClient",
    "asyncInterface" : "AmazonElasticFileSystemAsync",
    "asyncClient" : "AmazonElasticFileSystemAsyncClient",
    "packageName" : "com.amazonaws.services.elasticfilesystem",
    "packagePath" : "com/amazonaws/services/elasticfilesystem",
    "serviceAbbreviation" : "EFS",
    "serviceFullName" : "Amazon Elastic File System",
    "hasApiWithStreamInput" : false,
    "contentType" : "",
    "jsonVersion" : "1.1",
    "endpointPrefix" : "elasticfilesystem",
    "signingName" : "elasticfilesystem",
    "protocolDefaultExceptionUmarshallerImpl" : null,
    "syncClientBuilderClassName" : "AmazonElasticFileSystemClientBuilder",
    "asyncClientBuilderClassName" : "AmazonElasticFileSystemAsyncClientBuilder",
    "serviceName" : "EFS",
    "jsonProtocol" : true,
    "xmlProtocol" : false,
    "cborProtocol" : false,
    "unmarshallerContextClassName" : "JsonUnmarshallerContext",
    "unmarshallerClassSuffix" : "JsonUnmarshaller"
  },
  "operations" : {
    "CreateFileSystem" : {
      "documentation" : "

Creates a new, empty file system. The operation requires a creation token in the request that Amazon EFS uses to ensure idempotent creation (calling the operation with same creation token has no effect). If a file system does not currently exist that is owned by the caller's AWS account with the specified creation token, this operation does the following:

  • Creates a new, empty file system. The file system will have an Amazon EFS assigned ID, and an initial lifecycle state creating.

  • Returns with the description of the created file system.

Otherwise, this operation returns a FileSystemAlreadyExists error with the ID of the existing file system.

For basic use cases, you can use a randomly generated UUID for the creation token.

The idempotent operation allows you to retry a CreateFileSystem call without risk of creating an extra file system. This can happen when an initial call fails in a way that leaves it uncertain whether or not a file system was actually created. An example might be that a transport level timeout occurred or your connection was reset. As long as you use the same creation token, if the initial call had succeeded in creating a file system, the client can learn of its existence from the FileSystemAlreadyExists error.

The CreateFileSystem call returns while the file system's lifecycle state is still creating. You can check the file system creation status by calling the DescribeFileSystems operation, which among other things returns the file system state.

This operation also takes an optional PerformanceMode parameter that you choose for your file system. We recommend generalPurpose performance mode for most file systems. File systems using the maxIO performance mode can scale to higher levels of aggregate throughput and operations per second with a tradeoff of slightly higher latencies for most file operations. The performance mode can't be changed after the file system has been created. For more information, see Amazon EFS: Performance Modes.

After the file system is fully created, Amazon EFS sets its lifecycle state to available, at which point you can create one or more mount targets for the file system in your VPC. For more information, see CreateMountTarget. You mount your Amazon EFS file system on an EC2 instances in your VPC via the mount target. For more information, see Amazon EFS: How it Works.

This operation requires permissions for the elasticfilesystem:CreateFileSystem action.

", "operationName" : "CreateFileSystem", "deprecated" : false, "input" : { "variableName" : "createFileSystemRequest", "variableType" : "CreateFileSystemRequest", "variableDeclarationType" : "CreateFileSystemRequest", "documentation" : "", "simpleType" : "CreateFileSystemRequest", "variableSetterType" : "CreateFileSystemRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "CreateFileSystemResult", "documentation" : "

Description of the file system.

" }, "exceptions" : [ { "exceptionName" : "BadRequestException", "documentation" : "

Returned if the request is malformed or contains an error such as an invalid parameter value or a missing required parameter.

" }, { "exceptionName" : "InternalServerErrorException", "documentation" : "

Returned if an error occurred on the server side.

" }, { "exceptionName" : "FileSystemAlreadyExistsException", "documentation" : "

Returned if the file system you are trying to create already exists, with the creation token you provided.

" }, { "exceptionName" : "FileSystemLimitExceededException", "documentation" : "

Returned if the AWS account has already created maximum number of file systems allowed per account.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "CreateFileSystemResult", "asyncReturnType" : "CreateFileSystemResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "createFileSystem" }, "CreateMountTarget" : { "documentation" : "

Creates a mount target for a file system. You can then mount the file system on EC2 instances via the mount target.

You can create one mount target in each Availability Zone in your VPC. All EC2 instances in a VPC within a given Availability Zone share a single mount target for a given file system. If you have multiple subnets in an Availability Zone, you create a mount target in one of the subnets. EC2 instances do not need to be in the same subnet as the mount target in order to access their file system. For more information, see Amazon EFS: How it Works.

In the request, you also specify a file system ID for which you are creating the mount target and the file system's lifecycle state must be available. For more information, see DescribeFileSystems.

In the request, you also provide a subnet ID, which determines the following:

  • VPC in which Amazon EFS creates the mount target

  • Availability Zone in which Amazon EFS creates the mount target

  • IP address range from which Amazon EFS selects the IP address of the mount target (if you don't specify an IP address in the request)

After creating the mount target, Amazon EFS returns a response that includes, a MountTargetId and an IpAddress. You use this IP address when mounting the file system in an EC2 instance. You can also use the mount target's DNS name when mounting the file system. The EC2 instance on which you mount the file system via the mount target can resolve the mount target's DNS name to its IP address. For more information, see How it Works: Implementation Overview.

Note that you can create mount targets for a file system in only one VPC, and there can be only one mount target per Availability Zone. That is, if the file system already has one or more mount targets created for it, the subnet specified in the request to add another mount target must meet the following requirements:

  • Must belong to the same VPC as the subnets of the existing mount targets

  • Must not be in the same Availability Zone as any of the subnets of the existing mount targets

If the request satisfies the requirements, Amazon EFS does the following:

  • Creates a new mount target in the specified subnet.

  • Also creates a new network interface in the subnet as follows:

    • If the request provides an IpAddress, Amazon EFS assigns that IP address to the network interface. Otherwise, Amazon EFS assigns a free address in the subnet (in the same way that the Amazon EC2 CreateNetworkInterface call does when a request does not specify a primary private IP address).

    • If the request provides SecurityGroups, this network interface is associated with those security groups. Otherwise, it belongs to the default security group for the subnet's VPC.

    • Assigns the description Mount target fsmt-id for file system fs-id where fsmt-id is the mount target ID, and fs-id is the FileSystemId.

    • Sets the requesterManaged property of the network interface to true, and the requesterId value to EFS.

    Each Amazon EFS mount target has one corresponding requestor-managed EC2 network interface. After the network interface is created, Amazon EFS sets the NetworkInterfaceId field in the mount target's description to the network interface ID, and the IpAddress field to its address. If network interface creation fails, the entire CreateMountTarget operation fails.

The CreateMountTarget call returns only after creating the network interface, but while the mount target state is still creating. You can check the mount target creation status by calling the DescribeFileSystems operation, which among other things returns the mount target state.

We recommend you create a mount target in each of the Availability Zones. There are cost considerations for using a file system in an Availability Zone through a mount target created in another Availability Zone. For more information, see Amazon EFS. In addition, by always using a mount target local to the instance's Availability Zone, you eliminate a partial failure scenario. If the Availability Zone in which your mount target is created goes down, then you won't be able to access your file system through that mount target.

This operation requires permissions for the following action on the file system:

  • elasticfilesystem:CreateMountTarget

This operation also requires permissions for the following Amazon EC2 actions:

  • ec2:DescribeSubnets

  • ec2:DescribeNetworkInterfaces

  • ec2:CreateNetworkInterface

", "operationName" : "CreateMountTarget", "deprecated" : false, "input" : { "variableName" : "createMountTargetRequest", "variableType" : "CreateMountTargetRequest", "variableDeclarationType" : "CreateMountTargetRequest", "documentation" : "

", "simpleType" : "CreateMountTargetRequest", "variableSetterType" : "CreateMountTargetRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "CreateMountTargetResult", "documentation" : "

Provides a description of a mount target.

" }, "exceptions" : [ { "exceptionName" : "BadRequestException", "documentation" : "

Returned if the request is malformed or contains an error such as an invalid parameter value or a missing required parameter.

" }, { "exceptionName" : "InternalServerErrorException", "documentation" : "

Returned if an error occurred on the server side.

" }, { "exceptionName" : "FileSystemNotFoundException", "documentation" : "

Returned if the specified FileSystemId does not exist in the requester's AWS account.

" }, { "exceptionName" : "IncorrectFileSystemLifeCycleStateException", "documentation" : "

Returned if the file system's life cycle state is not \"created\".

" }, { "exceptionName" : "MountTargetConflictException", "documentation" : "

Returned if the mount target would violate one of the specified restrictions based on the file system's existing mount targets.

" }, { "exceptionName" : "SubnetNotFoundException", "documentation" : "

Returned if there is no subnet with ID SubnetId provided in the request.

" }, { "exceptionName" : "NoFreeAddressesInSubnetException", "documentation" : "

Returned if IpAddress was not specified in the request and there are no free IP addresses in the subnet.

" }, { "exceptionName" : "IpAddressInUseException", "documentation" : "

Returned if the request specified an IpAddress that is already in use in the subnet.

" }, { "exceptionName" : "NetworkInterfaceLimitExceededException", "documentation" : "

The calling account has reached the ENI limit for the specific AWS region. Client should try to delete some ENIs or get its account limit raised. For more information, see Amazon VPC Limits in the Amazon Virtual Private Cloud User Guide (see the Network interfaces per VPC entry in the table).

" }, { "exceptionName" : "SecurityGroupLimitExceededException", "documentation" : "

Returned if the size of SecurityGroups specified in the request is greater than five.

" }, { "exceptionName" : "SecurityGroupNotFoundException", "documentation" : "

Returned if one of the specified security groups does not exist in the subnet's VPC.

" }, { "exceptionName" : "UnsupportedAvailabilityZoneException", "documentation" : null } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "CreateMountTargetResult", "asyncReturnType" : "CreateMountTargetResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "createMountTarget" }, "CreateTags" : { "documentation" : "

Creates or overwrites tags associated with a file system. Each tag is a key-value pair. If a tag key specified in the request already exists on the file system, this operation overwrites its value with the value provided in the request. If you add the Name tag to your file system, Amazon EFS returns it in the response to the DescribeFileSystems operation.

This operation requires permission for the elasticfilesystem:CreateTags action.

", "operationName" : "CreateTags", "deprecated" : false, "input" : { "variableName" : "createTagsRequest", "variableType" : "CreateTagsRequest", "variableDeclarationType" : "CreateTagsRequest", "documentation" : "

", "simpleType" : "CreateTagsRequest", "variableSetterType" : "CreateTagsRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "CreateTagsResult", "documentation" : null }, "exceptions" : [ { "exceptionName" : "BadRequestException", "documentation" : "

Returned if the request is malformed or contains an error such as an invalid parameter value or a missing required parameter.

" }, { "exceptionName" : "InternalServerErrorException", "documentation" : "

Returned if an error occurred on the server side.

" }, { "exceptionName" : "FileSystemNotFoundException", "documentation" : "

Returned if the specified FileSystemId does not exist in the requester's AWS account.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "CreateTagsResult", "asyncReturnType" : "CreateTagsResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "createTags" }, "DeleteFileSystem" : { "documentation" : "

Deletes a file system, permanently severing access to its contents. Upon return, the file system no longer exists and you can't access any contents of the deleted file system.

You can't delete a file system that is in use. That is, if the file system has any mount targets, you must first delete them. For more information, see DescribeMountTargets and DeleteMountTarget.

The DeleteFileSystem call returns while the file system state is still deleting. You can check the file system deletion status by calling the DescribeFileSystems operation, which returns a list of file systems in your account. If you pass file system ID or creation token for the deleted file system, the DescribeFileSystems returns a 404 FileSystemNotFound error.

This operation requires permissions for the elasticfilesystem:DeleteFileSystem action.

", "operationName" : "DeleteFileSystem", "deprecated" : false, "input" : { "variableName" : "deleteFileSystemRequest", "variableType" : "DeleteFileSystemRequest", "variableDeclarationType" : "DeleteFileSystemRequest", "documentation" : "

", "simpleType" : "DeleteFileSystemRequest", "variableSetterType" : "DeleteFileSystemRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "DeleteFileSystemResult", "documentation" : null }, "exceptions" : [ { "exceptionName" : "BadRequestException", "documentation" : "

Returned if the request is malformed or contains an error such as an invalid parameter value or a missing required parameter.

" }, { "exceptionName" : "InternalServerErrorException", "documentation" : "

Returned if an error occurred on the server side.

" }, { "exceptionName" : "FileSystemNotFoundException", "documentation" : "

Returned if the specified FileSystemId does not exist in the requester's AWS account.

" }, { "exceptionName" : "FileSystemInUseException", "documentation" : "

Returned if a file system has mount targets.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "DeleteFileSystemResult", "asyncReturnType" : "DeleteFileSystemResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "deleteFileSystem" }, "DeleteMountTarget" : { "documentation" : "

Deletes the specified mount target.

This operation forcibly breaks any mounts of the file system via the mount target that is being deleted, which might disrupt instances or applications using those mounts. To avoid applications getting cut off abruptly, you might consider unmounting any mounts of the mount target, if feasible. The operation also deletes the associated network interface. Uncommitted writes may be lost, but breaking a mount target using this operation does not corrupt the file system itself. The file system you created remains. You can mount an EC2 instance in your VPC via another mount target.

This operation requires permissions for the following action on the file system:

  • elasticfilesystem:DeleteMountTarget

The DeleteMountTarget call returns while the mount target state is still deleting. You can check the mount target deletion by calling the DescribeMountTargets operation, which returns a list of mount target descriptions for the given file system.

The operation also requires permissions for the following Amazon EC2 action on the mount target's network interface:

  • ec2:DeleteNetworkInterface

", "operationName" : "DeleteMountTarget", "deprecated" : false, "input" : { "variableName" : "deleteMountTargetRequest", "variableType" : "DeleteMountTargetRequest", "variableDeclarationType" : "DeleteMountTargetRequest", "documentation" : "

", "simpleType" : "DeleteMountTargetRequest", "variableSetterType" : "DeleteMountTargetRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "DeleteMountTargetResult", "documentation" : null }, "exceptions" : [ { "exceptionName" : "BadRequestException", "documentation" : "

Returned if the request is malformed or contains an error such as an invalid parameter value or a missing required parameter.

" }, { "exceptionName" : "InternalServerErrorException", "documentation" : "

Returned if an error occurred on the server side.

" }, { "exceptionName" : "DependencyTimeoutException", "documentation" : "

The service timed out trying to fulfill the request, and the client should try the call again.

" }, { "exceptionName" : "MountTargetNotFoundException", "documentation" : "

Returned if there is no mount target with the specified ID found in the caller's account.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "DeleteMountTargetResult", "asyncReturnType" : "DeleteMountTargetResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "deleteMountTarget" }, "DeleteTags" : { "documentation" : "

Deletes the specified tags from a file system. If the DeleteTags request includes a tag key that does not exist, Amazon EFS ignores it and doesn't cause an error. For more information about tags and related restrictions, see Tag Restrictions in the AWS Billing and Cost Management User Guide.

This operation requires permissions for the elasticfilesystem:DeleteTags action.

", "operationName" : "DeleteTags", "deprecated" : false, "input" : { "variableName" : "deleteTagsRequest", "variableType" : "DeleteTagsRequest", "variableDeclarationType" : "DeleteTagsRequest", "documentation" : "

", "simpleType" : "DeleteTagsRequest", "variableSetterType" : "DeleteTagsRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "DeleteTagsResult", "documentation" : null }, "exceptions" : [ { "exceptionName" : "BadRequestException", "documentation" : "

Returned if the request is malformed or contains an error such as an invalid parameter value or a missing required parameter.

" }, { "exceptionName" : "InternalServerErrorException", "documentation" : "

Returned if an error occurred on the server side.

" }, { "exceptionName" : "FileSystemNotFoundException", "documentation" : "

Returned if the specified FileSystemId does not exist in the requester's AWS account.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "DeleteTagsResult", "asyncReturnType" : "DeleteTagsResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "deleteTags" }, "DescribeFileSystems" : { "documentation" : "

Returns the description of a specific Amazon EFS file system if either the file system CreationToken or the FileSystemId is provided. Otherwise, it returns descriptions of all file systems owned by the caller's AWS account in the AWS Region of the endpoint that you're calling.

When retrieving all file system descriptions, you can optionally specify the MaxItems parameter to limit the number of descriptions in a response. If more file system descriptions remain, Amazon EFS returns a NextMarker, an opaque token, in the response. In this case, you should send a subsequent request with the Marker request parameter set to the value of NextMarker.

To retrieve a list of your file system descriptions, this operation is used in an iterative process, where DescribeFileSystems is called first without the Marker and then the operation continues to call it with the Marker parameter set to the value of the NextMarker from the previous response until the response has no NextMarker.

The implementation may return fewer than MaxItems file system descriptions while still including a NextMarker value.

The order of file systems returned in the response of one DescribeFileSystems call and the order of file systems returned across the responses of a multi-call iteration is unspecified.

This operation requires permissions for the elasticfilesystem:DescribeFileSystems action.

", "operationName" : "DescribeFileSystems", "deprecated" : false, "input" : { "variableName" : "describeFileSystemsRequest", "variableType" : "DescribeFileSystemsRequest", "variableDeclarationType" : "DescribeFileSystemsRequest", "documentation" : "

", "simpleType" : "DescribeFileSystemsRequest", "variableSetterType" : "DescribeFileSystemsRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "DescribeFileSystemsResult", "documentation" : null }, "exceptions" : [ { "exceptionName" : "BadRequestException", "documentation" : "

Returned if the request is malformed or contains an error such as an invalid parameter value or a missing required parameter.

" }, { "exceptionName" : "InternalServerErrorException", "documentation" : "

Returned if an error occurred on the server side.

" }, { "exceptionName" : "FileSystemNotFoundException", "documentation" : "

Returned if the specified FileSystemId does not exist in the requester's AWS account.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "DescribeFileSystemsResult", "asyncReturnType" : "DescribeFileSystemsResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "describeFileSystems" }, "DescribeMountTargetSecurityGroups" : { "documentation" : "

Returns the security groups currently in effect for a mount target. This operation requires that the network interface of the mount target has been created and the lifecycle state of the mount target is not deleted.

This operation requires permissions for the following actions:

  • elasticfilesystem:DescribeMountTargetSecurityGroups action on the mount target's file system.

  • ec2:DescribeNetworkInterfaceAttribute action on the mount target's network interface.

", "operationName" : "DescribeMountTargetSecurityGroups", "deprecated" : false, "input" : { "variableName" : "describeMountTargetSecurityGroupsRequest", "variableType" : "DescribeMountTargetSecurityGroupsRequest", "variableDeclarationType" : "DescribeMountTargetSecurityGroupsRequest", "documentation" : "

", "simpleType" : "DescribeMountTargetSecurityGroupsRequest", "variableSetterType" : "DescribeMountTargetSecurityGroupsRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "DescribeMountTargetSecurityGroupsResult", "documentation" : null }, "exceptions" : [ { "exceptionName" : "BadRequestException", "documentation" : "

Returned if the request is malformed or contains an error such as an invalid parameter value or a missing required parameter.

" }, { "exceptionName" : "InternalServerErrorException", "documentation" : "

Returned if an error occurred on the server side.

" }, { "exceptionName" : "MountTargetNotFoundException", "documentation" : "

Returned if there is no mount target with the specified ID found in the caller's account.

" }, { "exceptionName" : "IncorrectMountTargetStateException", "documentation" : "

Returned if the mount target is not in the correct state for the operation.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "DescribeMountTargetSecurityGroupsResult", "asyncReturnType" : "DescribeMountTargetSecurityGroupsResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "describeMountTargetSecurityGroups" }, "DescribeMountTargets" : { "documentation" : "

Returns the descriptions of all the current mount targets, or a specific mount target, for a file system. When requesting all of the current mount targets, the order of mount targets returned in the response is unspecified.

This operation requires permissions for the elasticfilesystem:DescribeMountTargets action, on either the file system ID that you specify in FileSystemId, or on the file system of the mount target that you specify in MountTargetId.

", "operationName" : "DescribeMountTargets", "deprecated" : false, "input" : { "variableName" : "describeMountTargetsRequest", "variableType" : "DescribeMountTargetsRequest", "variableDeclarationType" : "DescribeMountTargetsRequest", "documentation" : "

", "simpleType" : "DescribeMountTargetsRequest", "variableSetterType" : "DescribeMountTargetsRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "DescribeMountTargetsResult", "documentation" : "

" }, "exceptions" : [ { "exceptionName" : "BadRequestException", "documentation" : "

Returned if the request is malformed or contains an error such as an invalid parameter value or a missing required parameter.

" }, { "exceptionName" : "InternalServerErrorException", "documentation" : "

Returned if an error occurred on the server side.

" }, { "exceptionName" : "FileSystemNotFoundException", "documentation" : "

Returned if the specified FileSystemId does not exist in the requester's AWS account.

" }, { "exceptionName" : "MountTargetNotFoundException", "documentation" : "

Returned if there is no mount target with the specified ID found in the caller's account.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "DescribeMountTargetsResult", "asyncReturnType" : "DescribeMountTargetsResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "describeMountTargets" }, "DescribeTags" : { "documentation" : "

Returns the tags associated with a file system. The order of tags returned in the response of one DescribeTags call and the order of tags returned across the responses of a multi-call iteration (when using pagination) is unspecified.

This operation requires permissions for the elasticfilesystem:DescribeTags action.

", "operationName" : "DescribeTags", "deprecated" : false, "input" : { "variableName" : "describeTagsRequest", "variableType" : "DescribeTagsRequest", "variableDeclarationType" : "DescribeTagsRequest", "documentation" : "

", "simpleType" : "DescribeTagsRequest", "variableSetterType" : "DescribeTagsRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "DescribeTagsResult", "documentation" : "

" }, "exceptions" : [ { "exceptionName" : "BadRequestException", "documentation" : "

Returned if the request is malformed or contains an error such as an invalid parameter value or a missing required parameter.

" }, { "exceptionName" : "InternalServerErrorException", "documentation" : "

Returned if an error occurred on the server side.

" }, { "exceptionName" : "FileSystemNotFoundException", "documentation" : "

Returned if the specified FileSystemId does not exist in the requester's AWS account.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "DescribeTagsResult", "asyncReturnType" : "DescribeTagsResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "describeTags" }, "ModifyMountTargetSecurityGroups" : { "documentation" : "

Modifies the set of security groups in effect for a mount target.

When you create a mount target, Amazon EFS also creates a new network interface. For more information, see CreateMountTarget. This operation replaces the security groups in effect for the network interface associated with a mount target, with the SecurityGroups provided in the request. This operation requires that the network interface of the mount target has been created and the lifecycle state of the mount target is not deleted.

The operation requires permissions for the following actions:

  • elasticfilesystem:ModifyMountTargetSecurityGroups action on the mount target's file system.

  • ec2:ModifyNetworkInterfaceAttribute action on the mount target's network interface.

", "operationName" : "ModifyMountTargetSecurityGroups", "deprecated" : false, "input" : { "variableName" : "modifyMountTargetSecurityGroupsRequest", "variableType" : "ModifyMountTargetSecurityGroupsRequest", "variableDeclarationType" : "ModifyMountTargetSecurityGroupsRequest", "documentation" : "

", "simpleType" : "ModifyMountTargetSecurityGroupsRequest", "variableSetterType" : "ModifyMountTargetSecurityGroupsRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "ModifyMountTargetSecurityGroupsResult", "documentation" : null }, "exceptions" : [ { "exceptionName" : "BadRequestException", "documentation" : "

Returned if the request is malformed or contains an error such as an invalid parameter value or a missing required parameter.

" }, { "exceptionName" : "InternalServerErrorException", "documentation" : "

Returned if an error occurred on the server side.

" }, { "exceptionName" : "MountTargetNotFoundException", "documentation" : "

Returned if there is no mount target with the specified ID found in the caller's account.

" }, { "exceptionName" : "IncorrectMountTargetStateException", "documentation" : "

Returned if the mount target is not in the correct state for the operation.

" }, { "exceptionName" : "SecurityGroupLimitExceededException", "documentation" : "

Returned if the size of SecurityGroups specified in the request is greater than five.

" }, { "exceptionName" : "SecurityGroupNotFoundException", "documentation" : "

Returned if one of the specified security groups does not exist in the subnet's VPC.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "ModifyMountTargetSecurityGroupsResult", "asyncReturnType" : "ModifyMountTargetSecurityGroupsResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "modifyMountTargetSecurityGroups" } }, "shapes" : { "CreateMountTargetResult" : { "c2jName" : "MountTargetDescription", "documentation" : "

Provides a description of a mount target.

", "shapeName" : "CreateMountTargetResult", "deprecated" : false, "required" : [ "MountTargetId", "FileSystemId", "SubnetId", "LifeCycleState" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

AWS account ID that owns the resource.

", "name" : "OwnerId", "c2jName" : "OwnerId", "c2jShape" : "AwsAccountId", "variable" : { "variableName" : "ownerId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

AWS account ID that owns the resource.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "ownerId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "OwnerId", "marshallLocationName" : "OwnerId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

AWS account ID that owns the resource.

\n@param ownerId AWS account ID that owns the resource.*/", "getterDocumentation" : "/**

AWS account ID that owns the resource.

\n@return AWS account ID that owns the resource.*/", "fluentSetterDocumentation" : "/**

AWS account ID that owns the resource.

\n@param ownerId AWS account ID that owns the resource.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

AWS account ID that owns the resource.

\n@param ownerId AWS account ID that owns the resource.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

System-assigned mount target ID.

", "name" : "MountTargetId", "c2jName" : "MountTargetId", "c2jShape" : "MountTargetId", "variable" : { "variableName" : "mountTargetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

System-assigned mount target ID.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "mountTargetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "MountTargetId", "marshallLocationName" : "MountTargetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

System-assigned mount target ID.

\n@param mountTargetId System-assigned mount target ID.*/", "getterDocumentation" : "/**

System-assigned mount target ID.

\n@return System-assigned mount target ID.*/", "fluentSetterDocumentation" : "/**

System-assigned mount target ID.

\n@param mountTargetId System-assigned mount target ID.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

System-assigned mount target ID.

\n@param mountTargetId System-assigned mount target ID.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

ID of the file system for which the mount target is intended.

", "name" : "FileSystemId", "c2jName" : "FileSystemId", "c2jShape" : "FileSystemId", "variable" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

ID of the file system for which the mount target is intended.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FileSystemId", "marshallLocationName" : "FileSystemId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

ID of the file system for which the mount target is intended.

\n@param fileSystemId ID of the file system for which the mount target is intended.*/", "getterDocumentation" : "/**

ID of the file system for which the mount target is intended.

\n@return ID of the file system for which the mount target is intended.*/", "fluentSetterDocumentation" : "/**

ID of the file system for which the mount target is intended.

\n@param fileSystemId ID of the file system for which the mount target is intended.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

ID of the file system for which the mount target is intended.

\n@param fileSystemId ID of the file system for which the mount target is intended.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

ID of the mount target's subnet.

", "name" : "SubnetId", "c2jName" : "SubnetId", "c2jShape" : "SubnetId", "variable" : { "variableName" : "subnetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

ID of the mount target's subnet.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "subnetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "SubnetId", "marshallLocationName" : "SubnetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

ID of the mount target's subnet.

\n@param subnetId ID of the mount target's subnet.*/", "getterDocumentation" : "/**

ID of the mount target's subnet.

\n@return ID of the mount target's subnet.*/", "fluentSetterDocumentation" : "/**

ID of the mount target's subnet.

\n@param subnetId ID of the mount target's subnet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

ID of the mount target's subnet.

\n@param subnetId ID of the mount target's subnet.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Lifecycle state of the mount target.

", "name" : "LifeCycleState", "c2jName" : "LifeCycleState", "c2jShape" : "LifeCycleState", "variable" : { "variableName" : "lifeCycleState", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Lifecycle state of the mount target.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "lifeCycleState", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "LifeCycleState", "marshallLocationName" : "LifeCycleState", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "LifeCycleState", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Lifecycle state of the mount target.

\n@param lifeCycleState Lifecycle state of the mount target.\n@see LifeCycleState*/", "getterDocumentation" : "/**

Lifecycle state of the mount target.

\n@return Lifecycle state of the mount target.\n@see LifeCycleState*/", "fluentSetterDocumentation" : "/**

Lifecycle state of the mount target.

\n@param lifeCycleState Lifecycle state of the mount target.\n@return Returns a reference to this object so that method calls can be chained together.\n@see LifeCycleState*/", "varargSetterDocumentation" : "/**

Lifecycle state of the mount target.

\n@param lifeCycleState Lifecycle state of the mount target.\n@return Returns a reference to this object so that method calls can be chained together.\n@see LifeCycleState*/" }, { "documentation" : "

Address at which the file system may be mounted via the mount target.

", "name" : "IpAddress", "c2jName" : "IpAddress", "c2jShape" : "IpAddress", "variable" : { "variableName" : "ipAddress", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Address at which the file system may be mounted via the mount target.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "ipAddress", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "IpAddress", "marshallLocationName" : "IpAddress", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Address at which the file system may be mounted via the mount target.

\n@param ipAddress Address at which the file system may be mounted via the mount target.*/", "getterDocumentation" : "/**

Address at which the file system may be mounted via the mount target.

\n@return Address at which the file system may be mounted via the mount target.*/", "fluentSetterDocumentation" : "/**

Address at which the file system may be mounted via the mount target.

\n@param ipAddress Address at which the file system may be mounted via the mount target.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Address at which the file system may be mounted via the mount target.

\n@param ipAddress Address at which the file system may be mounted via the mount target.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

ID of the network interface that Amazon EFS created when it created the mount target.

", "name" : "NetworkInterfaceId", "c2jName" : "NetworkInterfaceId", "c2jShape" : "NetworkInterfaceId", "variable" : { "variableName" : "networkInterfaceId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

ID of the network interface that Amazon EFS created when it created the mount target.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "networkInterfaceId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NetworkInterfaceId", "marshallLocationName" : "NetworkInterfaceId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

ID of the network interface that Amazon EFS created when it created the mount target.

\n@param networkInterfaceId ID of the network interface that Amazon EFS created when it created the mount target.*/", "getterDocumentation" : "/**

ID of the network interface that Amazon EFS created when it created the mount target.

\n@return ID of the network interface that Amazon EFS created when it created the mount target.*/", "fluentSetterDocumentation" : "/**

ID of the network interface that Amazon EFS created when it created the mount target.

\n@param networkInterfaceId ID of the network interface that Amazon EFS created when it created the mount target.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

ID of the network interface that Amazon EFS created when it created the mount target.

\n@param networkInterfaceId ID of the network interface that Amazon EFS created when it created the mount target.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "createMountTargetResult", "variableType" : "CreateMountTargetResult", "variableDeclarationType" : "CreateMountTargetResult", "documentation" : null, "simpleType" : "CreateMountTargetResult", "variableSetterType" : "CreateMountTargetResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "OwnerId" : { "documentation" : "

AWS account ID that owns the resource.

", "name" : "OwnerId", "c2jName" : "OwnerId", "c2jShape" : "AwsAccountId", "variable" : { "variableName" : "ownerId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

AWS account ID that owns the resource.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "ownerId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "OwnerId", "marshallLocationName" : "OwnerId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

AWS account ID that owns the resource.

\n@param ownerId AWS account ID that owns the resource.*/", "getterDocumentation" : "/**

AWS account ID that owns the resource.

\n@return AWS account ID that owns the resource.*/", "fluentSetterDocumentation" : "/**

AWS account ID that owns the resource.

\n@param ownerId AWS account ID that owns the resource.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

AWS account ID that owns the resource.

\n@param ownerId AWS account ID that owns the resource.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "LifeCycleState" : { "documentation" : "

Lifecycle state of the mount target.

", "name" : "LifeCycleState", "c2jName" : "LifeCycleState", "c2jShape" : "LifeCycleState", "variable" : { "variableName" : "lifeCycleState", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Lifecycle state of the mount target.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "lifeCycleState", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "LifeCycleState", "marshallLocationName" : "LifeCycleState", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "LifeCycleState", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Lifecycle state of the mount target.

\n@param lifeCycleState Lifecycle state of the mount target.\n@see LifeCycleState*/", "getterDocumentation" : "/**

Lifecycle state of the mount target.

\n@return Lifecycle state of the mount target.\n@see LifeCycleState*/", "fluentSetterDocumentation" : "/**

Lifecycle state of the mount target.

\n@param lifeCycleState Lifecycle state of the mount target.\n@return Returns a reference to this object so that method calls can be chained together.\n@see LifeCycleState*/", "varargSetterDocumentation" : "/**

Lifecycle state of the mount target.

\n@param lifeCycleState Lifecycle state of the mount target.\n@return Returns a reference to this object so that method calls can be chained together.\n@see LifeCycleState*/" }, "FileSystemId" : { "documentation" : "

ID of the file system for which the mount target is intended.

", "name" : "FileSystemId", "c2jName" : "FileSystemId", "c2jShape" : "FileSystemId", "variable" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

ID of the file system for which the mount target is intended.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FileSystemId", "marshallLocationName" : "FileSystemId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

ID of the file system for which the mount target is intended.

\n@param fileSystemId ID of the file system for which the mount target is intended.*/", "getterDocumentation" : "/**

ID of the file system for which the mount target is intended.

\n@return ID of the file system for which the mount target is intended.*/", "fluentSetterDocumentation" : "/**

ID of the file system for which the mount target is intended.

\n@param fileSystemId ID of the file system for which the mount target is intended.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

ID of the file system for which the mount target is intended.

\n@param fileSystemId ID of the file system for which the mount target is intended.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "IpAddress" : { "documentation" : "

Address at which the file system may be mounted via the mount target.

", "name" : "IpAddress", "c2jName" : "IpAddress", "c2jShape" : "IpAddress", "variable" : { "variableName" : "ipAddress", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Address at which the file system may be mounted via the mount target.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "ipAddress", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "IpAddress", "marshallLocationName" : "IpAddress", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Address at which the file system may be mounted via the mount target.

\n@param ipAddress Address at which the file system may be mounted via the mount target.*/", "getterDocumentation" : "/**

Address at which the file system may be mounted via the mount target.

\n@return Address at which the file system may be mounted via the mount target.*/", "fluentSetterDocumentation" : "/**

Address at which the file system may be mounted via the mount target.

\n@param ipAddress Address at which the file system may be mounted via the mount target.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Address at which the file system may be mounted via the mount target.

\n@param ipAddress Address at which the file system may be mounted via the mount target.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "SubnetId" : { "documentation" : "

ID of the mount target's subnet.

", "name" : "SubnetId", "c2jName" : "SubnetId", "c2jShape" : "SubnetId", "variable" : { "variableName" : "subnetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

ID of the mount target's subnet.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "subnetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "SubnetId", "marshallLocationName" : "SubnetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

ID of the mount target's subnet.

\n@param subnetId ID of the mount target's subnet.*/", "getterDocumentation" : "/**

ID of the mount target's subnet.

\n@return ID of the mount target's subnet.*/", "fluentSetterDocumentation" : "/**

ID of the mount target's subnet.

\n@param subnetId ID of the mount target's subnet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

ID of the mount target's subnet.

\n@param subnetId ID of the mount target's subnet.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "MountTargetId" : { "documentation" : "

System-assigned mount target ID.

", "name" : "MountTargetId", "c2jName" : "MountTargetId", "c2jShape" : "MountTargetId", "variable" : { "variableName" : "mountTargetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

System-assigned mount target ID.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "mountTargetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "MountTargetId", "marshallLocationName" : "MountTargetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

System-assigned mount target ID.

\n@param mountTargetId System-assigned mount target ID.*/", "getterDocumentation" : "/**

System-assigned mount target ID.

\n@return System-assigned mount target ID.*/", "fluentSetterDocumentation" : "/**

System-assigned mount target ID.

\n@param mountTargetId System-assigned mount target ID.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

System-assigned mount target ID.

\n@param mountTargetId System-assigned mount target ID.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "NetworkInterfaceId" : { "documentation" : "

ID of the network interface that Amazon EFS created when it created the mount target.

", "name" : "NetworkInterfaceId", "c2jName" : "NetworkInterfaceId", "c2jShape" : "NetworkInterfaceId", "variable" : { "variableName" : "networkInterfaceId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

ID of the network interface that Amazon EFS created when it created the mount target.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "networkInterfaceId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NetworkInterfaceId", "marshallLocationName" : "NetworkInterfaceId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

ID of the network interface that Amazon EFS created when it created the mount target.

\n@param networkInterfaceId ID of the network interface that Amazon EFS created when it created the mount target.*/", "getterDocumentation" : "/**

ID of the network interface that Amazon EFS created when it created the mount target.

\n@return ID of the network interface that Amazon EFS created when it created the mount target.*/", "fluentSetterDocumentation" : "/**

ID of the network interface that Amazon EFS created when it created the mount target.

\n@param networkInterfaceId ID of the network interface that Amazon EFS created when it created the mount target.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

ID of the network interface that Amazon EFS created when it created the mount target.

\n@param networkInterfaceId ID of the network interface that Amazon EFS created when it created the mount target.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "MountTargetNotFoundException" : { "c2jName" : "MountTargetNotFound", "documentation" : "

Returned if there is no mount target with the specified ID found in the caller's account.

", "shapeName" : "MountTargetNotFoundException", "deprecated" : false, "required" : [ "ErrorCode" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "", "name" : "ErrorCode", "c2jName" : "ErrorCode", "c2jShape" : "ErrorCode", "variable" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ErrorCode", "marshallLocationName" : "ErrorCode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param errorCode */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "mountTargetNotFoundException", "variableType" : "MountTargetNotFoundException", "variableDeclarationType" : "MountTargetNotFoundException", "documentation" : null, "simpleType" : "MountTargetNotFoundException", "variableSetterType" : "MountTargetNotFoundException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "MountTargetNotFound", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "ErrorCode" : { "documentation" : "", "name" : "ErrorCode", "c2jName" : "ErrorCode", "c2jShape" : "ErrorCode", "variable" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ErrorCode", "marshallLocationName" : "ErrorCode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param errorCode */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "DescribeMountTargetsResult" : { "c2jName" : "DescribeMountTargetsResponse", "documentation" : "

", "shapeName" : "DescribeMountTargetsResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

If the request included the Marker, the response returns that value in this field.

", "name" : "Marker", "c2jName" : "Marker", "c2jShape" : "Marker", "variable" : { "variableName" : "marker", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

If the request included the Marker, the response returns that value in this field.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "marker", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Marker", "marshallLocationName" : "Marker", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

If the request included the Marker, the response returns that value in this field.

\n@param marker If the request included the Marker, the response returns that value in this field.*/", "getterDocumentation" : "/**

If the request included the Marker, the response returns that value in this field.

\n@return If the request included the Marker, the response returns that value in this field.*/", "fluentSetterDocumentation" : "/**

If the request included the Marker, the response returns that value in this field.

\n@param marker If the request included the Marker, the response returns that value in this field.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

If the request included the Marker, the response returns that value in this field.

\n@param marker If the request included the Marker, the response returns that value in this field.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Returns the file system's mount targets as an array of MountTargetDescription objects.

", "name" : "MountTargets", "c2jName" : "MountTargets", "c2jShape" : "MountTargetDescriptions", "variable" : { "variableName" : "mountTargets", "variableType" : "java.util.List", "variableDeclarationType" : "com.amazonaws.internal.SdkInternalList", "documentation" : "

Returns the file system's mount targets as an array of MountTargetDescription objects.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "mountTargets", "variableType" : "java.util.List", "variableDeclarationType" : "com.amazonaws.internal.SdkInternalList", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "MountTargets", "marshallLocationName" : "MountTargets", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "MountTargetDescription", "memberLocationName" : null, "implType" : "com.amazonaws.internal.SdkInternalList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "MountTargetDescription", "variable" : { "variableName" : "member", "variableType" : "MountTargetDescription", "variableDeclarationType" : "MountTargetDescription", "documentation" : "", "simpleType" : "MountTargetDescription", "variableSetterType" : "MountTargetDescription" }, "setterModel" : { "variableName" : "member", "variableType" : "MountTargetDescription", "variableDeclarationType" : "MountTargetDescription", "documentation" : "", "simpleType" : "MountTargetDescription", "variableSetterType" : "MountTargetDescription" }, "getterModel" : { "returnType" : "MountTargetDescription", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "MountTargetDescription", "templateType" : "java.util.List", "templateImplType" : "com.amazonaws.internal.SdkInternalList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Returns the file system's mount targets as an array of MountTargetDescription objects.

\n@param mountTargets Returns the file system's mount targets as an array of MountTargetDescription objects.*/", "getterDocumentation" : "/**

Returns the file system's mount targets as an array of MountTargetDescription objects.

\n@return Returns the file system's mount targets as an array of MountTargetDescription objects.*/", "fluentSetterDocumentation" : "/**

Returns the file system's mount targets as an array of MountTargetDescription objects.

\n@param mountTargets Returns the file system's mount targets as an array of MountTargetDescription objects.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Returns the file system's mount targets as an array of MountTargetDescription objects.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setMountTargets(java.util.Collection)} or {@link #withMountTargets(java.util.Collection)} if you want to override the existing values.

\n@param mountTargets Returns the file system's mount targets as an array of MountTargetDescription objects.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

If a value is present, there are more mount targets to return. In a subsequent request, you can provide Marker in your request with this value to retrieve the next set of mount targets.

", "name" : "NextMarker", "c2jName" : "NextMarker", "c2jShape" : "Marker", "variable" : { "variableName" : "nextMarker", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

If a value is present, there are more mount targets to return. In a subsequent request, you can provide Marker in your request with this value to retrieve the next set of mount targets.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextMarker", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextMarker", "marshallLocationName" : "NextMarker", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

If a value is present, there are more mount targets to return. In a subsequent request, you can provide Marker in your request with this value to retrieve the next set of mount targets.

\n@param nextMarker If a value is present, there are more mount targets to return. In a subsequent request, you can provide Marker in your request with this value to retrieve the next set of mount targets.*/", "getterDocumentation" : "/**

If a value is present, there are more mount targets to return. In a subsequent request, you can provide Marker in your request with this value to retrieve the next set of mount targets.

\n@return If a value is present, there are more mount targets to return. In a subsequent request, you can provide Marker in your request with this value to retrieve the next set of mount targets.*/", "fluentSetterDocumentation" : "/**

If a value is present, there are more mount targets to return. In a subsequent request, you can provide Marker in your request with this value to retrieve the next set of mount targets.

\n@param nextMarker If a value is present, there are more mount targets to return. In a subsequent request, you can provide Marker in your request with this value to retrieve the next set of mount targets.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

If a value is present, there are more mount targets to return. In a subsequent request, you can provide Marker in your request with this value to retrieve the next set of mount targets.

\n@param nextMarker If a value is present, there are more mount targets to return. In a subsequent request, you can provide Marker in your request with this value to retrieve the next set of mount targets.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "describeMountTargetsResult", "variableType" : "DescribeMountTargetsResult", "variableDeclarationType" : "DescribeMountTargetsResult", "documentation" : null, "simpleType" : "DescribeMountTargetsResult", "variableSetterType" : "DescribeMountTargetsResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "MountTargets" : { "documentation" : "

Returns the file system's mount targets as an array of MountTargetDescription objects.

", "name" : "MountTargets", "c2jName" : "MountTargets", "c2jShape" : "MountTargetDescriptions", "variable" : { "variableName" : "mountTargets", "variableType" : "java.util.List", "variableDeclarationType" : "com.amazonaws.internal.SdkInternalList", "documentation" : "

Returns the file system's mount targets as an array of MountTargetDescription objects.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "mountTargets", "variableType" : "java.util.List", "variableDeclarationType" : "com.amazonaws.internal.SdkInternalList", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "MountTargets", "marshallLocationName" : "MountTargets", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "MountTargetDescription", "memberLocationName" : null, "implType" : "com.amazonaws.internal.SdkInternalList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "MountTargetDescription", "variable" : { "variableName" : "member", "variableType" : "MountTargetDescription", "variableDeclarationType" : "MountTargetDescription", "documentation" : "", "simpleType" : "MountTargetDescription", "variableSetterType" : "MountTargetDescription" }, "setterModel" : { "variableName" : "member", "variableType" : "MountTargetDescription", "variableDeclarationType" : "MountTargetDescription", "documentation" : "", "simpleType" : "MountTargetDescription", "variableSetterType" : "MountTargetDescription" }, "getterModel" : { "returnType" : "MountTargetDescription", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "MountTargetDescription", "templateType" : "java.util.List", "templateImplType" : "com.amazonaws.internal.SdkInternalList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Returns the file system's mount targets as an array of MountTargetDescription objects.

\n@param mountTargets Returns the file system's mount targets as an array of MountTargetDescription objects.*/", "getterDocumentation" : "/**

Returns the file system's mount targets as an array of MountTargetDescription objects.

\n@return Returns the file system's mount targets as an array of MountTargetDescription objects.*/", "fluentSetterDocumentation" : "/**

Returns the file system's mount targets as an array of MountTargetDescription objects.

\n@param mountTargets Returns the file system's mount targets as an array of MountTargetDescription objects.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Returns the file system's mount targets as an array of MountTargetDescription objects.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setMountTargets(java.util.Collection)} or {@link #withMountTargets(java.util.Collection)} if you want to override the existing values.

\n@param mountTargets Returns the file system's mount targets as an array of MountTargetDescription objects.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Marker" : { "documentation" : "

If the request included the Marker, the response returns that value in this field.

", "name" : "Marker", "c2jName" : "Marker", "c2jShape" : "Marker", "variable" : { "variableName" : "marker", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

If the request included the Marker, the response returns that value in this field.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "marker", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Marker", "marshallLocationName" : "Marker", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

If the request included the Marker, the response returns that value in this field.

\n@param marker If the request included the Marker, the response returns that value in this field.*/", "getterDocumentation" : "/**

If the request included the Marker, the response returns that value in this field.

\n@return If the request included the Marker, the response returns that value in this field.*/", "fluentSetterDocumentation" : "/**

If the request included the Marker, the response returns that value in this field.

\n@param marker If the request included the Marker, the response returns that value in this field.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

If the request included the Marker, the response returns that value in this field.

\n@param marker If the request included the Marker, the response returns that value in this field.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "NextMarker" : { "documentation" : "

If a value is present, there are more mount targets to return. In a subsequent request, you can provide Marker in your request with this value to retrieve the next set of mount targets.

", "name" : "NextMarker", "c2jName" : "NextMarker", "c2jShape" : "Marker", "variable" : { "variableName" : "nextMarker", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

If a value is present, there are more mount targets to return. In a subsequent request, you can provide Marker in your request with this value to retrieve the next set of mount targets.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextMarker", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextMarker", "marshallLocationName" : "NextMarker", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

If a value is present, there are more mount targets to return. In a subsequent request, you can provide Marker in your request with this value to retrieve the next set of mount targets.

\n@param nextMarker If a value is present, there are more mount targets to return. In a subsequent request, you can provide Marker in your request with this value to retrieve the next set of mount targets.*/", "getterDocumentation" : "/**

If a value is present, there are more mount targets to return. In a subsequent request, you can provide Marker in your request with this value to retrieve the next set of mount targets.

\n@return If a value is present, there are more mount targets to return. In a subsequent request, you can provide Marker in your request with this value to retrieve the next set of mount targets.*/", "fluentSetterDocumentation" : "/**

If a value is present, there are more mount targets to return. In a subsequent request, you can provide Marker in your request with this value to retrieve the next set of mount targets.

\n@param nextMarker If a value is present, there are more mount targets to return. In a subsequent request, you can provide Marker in your request with this value to retrieve the next set of mount targets.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

If a value is present, there are more mount targets to return. In a subsequent request, you can provide Marker in your request with this value to retrieve the next set of mount targets.

\n@param nextMarker If a value is present, there are more mount targets to return. In a subsequent request, you can provide Marker in your request with this value to retrieve the next set of mount targets.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "DescribeTagsRequest" : { "c2jName" : "DescribeTagsRequest", "documentation" : "

", "shapeName" : "DescribeTagsRequest", "deprecated" : false, "required" : [ "FileSystemId" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

(Optional) Maximum number of file system tags to return in the response. It must be an integer with a value greater than zero.

", "name" : "MaxItems", "c2jName" : "MaxItems", "c2jShape" : "MaxItems", "variable" : { "variableName" : "maxItems", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

(Optional) Maximum number of file system tags to return in the response. It must be an integer with a value greater than zero.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "maxItems", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "MaxItems", "marshallLocationName" : "MaxItems", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : "querystring", "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : true }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

(Optional) Maximum number of file system tags to return in the response. It must be an integer with a value greater than zero.

\n@param maxItems (Optional) Maximum number of file system tags to return in the response. It must be an integer with a value greater than zero.*/", "getterDocumentation" : "/**

(Optional) Maximum number of file system tags to return in the response. It must be an integer with a value greater than zero.

\n@return (Optional) Maximum number of file system tags to return in the response. It must be an integer with a value greater than zero.*/", "fluentSetterDocumentation" : "/**

(Optional) Maximum number of file system tags to return in the response. It must be an integer with a value greater than zero.

\n@param maxItems (Optional) Maximum number of file system tags to return in the response. It must be an integer with a value greater than zero.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

(Optional) Maximum number of file system tags to return in the response. It must be an integer with a value greater than zero.

\n@param maxItems (Optional) Maximum number of file system tags to return in the response. It must be an integer with a value greater than zero.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

(Optional) Opaque pagination token returned from a previous DescribeTags operation (String). If present, it specifies to continue the list from where the previous call left off.

", "name" : "Marker", "c2jName" : "Marker", "c2jShape" : "Marker", "variable" : { "variableName" : "marker", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

(Optional) Opaque pagination token returned from a previous DescribeTags operation (String). If present, it specifies to continue the list from where the previous call left off.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "marker", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Marker", "marshallLocationName" : "Marker", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : "querystring", "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : true }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

(Optional) Opaque pagination token returned from a previous DescribeTags operation (String). If present, it specifies to continue the list from where the previous call left off.

\n@param marker (Optional) Opaque pagination token returned from a previous DescribeTags operation (String). If present, it specifies to continue the list from where the previous call left off.*/", "getterDocumentation" : "/**

(Optional) Opaque pagination token returned from a previous DescribeTags operation (String). If present, it specifies to continue the list from where the previous call left off.

\n@return (Optional) Opaque pagination token returned from a previous DescribeTags operation (String). If present, it specifies to continue the list from where the previous call left off.*/", "fluentSetterDocumentation" : "/**

(Optional) Opaque pagination token returned from a previous DescribeTags operation (String). If present, it specifies to continue the list from where the previous call left off.

\n@param marker (Optional) Opaque pagination token returned from a previous DescribeTags operation (String). If present, it specifies to continue the list from where the previous call left off.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

(Optional) Opaque pagination token returned from a previous DescribeTags operation (String). If present, it specifies to continue the list from where the previous call left off.

\n@param marker (Optional) Opaque pagination token returned from a previous DescribeTags operation (String). If present, it specifies to continue the list from where the previous call left off.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

ID of the file system whose tag set you want to retrieve.

", "name" : "FileSystemId", "c2jName" : "FileSystemId", "c2jShape" : "FileSystemId", "variable" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

ID of the file system whose tag set you want to retrieve.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FileSystemId", "marshallLocationName" : "FileSystemId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : "uri", "flattened" : false, "header" : false, "uri" : true, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

ID of the file system whose tag set you want to retrieve.

\n@param fileSystemId ID of the file system whose tag set you want to retrieve.*/", "getterDocumentation" : "/**

ID of the file system whose tag set you want to retrieve.

\n@return ID of the file system whose tag set you want to retrieve.*/", "fluentSetterDocumentation" : "/**

ID of the file system whose tag set you want to retrieve.

\n@param fileSystemId ID of the file system whose tag set you want to retrieve.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

ID of the file system whose tag set you want to retrieve.

\n@param fileSystemId ID of the file system whose tag set you want to retrieve.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "describeTagsRequest", "variableType" : "DescribeTagsRequest", "variableDeclarationType" : "DescribeTagsRequest", "documentation" : null, "simpleType" : "DescribeTagsRequest", "variableSetterType" : "DescribeTagsRequest" }, "marshaller" : { "action" : "DescribeTags", "verb" : "GET", "target" : null, "requestUri" : "/2015-02-01/tags/{FileSystemId}/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "FileSystemId" : { "documentation" : "

ID of the file system whose tag set you want to retrieve.

", "name" : "FileSystemId", "c2jName" : "FileSystemId", "c2jShape" : "FileSystemId", "variable" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

ID of the file system whose tag set you want to retrieve.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FileSystemId", "marshallLocationName" : "FileSystemId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : "uri", "flattened" : false, "header" : false, "uri" : true, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

ID of the file system whose tag set you want to retrieve.

\n@param fileSystemId ID of the file system whose tag set you want to retrieve.*/", "getterDocumentation" : "/**

ID of the file system whose tag set you want to retrieve.

\n@return ID of the file system whose tag set you want to retrieve.*/", "fluentSetterDocumentation" : "/**

ID of the file system whose tag set you want to retrieve.

\n@param fileSystemId ID of the file system whose tag set you want to retrieve.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

ID of the file system whose tag set you want to retrieve.

\n@param fileSystemId ID of the file system whose tag set you want to retrieve.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "MaxItems" : { "documentation" : "

(Optional) Maximum number of file system tags to return in the response. It must be an integer with a value greater than zero.

", "name" : "MaxItems", "c2jName" : "MaxItems", "c2jShape" : "MaxItems", "variable" : { "variableName" : "maxItems", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

(Optional) Maximum number of file system tags to return in the response. It must be an integer with a value greater than zero.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "maxItems", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "MaxItems", "marshallLocationName" : "MaxItems", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : "querystring", "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : true }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

(Optional) Maximum number of file system tags to return in the response. It must be an integer with a value greater than zero.

\n@param maxItems (Optional) Maximum number of file system tags to return in the response. It must be an integer with a value greater than zero.*/", "getterDocumentation" : "/**

(Optional) Maximum number of file system tags to return in the response. It must be an integer with a value greater than zero.

\n@return (Optional) Maximum number of file system tags to return in the response. It must be an integer with a value greater than zero.*/", "fluentSetterDocumentation" : "/**

(Optional) Maximum number of file system tags to return in the response. It must be an integer with a value greater than zero.

\n@param maxItems (Optional) Maximum number of file system tags to return in the response. It must be an integer with a value greater than zero.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

(Optional) Maximum number of file system tags to return in the response. It must be an integer with a value greater than zero.

\n@param maxItems (Optional) Maximum number of file system tags to return in the response. It must be an integer with a value greater than zero.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Marker" : { "documentation" : "

(Optional) Opaque pagination token returned from a previous DescribeTags operation (String). If present, it specifies to continue the list from where the previous call left off.

", "name" : "Marker", "c2jName" : "Marker", "c2jShape" : "Marker", "variable" : { "variableName" : "marker", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

(Optional) Opaque pagination token returned from a previous DescribeTags operation (String). If present, it specifies to continue the list from where the previous call left off.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "marker", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Marker", "marshallLocationName" : "Marker", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : "querystring", "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : true }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

(Optional) Opaque pagination token returned from a previous DescribeTags operation (String). If present, it specifies to continue the list from where the previous call left off.

\n@param marker (Optional) Opaque pagination token returned from a previous DescribeTags operation (String). If present, it specifies to continue the list from where the previous call left off.*/", "getterDocumentation" : "/**

(Optional) Opaque pagination token returned from a previous DescribeTags operation (String). If present, it specifies to continue the list from where the previous call left off.

\n@return (Optional) Opaque pagination token returned from a previous DescribeTags operation (String). If present, it specifies to continue the list from where the previous call left off.*/", "fluentSetterDocumentation" : "/**

(Optional) Opaque pagination token returned from a previous DescribeTags operation (String). If present, it specifies to continue the list from where the previous call left off.

\n@param marker (Optional) Opaque pagination token returned from a previous DescribeTags operation (String). If present, it specifies to continue the list from where the previous call left off.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

(Optional) Opaque pagination token returned from a previous DescribeTags operation (String). If present, it specifies to continue the list from where the previous call left off.

\n@param marker (Optional) Opaque pagination token returned from a previous DescribeTags operation (String). If present, it specifies to continue the list from where the previous call left off.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "DescribeTagsResult" : { "c2jName" : "DescribeTagsResponse", "documentation" : "

", "shapeName" : "DescribeTagsResult", "deprecated" : false, "required" : [ "Tags" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

If the request included a Marker, the response returns that value in this field.

", "name" : "Marker", "c2jName" : "Marker", "c2jShape" : "Marker", "variable" : { "variableName" : "marker", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

If the request included a Marker, the response returns that value in this field.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "marker", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Marker", "marshallLocationName" : "Marker", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

If the request included a Marker, the response returns that value in this field.

\n@param marker If the request included a Marker, the response returns that value in this field.*/", "getterDocumentation" : "/**

If the request included a Marker, the response returns that value in this field.

\n@return If the request included a Marker, the response returns that value in this field.*/", "fluentSetterDocumentation" : "/**

If the request included a Marker, the response returns that value in this field.

\n@param marker If the request included a Marker, the response returns that value in this field.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

If the request included a Marker, the response returns that value in this field.

\n@param marker If the request included a Marker, the response returns that value in this field.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Returns tags associated with the file system as an array of Tag objects.

", "name" : "Tags", "c2jName" : "Tags", "c2jShape" : "Tags", "variable" : { "variableName" : "tags", "variableType" : "java.util.List", "variableDeclarationType" : "com.amazonaws.internal.SdkInternalList", "documentation" : "

Returns tags associated with the file system as an array of Tag objects.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "tags", "variableType" : "java.util.List", "variableDeclarationType" : "com.amazonaws.internal.SdkInternalList", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "Tags", "marshallLocationName" : "Tags", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "Tag", "memberLocationName" : null, "implType" : "com.amazonaws.internal.SdkInternalList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "Tag", "variable" : { "variableName" : "member", "variableType" : "Tag", "variableDeclarationType" : "Tag", "documentation" : "", "simpleType" : "Tag", "variableSetterType" : "Tag" }, "setterModel" : { "variableName" : "member", "variableType" : "Tag", "variableDeclarationType" : "Tag", "documentation" : "", "simpleType" : "Tag", "variableSetterType" : "Tag" }, "getterModel" : { "returnType" : "Tag", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "Tag", "templateType" : "java.util.List", "templateImplType" : "com.amazonaws.internal.SdkInternalList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Returns tags associated with the file system as an array of Tag objects.

\n@param tags Returns tags associated with the file system as an array of Tag objects.*/", "getterDocumentation" : "/**

Returns tags associated with the file system as an array of Tag objects.

\n@return Returns tags associated with the file system as an array of Tag objects.*/", "fluentSetterDocumentation" : "/**

Returns tags associated with the file system as an array of Tag objects.

\n@param tags Returns tags associated with the file system as an array of Tag objects.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Returns tags associated with the file system as an array of Tag objects.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the existing values.

\n@param tags Returns tags associated with the file system as an array of Tag objects.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

If a value is present, there are more tags to return. In a subsequent request, you can provide the value of NextMarker as the value of the Marker parameter in your next request to retrieve the next set of tags.

", "name" : "NextMarker", "c2jName" : "NextMarker", "c2jShape" : "Marker", "variable" : { "variableName" : "nextMarker", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

If a value is present, there are more tags to return. In a subsequent request, you can provide the value of NextMarker as the value of the Marker parameter in your next request to retrieve the next set of tags.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextMarker", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextMarker", "marshallLocationName" : "NextMarker", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

If a value is present, there are more tags to return. In a subsequent request, you can provide the value of NextMarker as the value of the Marker parameter in your next request to retrieve the next set of tags.

\n@param nextMarker If a value is present, there are more tags to return. In a subsequent request, you can provide the value of NextMarker as the value of the Marker parameter in your next request to retrieve the next set of tags.*/", "getterDocumentation" : "/**

If a value is present, there are more tags to return. In a subsequent request, you can provide the value of NextMarker as the value of the Marker parameter in your next request to retrieve the next set of tags.

\n@return If a value is present, there are more tags to return. In a subsequent request, you can provide the value of NextMarker as the value of the Marker parameter in your next request to retrieve the next set of tags.*/", "fluentSetterDocumentation" : "/**

If a value is present, there are more tags to return. In a subsequent request, you can provide the value of NextMarker as the value of the Marker parameter in your next request to retrieve the next set of tags.

\n@param nextMarker If a value is present, there are more tags to return. In a subsequent request, you can provide the value of NextMarker as the value of the Marker parameter in your next request to retrieve the next set of tags.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

If a value is present, there are more tags to return. In a subsequent request, you can provide the value of NextMarker as the value of the Marker parameter in your next request to retrieve the next set of tags.

\n@param nextMarker If a value is present, there are more tags to return. In a subsequent request, you can provide the value of NextMarker as the value of the Marker parameter in your next request to retrieve the next set of tags.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "describeTagsResult", "variableType" : "DescribeTagsResult", "variableDeclarationType" : "DescribeTagsResult", "documentation" : null, "simpleType" : "DescribeTagsResult", "variableSetterType" : "DescribeTagsResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "Marker" : { "documentation" : "

If the request included a Marker, the response returns that value in this field.

", "name" : "Marker", "c2jName" : "Marker", "c2jShape" : "Marker", "variable" : { "variableName" : "marker", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

If the request included a Marker, the response returns that value in this field.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "marker", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Marker", "marshallLocationName" : "Marker", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

If the request included a Marker, the response returns that value in this field.

\n@param marker If the request included a Marker, the response returns that value in this field.*/", "getterDocumentation" : "/**

If the request included a Marker, the response returns that value in this field.

\n@return If the request included a Marker, the response returns that value in this field.*/", "fluentSetterDocumentation" : "/**

If the request included a Marker, the response returns that value in this field.

\n@param marker If the request included a Marker, the response returns that value in this field.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

If the request included a Marker, the response returns that value in this field.

\n@param marker If the request included a Marker, the response returns that value in this field.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "NextMarker" : { "documentation" : "

If a value is present, there are more tags to return. In a subsequent request, you can provide the value of NextMarker as the value of the Marker parameter in your next request to retrieve the next set of tags.

", "name" : "NextMarker", "c2jName" : "NextMarker", "c2jShape" : "Marker", "variable" : { "variableName" : "nextMarker", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

If a value is present, there are more tags to return. In a subsequent request, you can provide the value of NextMarker as the value of the Marker parameter in your next request to retrieve the next set of tags.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextMarker", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextMarker", "marshallLocationName" : "NextMarker", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

If a value is present, there are more tags to return. In a subsequent request, you can provide the value of NextMarker as the value of the Marker parameter in your next request to retrieve the next set of tags.

\n@param nextMarker If a value is present, there are more tags to return. In a subsequent request, you can provide the value of NextMarker as the value of the Marker parameter in your next request to retrieve the next set of tags.*/", "getterDocumentation" : "/**

If a value is present, there are more tags to return. In a subsequent request, you can provide the value of NextMarker as the value of the Marker parameter in your next request to retrieve the next set of tags.

\n@return If a value is present, there are more tags to return. In a subsequent request, you can provide the value of NextMarker as the value of the Marker parameter in your next request to retrieve the next set of tags.*/", "fluentSetterDocumentation" : "/**

If a value is present, there are more tags to return. In a subsequent request, you can provide the value of NextMarker as the value of the Marker parameter in your next request to retrieve the next set of tags.

\n@param nextMarker If a value is present, there are more tags to return. In a subsequent request, you can provide the value of NextMarker as the value of the Marker parameter in your next request to retrieve the next set of tags.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

If a value is present, there are more tags to return. In a subsequent request, you can provide the value of NextMarker as the value of the Marker parameter in your next request to retrieve the next set of tags.

\n@param nextMarker If a value is present, there are more tags to return. In a subsequent request, you can provide the value of NextMarker as the value of the Marker parameter in your next request to retrieve the next set of tags.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Tags" : { "documentation" : "

Returns tags associated with the file system as an array of Tag objects.

", "name" : "Tags", "c2jName" : "Tags", "c2jShape" : "Tags", "variable" : { "variableName" : "tags", "variableType" : "java.util.List", "variableDeclarationType" : "com.amazonaws.internal.SdkInternalList", "documentation" : "

Returns tags associated with the file system as an array of Tag objects.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "tags", "variableType" : "java.util.List", "variableDeclarationType" : "com.amazonaws.internal.SdkInternalList", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "Tags", "marshallLocationName" : "Tags", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "Tag", "memberLocationName" : null, "implType" : "com.amazonaws.internal.SdkInternalList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "Tag", "variable" : { "variableName" : "member", "variableType" : "Tag", "variableDeclarationType" : "Tag", "documentation" : "", "simpleType" : "Tag", "variableSetterType" : "Tag" }, "setterModel" : { "variableName" : "member", "variableType" : "Tag", "variableDeclarationType" : "Tag", "documentation" : "", "simpleType" : "Tag", "variableSetterType" : "Tag" }, "getterModel" : { "returnType" : "Tag", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "Tag", "templateType" : "java.util.List", "templateImplType" : "com.amazonaws.internal.SdkInternalList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Returns tags associated with the file system as an array of Tag objects.

\n@param tags Returns tags associated with the file system as an array of Tag objects.*/", "getterDocumentation" : "/**

Returns tags associated with the file system as an array of Tag objects.

\n@return Returns tags associated with the file system as an array of Tag objects.*/", "fluentSetterDocumentation" : "/**

Returns tags associated with the file system as an array of Tag objects.

\n@param tags Returns tags associated with the file system as an array of Tag objects.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Returns tags associated with the file system as an array of Tag objects.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the existing values.

\n@param tags Returns tags associated with the file system as an array of Tag objects.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "SubnetNotFoundException" : { "c2jName" : "SubnetNotFound", "documentation" : "

Returned if there is no subnet with ID SubnetId provided in the request.

", "shapeName" : "SubnetNotFoundException", "deprecated" : false, "required" : [ "ErrorCode" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "", "name" : "ErrorCode", "c2jName" : "ErrorCode", "c2jShape" : "ErrorCode", "variable" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ErrorCode", "marshallLocationName" : "ErrorCode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param errorCode */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "subnetNotFoundException", "variableType" : "SubnetNotFoundException", "variableDeclarationType" : "SubnetNotFoundException", "documentation" : null, "simpleType" : "SubnetNotFoundException", "variableSetterType" : "SubnetNotFoundException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "SubnetNotFound", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "ErrorCode" : { "documentation" : "", "name" : "ErrorCode", "c2jName" : "ErrorCode", "c2jShape" : "ErrorCode", "variable" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ErrorCode", "marshallLocationName" : "ErrorCode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param errorCode */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "PerformanceMode" : { "c2jName" : "PerformanceMode", "documentation" : "", "shapeName" : "PerformanceMode", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : [ { "name" : "GeneralPurpose", "value" : "generalPurpose" }, { "name" : "MaxIO", "value" : "maxIO" } ], "variable" : { "variableName" : "performanceMode", "variableType" : "PerformanceMode", "variableDeclarationType" : "PerformanceMode", "documentation" : null, "simpleType" : "PerformanceMode", "variableSetterType" : "PerformanceMode" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "DescribeMountTargetSecurityGroupsRequest" : { "c2jName" : "DescribeMountTargetSecurityGroupsRequest", "documentation" : "

", "shapeName" : "DescribeMountTargetSecurityGroupsRequest", "deprecated" : false, "required" : [ "MountTargetId" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

ID of the mount target whose security groups you want to retrieve.

", "name" : "MountTargetId", "c2jName" : "MountTargetId", "c2jShape" : "MountTargetId", "variable" : { "variableName" : "mountTargetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

ID of the mount target whose security groups you want to retrieve.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "mountTargetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "MountTargetId", "marshallLocationName" : "MountTargetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : "uri", "flattened" : false, "header" : false, "uri" : true, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

ID of the mount target whose security groups you want to retrieve.

\n@param mountTargetId ID of the mount target whose security groups you want to retrieve.*/", "getterDocumentation" : "/**

ID of the mount target whose security groups you want to retrieve.

\n@return ID of the mount target whose security groups you want to retrieve.*/", "fluentSetterDocumentation" : "/**

ID of the mount target whose security groups you want to retrieve.

\n@param mountTargetId ID of the mount target whose security groups you want to retrieve.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

ID of the mount target whose security groups you want to retrieve.

\n@param mountTargetId ID of the mount target whose security groups you want to retrieve.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "describeMountTargetSecurityGroupsRequest", "variableType" : "DescribeMountTargetSecurityGroupsRequest", "variableDeclarationType" : "DescribeMountTargetSecurityGroupsRequest", "documentation" : null, "simpleType" : "DescribeMountTargetSecurityGroupsRequest", "variableSetterType" : "DescribeMountTargetSecurityGroupsRequest" }, "marshaller" : { "action" : "DescribeMountTargetSecurityGroups", "verb" : "GET", "target" : null, "requestUri" : "/2015-02-01/mount-targets/{MountTargetId}/security-groups", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "MountTargetId" : { "documentation" : "

ID of the mount target whose security groups you want to retrieve.

", "name" : "MountTargetId", "c2jName" : "MountTargetId", "c2jShape" : "MountTargetId", "variable" : { "variableName" : "mountTargetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

ID of the mount target whose security groups you want to retrieve.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "mountTargetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "MountTargetId", "marshallLocationName" : "MountTargetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : "uri", "flattened" : false, "header" : false, "uri" : true, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

ID of the mount target whose security groups you want to retrieve.

\n@param mountTargetId ID of the mount target whose security groups you want to retrieve.*/", "getterDocumentation" : "/**

ID of the mount target whose security groups you want to retrieve.

\n@return ID of the mount target whose security groups you want to retrieve.*/", "fluentSetterDocumentation" : "/**

ID of the mount target whose security groups you want to retrieve.

\n@param mountTargetId ID of the mount target whose security groups you want to retrieve.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

ID of the mount target whose security groups you want to retrieve.

\n@param mountTargetId ID of the mount target whose security groups you want to retrieve.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "IncorrectMountTargetStateException" : { "c2jName" : "IncorrectMountTargetState", "documentation" : "

Returned if the mount target is not in the correct state for the operation.

", "shapeName" : "IncorrectMountTargetStateException", "deprecated" : false, "required" : [ "ErrorCode" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "", "name" : "ErrorCode", "c2jName" : "ErrorCode", "c2jShape" : "ErrorCode", "variable" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ErrorCode", "marshallLocationName" : "ErrorCode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param errorCode */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "incorrectMountTargetStateException", "variableType" : "IncorrectMountTargetStateException", "variableDeclarationType" : "IncorrectMountTargetStateException", "documentation" : null, "simpleType" : "IncorrectMountTargetStateException", "variableSetterType" : "IncorrectMountTargetStateException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "IncorrectMountTargetState", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "ErrorCode" : { "documentation" : "", "name" : "ErrorCode", "c2jName" : "ErrorCode", "c2jShape" : "ErrorCode", "variable" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ErrorCode", "marshallLocationName" : "ErrorCode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param errorCode */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "ModifyMountTargetSecurityGroupsRequest" : { "c2jName" : "ModifyMountTargetSecurityGroupsRequest", "documentation" : "

", "shapeName" : "ModifyMountTargetSecurityGroupsRequest", "deprecated" : false, "required" : [ "MountTargetId" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

ID of the mount target whose security groups you want to modify.

", "name" : "MountTargetId", "c2jName" : "MountTargetId", "c2jShape" : "MountTargetId", "variable" : { "variableName" : "mountTargetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

ID of the mount target whose security groups you want to modify.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "mountTargetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "MountTargetId", "marshallLocationName" : "MountTargetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : "uri", "flattened" : false, "header" : false, "uri" : true, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

ID of the mount target whose security groups you want to modify.

\n@param mountTargetId ID of the mount target whose security groups you want to modify.*/", "getterDocumentation" : "/**

ID of the mount target whose security groups you want to modify.

\n@return ID of the mount target whose security groups you want to modify.*/", "fluentSetterDocumentation" : "/**

ID of the mount target whose security groups you want to modify.

\n@param mountTargetId ID of the mount target whose security groups you want to modify.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

ID of the mount target whose security groups you want to modify.

\n@param mountTargetId ID of the mount target whose security groups you want to modify.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Array of up to five VPC security group IDs.

", "name" : "SecurityGroups", "c2jName" : "SecurityGroups", "c2jShape" : "SecurityGroups", "variable" : { "variableName" : "securityGroups", "variableType" : "java.util.List", "variableDeclarationType" : "com.amazonaws.internal.SdkInternalList", "documentation" : "

Array of up to five VPC security group IDs.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "securityGroups", "variableType" : "java.util.List", "variableDeclarationType" : "com.amazonaws.internal.SdkInternalList", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "SecurityGroups", "marshallLocationName" : "SecurityGroups", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "String", "memberLocationName" : null, "implType" : "com.amazonaws.internal.SdkInternalList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "SecurityGroup", "variable" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "map" : false, "simpleType" : "String", "templateType" : "java.util.List", "templateImplType" : "com.amazonaws.internal.SdkInternalList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Array of up to five VPC security group IDs.

\n@param securityGroups Array of up to five VPC security group IDs.*/", "getterDocumentation" : "/**

Array of up to five VPC security group IDs.

\n@return Array of up to five VPC security group IDs.*/", "fluentSetterDocumentation" : "/**

Array of up to five VPC security group IDs.

\n@param securityGroups Array of up to five VPC security group IDs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Array of up to five VPC security group IDs.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setSecurityGroups(java.util.Collection)} or {@link #withSecurityGroups(java.util.Collection)} if you want to override the existing values.

\n@param securityGroups Array of up to five VPC security group IDs.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "modifyMountTargetSecurityGroupsRequest", "variableType" : "ModifyMountTargetSecurityGroupsRequest", "variableDeclarationType" : "ModifyMountTargetSecurityGroupsRequest", "documentation" : null, "simpleType" : "ModifyMountTargetSecurityGroupsRequest", "variableSetterType" : "ModifyMountTargetSecurityGroupsRequest" }, "marshaller" : { "action" : "ModifyMountTargetSecurityGroups", "verb" : "PUT", "target" : null, "requestUri" : "/2015-02-01/mount-targets/{MountTargetId}/security-groups", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "SecurityGroups" : { "documentation" : "

Array of up to five VPC security group IDs.

", "name" : "SecurityGroups", "c2jName" : "SecurityGroups", "c2jShape" : "SecurityGroups", "variable" : { "variableName" : "securityGroups", "variableType" : "java.util.List", "variableDeclarationType" : "com.amazonaws.internal.SdkInternalList", "documentation" : "

Array of up to five VPC security group IDs.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "securityGroups", "variableType" : "java.util.List", "variableDeclarationType" : "com.amazonaws.internal.SdkInternalList", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "SecurityGroups", "marshallLocationName" : "SecurityGroups", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "String", "memberLocationName" : null, "implType" : "com.amazonaws.internal.SdkInternalList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "SecurityGroup", "variable" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "map" : false, "simpleType" : "String", "templateType" : "java.util.List", "templateImplType" : "com.amazonaws.internal.SdkInternalList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Array of up to five VPC security group IDs.

\n@param securityGroups Array of up to five VPC security group IDs.*/", "getterDocumentation" : "/**

Array of up to five VPC security group IDs.

\n@return Array of up to five VPC security group IDs.*/", "fluentSetterDocumentation" : "/**

Array of up to five VPC security group IDs.

\n@param securityGroups Array of up to five VPC security group IDs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Array of up to five VPC security group IDs.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setSecurityGroups(java.util.Collection)} or {@link #withSecurityGroups(java.util.Collection)} if you want to override the existing values.

\n@param securityGroups Array of up to five VPC security group IDs.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "MountTargetId" : { "documentation" : "

ID of the mount target whose security groups you want to modify.

", "name" : "MountTargetId", "c2jName" : "MountTargetId", "c2jShape" : "MountTargetId", "variable" : { "variableName" : "mountTargetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

ID of the mount target whose security groups you want to modify.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "mountTargetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "MountTargetId", "marshallLocationName" : "MountTargetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : "uri", "flattened" : false, "header" : false, "uri" : true, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

ID of the mount target whose security groups you want to modify.

\n@param mountTargetId ID of the mount target whose security groups you want to modify.*/", "getterDocumentation" : "/**

ID of the mount target whose security groups you want to modify.

\n@return ID of the mount target whose security groups you want to modify.*/", "fluentSetterDocumentation" : "/**

ID of the mount target whose security groups you want to modify.

\n@param mountTargetId ID of the mount target whose security groups you want to modify.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

ID of the mount target whose security groups you want to modify.

\n@param mountTargetId ID of the mount target whose security groups you want to modify.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "UnsupportedAvailabilityZoneException" : { "c2jName" : "UnsupportedAvailabilityZone", "documentation" : "", "shapeName" : "UnsupportedAvailabilityZoneException", "deprecated" : false, "required" : [ "ErrorCode" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "", "name" : "ErrorCode", "c2jName" : "ErrorCode", "c2jShape" : "ErrorCode", "variable" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ErrorCode", "marshallLocationName" : "ErrorCode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param errorCode */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "unsupportedAvailabilityZoneException", "variableType" : "UnsupportedAvailabilityZoneException", "variableDeclarationType" : "UnsupportedAvailabilityZoneException", "documentation" : null, "simpleType" : "UnsupportedAvailabilityZoneException", "variableSetterType" : "UnsupportedAvailabilityZoneException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "UnsupportedAvailabilityZone", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "ErrorCode" : { "documentation" : "", "name" : "ErrorCode", "c2jName" : "ErrorCode", "c2jShape" : "ErrorCode", "variable" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ErrorCode", "marshallLocationName" : "ErrorCode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param errorCode */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "DeleteTagsResult" : { "c2jName" : "DeleteTagsResult", "documentation" : null, "shapeName" : "DeleteTagsResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "deleteTagsResult", "variableType" : "DeleteTagsResult", "variableDeclarationType" : "DeleteTagsResult", "documentation" : null, "simpleType" : "DeleteTagsResult", "variableSetterType" : "DeleteTagsResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "CreateFileSystemResult" : { "c2jName" : "FileSystemDescription", "documentation" : "

Description of the file system.

", "shapeName" : "CreateFileSystemResult", "deprecated" : false, "required" : [ "OwnerId", "CreationToken", "FileSystemId", "CreationTime", "LifeCycleState", "NumberOfMountTargets", "SizeInBytes", "PerformanceMode" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.

", "name" : "OwnerId", "c2jName" : "OwnerId", "c2jShape" : "AwsAccountId", "variable" : { "variableName" : "ownerId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "ownerId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "OwnerId", "marshallLocationName" : "OwnerId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.

\n@param ownerId AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.*/", "getterDocumentation" : "/**

AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.

\n@return AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.*/", "fluentSetterDocumentation" : "/**

AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.

\n@param ownerId AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.

\n@param ownerId AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Opaque string specified in the request.

", "name" : "CreationToken", "c2jName" : "CreationToken", "c2jShape" : "CreationToken", "variable" : { "variableName" : "creationToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Opaque string specified in the request.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "creationToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "CreationToken", "marshallLocationName" : "CreationToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Opaque string specified in the request.

\n@param creationToken Opaque string specified in the request.*/", "getterDocumentation" : "/**

Opaque string specified in the request.

\n@return Opaque string specified in the request.*/", "fluentSetterDocumentation" : "/**

Opaque string specified in the request.

\n@param creationToken Opaque string specified in the request.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Opaque string specified in the request.

\n@param creationToken Opaque string specified in the request.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

ID of the file system, assigned by Amazon EFS.

", "name" : "FileSystemId", "c2jName" : "FileSystemId", "c2jShape" : "FileSystemId", "variable" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

ID of the file system, assigned by Amazon EFS.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FileSystemId", "marshallLocationName" : "FileSystemId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

ID of the file system, assigned by Amazon EFS.

\n@param fileSystemId ID of the file system, assigned by Amazon EFS.*/", "getterDocumentation" : "/**

ID of the file system, assigned by Amazon EFS.

\n@return ID of the file system, assigned by Amazon EFS.*/", "fluentSetterDocumentation" : "/**

ID of the file system, assigned by Amazon EFS.

\n@param fileSystemId ID of the file system, assigned by Amazon EFS.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

ID of the file system, assigned by Amazon EFS.

\n@param fileSystemId ID of the file system, assigned by Amazon EFS.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).

", "name" : "CreationTime", "c2jName" : "CreationTime", "c2jShape" : "Timestamp", "variable" : { "variableName" : "creationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "

Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).

", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "setterModel" : { "variableName" : "creationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "getterModel" : { "returnType" : "java.util.Date", "documentation" : null }, "http" : { "unmarshallLocationName" : "CreationTime", "marshallLocationName" : "CreationTime", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).

\n@param creationTime Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).*/", "getterDocumentation" : "/**

Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).

\n@return Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).*/", "fluentSetterDocumentation" : "/**

Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).

\n@param creationTime Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).

\n@param creationTime Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Lifecycle phase of the file system.

", "name" : "LifeCycleState", "c2jName" : "LifeCycleState", "c2jShape" : "LifeCycleState", "variable" : { "variableName" : "lifeCycleState", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Lifecycle phase of the file system.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "lifeCycleState", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "LifeCycleState", "marshallLocationName" : "LifeCycleState", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "LifeCycleState", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Lifecycle phase of the file system.

\n@param lifeCycleState Lifecycle phase of the file system.\n@see LifeCycleState*/", "getterDocumentation" : "/**

Lifecycle phase of the file system.

\n@return Lifecycle phase of the file system.\n@see LifeCycleState*/", "fluentSetterDocumentation" : "/**

Lifecycle phase of the file system.

\n@param lifeCycleState Lifecycle phase of the file system.\n@return Returns a reference to this object so that method calls can be chained together.\n@see LifeCycleState*/", "varargSetterDocumentation" : "/**

Lifecycle phase of the file system.

\n@param lifeCycleState Lifecycle phase of the file system.\n@return Returns a reference to this object so that method calls can be chained together.\n@see LifeCycleState*/" }, { "documentation" : "

You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.

", "name" : "Name", "c2jName" : "Name", "c2jShape" : "TagValue", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Name", "marshallLocationName" : "Name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.

\n@param name You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.*/", "getterDocumentation" : "/**

You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.

\n@return You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.*/", "fluentSetterDocumentation" : "/**

You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.

\n@param name You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.

\n@param name You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Current number of mount targets that the file system has. For more information, see CreateMountTarget.

", "name" : "NumberOfMountTargets", "c2jName" : "NumberOfMountTargets", "c2jShape" : "MountTargetCount", "variable" : { "variableName" : "numberOfMountTargets", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

Current number of mount targets that the file system has. For more information, see CreateMountTarget.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "numberOfMountTargets", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "NumberOfMountTargets", "marshallLocationName" : "NumberOfMountTargets", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Current number of mount targets that the file system has. For more information, see CreateMountTarget.

\n@param numberOfMountTargets Current number of mount targets that the file system has. For more information, see CreateMountTarget.*/", "getterDocumentation" : "/**

Current number of mount targets that the file system has. For more information, see CreateMountTarget.

\n@return Current number of mount targets that the file system has. For more information, see CreateMountTarget.*/", "fluentSetterDocumentation" : "/**

Current number of mount targets that the file system has. For more information, see CreateMountTarget.

\n@param numberOfMountTargets Current number of mount targets that the file system has. For more information, see CreateMountTarget.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Current number of mount targets that the file system has. For more information, see CreateMountTarget.

\n@param numberOfMountTargets Current number of mount targets that the file system has. For more information, see CreateMountTarget.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.

", "name" : "SizeInBytes", "c2jName" : "SizeInBytes", "c2jShape" : "FileSystemSize", "variable" : { "variableName" : "sizeInBytes", "variableType" : "FileSystemSize", "variableDeclarationType" : "FileSystemSize", "documentation" : "

Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.

", "simpleType" : "FileSystemSize", "variableSetterType" : "FileSystemSize" }, "setterModel" : { "variableName" : "sizeInBytes", "variableType" : "FileSystemSize", "variableDeclarationType" : "FileSystemSize", "documentation" : "", "simpleType" : "FileSystemSize", "variableSetterType" : "FileSystemSize" }, "getterModel" : { "returnType" : "FileSystemSize", "documentation" : null }, "http" : { "unmarshallLocationName" : "SizeInBytes", "marshallLocationName" : "SizeInBytes", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.

\n@param sizeInBytes Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.*/", "getterDocumentation" : "/**

Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.

\n@return Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.*/", "fluentSetterDocumentation" : "/**

Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.

\n@param sizeInBytes Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.

\n@param sizeInBytes Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

The PerformanceMode of the file system.

", "name" : "PerformanceMode", "c2jName" : "PerformanceMode", "c2jShape" : "PerformanceMode", "variable" : { "variableName" : "performanceMode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The PerformanceMode of the file system.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "performanceMode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "PerformanceMode", "marshallLocationName" : "PerformanceMode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "PerformanceMode", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The PerformanceMode of the file system.

\n@param performanceMode The PerformanceMode of the file system.\n@see PerformanceMode*/", "getterDocumentation" : "/**

The PerformanceMode of the file system.

\n@return The PerformanceMode of the file system.\n@see PerformanceMode*/", "fluentSetterDocumentation" : "/**

The PerformanceMode of the file system.

\n@param performanceMode The PerformanceMode of the file system.\n@return Returns a reference to this object so that method calls can be chained together.\n@see PerformanceMode*/", "varargSetterDocumentation" : "/**

The PerformanceMode of the file system.

\n@param performanceMode The PerformanceMode of the file system.\n@return Returns a reference to this object so that method calls can be chained together.\n@see PerformanceMode*/" } ], "enums" : null, "variable" : { "variableName" : "createFileSystemResult", "variableType" : "CreateFileSystemResult", "variableDeclarationType" : "CreateFileSystemResult", "documentation" : null, "simpleType" : "CreateFileSystemResult", "variableSetterType" : "CreateFileSystemResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "NumberOfMountTargets" : { "documentation" : "

Current number of mount targets that the file system has. For more information, see CreateMountTarget.

", "name" : "NumberOfMountTargets", "c2jName" : "NumberOfMountTargets", "c2jShape" : "MountTargetCount", "variable" : { "variableName" : "numberOfMountTargets", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

Current number of mount targets that the file system has. For more information, see CreateMountTarget.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "numberOfMountTargets", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "NumberOfMountTargets", "marshallLocationName" : "NumberOfMountTargets", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Current number of mount targets that the file system has. For more information, see CreateMountTarget.

\n@param numberOfMountTargets Current number of mount targets that the file system has. For more information, see CreateMountTarget.*/", "getterDocumentation" : "/**

Current number of mount targets that the file system has. For more information, see CreateMountTarget.

\n@return Current number of mount targets that the file system has. For more information, see CreateMountTarget.*/", "fluentSetterDocumentation" : "/**

Current number of mount targets that the file system has. For more information, see CreateMountTarget.

\n@param numberOfMountTargets Current number of mount targets that the file system has. For more information, see CreateMountTarget.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Current number of mount targets that the file system has. For more information, see CreateMountTarget.

\n@param numberOfMountTargets Current number of mount targets that the file system has. For more information, see CreateMountTarget.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "OwnerId" : { "documentation" : "

AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.

", "name" : "OwnerId", "c2jName" : "OwnerId", "c2jShape" : "AwsAccountId", "variable" : { "variableName" : "ownerId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "ownerId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "OwnerId", "marshallLocationName" : "OwnerId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.

\n@param ownerId AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.*/", "getterDocumentation" : "/**

AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.

\n@return AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.*/", "fluentSetterDocumentation" : "/**

AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.

\n@param ownerId AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.

\n@param ownerId AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "CreationToken" : { "documentation" : "

Opaque string specified in the request.

", "name" : "CreationToken", "c2jName" : "CreationToken", "c2jShape" : "CreationToken", "variable" : { "variableName" : "creationToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Opaque string specified in the request.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "creationToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "CreationToken", "marshallLocationName" : "CreationToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Opaque string specified in the request.

\n@param creationToken Opaque string specified in the request.*/", "getterDocumentation" : "/**

Opaque string specified in the request.

\n@return Opaque string specified in the request.*/", "fluentSetterDocumentation" : "/**

Opaque string specified in the request.

\n@param creationToken Opaque string specified in the request.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Opaque string specified in the request.

\n@param creationToken Opaque string specified in the request.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "PerformanceMode" : { "documentation" : "

The PerformanceMode of the file system.

", "name" : "PerformanceMode", "c2jName" : "PerformanceMode", "c2jShape" : "PerformanceMode", "variable" : { "variableName" : "performanceMode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The PerformanceMode of the file system.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "performanceMode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "PerformanceMode", "marshallLocationName" : "PerformanceMode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "PerformanceMode", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The PerformanceMode of the file system.

\n@param performanceMode The PerformanceMode of the file system.\n@see PerformanceMode*/", "getterDocumentation" : "/**

The PerformanceMode of the file system.

\n@return The PerformanceMode of the file system.\n@see PerformanceMode*/", "fluentSetterDocumentation" : "/**

The PerformanceMode of the file system.

\n@param performanceMode The PerformanceMode of the file system.\n@return Returns a reference to this object so that method calls can be chained together.\n@see PerformanceMode*/", "varargSetterDocumentation" : "/**

The PerformanceMode of the file system.

\n@param performanceMode The PerformanceMode of the file system.\n@return Returns a reference to this object so that method calls can be chained together.\n@see PerformanceMode*/" }, "CreationTime" : { "documentation" : "

Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).

", "name" : "CreationTime", "c2jName" : "CreationTime", "c2jShape" : "Timestamp", "variable" : { "variableName" : "creationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "

Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).

", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "setterModel" : { "variableName" : "creationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "getterModel" : { "returnType" : "java.util.Date", "documentation" : null }, "http" : { "unmarshallLocationName" : "CreationTime", "marshallLocationName" : "CreationTime", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).

\n@param creationTime Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).*/", "getterDocumentation" : "/**

Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).

\n@return Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).*/", "fluentSetterDocumentation" : "/**

Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).

\n@param creationTime Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).

\n@param creationTime Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "LifeCycleState" : { "documentation" : "

Lifecycle phase of the file system.

", "name" : "LifeCycleState", "c2jName" : "LifeCycleState", "c2jShape" : "LifeCycleState", "variable" : { "variableName" : "lifeCycleState", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Lifecycle phase of the file system.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "lifeCycleState", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "LifeCycleState", "marshallLocationName" : "LifeCycleState", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "LifeCycleState", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Lifecycle phase of the file system.

\n@param lifeCycleState Lifecycle phase of the file system.\n@see LifeCycleState*/", "getterDocumentation" : "/**

Lifecycle phase of the file system.

\n@return Lifecycle phase of the file system.\n@see LifeCycleState*/", "fluentSetterDocumentation" : "/**

Lifecycle phase of the file system.

\n@param lifeCycleState Lifecycle phase of the file system.\n@return Returns a reference to this object so that method calls can be chained together.\n@see LifeCycleState*/", "varargSetterDocumentation" : "/**

Lifecycle phase of the file system.

\n@param lifeCycleState Lifecycle phase of the file system.\n@return Returns a reference to this object so that method calls can be chained together.\n@see LifeCycleState*/" }, "FileSystemId" : { "documentation" : "

ID of the file system, assigned by Amazon EFS.

", "name" : "FileSystemId", "c2jName" : "FileSystemId", "c2jShape" : "FileSystemId", "variable" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

ID of the file system, assigned by Amazon EFS.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FileSystemId", "marshallLocationName" : "FileSystemId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

ID of the file system, assigned by Amazon EFS.

\n@param fileSystemId ID of the file system, assigned by Amazon EFS.*/", "getterDocumentation" : "/**

ID of the file system, assigned by Amazon EFS.

\n@return ID of the file system, assigned by Amazon EFS.*/", "fluentSetterDocumentation" : "/**

ID of the file system, assigned by Amazon EFS.

\n@param fileSystemId ID of the file system, assigned by Amazon EFS.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

ID of the file system, assigned by Amazon EFS.

\n@param fileSystemId ID of the file system, assigned by Amazon EFS.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "SizeInBytes" : { "documentation" : "

Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.

", "name" : "SizeInBytes", "c2jName" : "SizeInBytes", "c2jShape" : "FileSystemSize", "variable" : { "variableName" : "sizeInBytes", "variableType" : "FileSystemSize", "variableDeclarationType" : "FileSystemSize", "documentation" : "

Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.

", "simpleType" : "FileSystemSize", "variableSetterType" : "FileSystemSize" }, "setterModel" : { "variableName" : "sizeInBytes", "variableType" : "FileSystemSize", "variableDeclarationType" : "FileSystemSize", "documentation" : "", "simpleType" : "FileSystemSize", "variableSetterType" : "FileSystemSize" }, "getterModel" : { "returnType" : "FileSystemSize", "documentation" : null }, "http" : { "unmarshallLocationName" : "SizeInBytes", "marshallLocationName" : "SizeInBytes", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.

\n@param sizeInBytes Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.*/", "getterDocumentation" : "/**

Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.

\n@return Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.*/", "fluentSetterDocumentation" : "/**

Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.

\n@param sizeInBytes Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.

\n@param sizeInBytes Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Name" : { "documentation" : "

You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.

", "name" : "Name", "c2jName" : "Name", "c2jShape" : "TagValue", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Name", "marshallLocationName" : "Name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.

\n@param name You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.*/", "getterDocumentation" : "/**

You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.

\n@return You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.*/", "fluentSetterDocumentation" : "/**

You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.

\n@param name You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.

\n@param name You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "IpAddressInUseException" : { "c2jName" : "IpAddressInUse", "documentation" : "

Returned if the request specified an IpAddress that is already in use in the subnet.

", "shapeName" : "IpAddressInUseException", "deprecated" : false, "required" : [ "ErrorCode" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "", "name" : "ErrorCode", "c2jName" : "ErrorCode", "c2jShape" : "ErrorCode", "variable" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ErrorCode", "marshallLocationName" : "ErrorCode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param errorCode */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "ipAddressInUseException", "variableType" : "IpAddressInUseException", "variableDeclarationType" : "IpAddressInUseException", "documentation" : null, "simpleType" : "IpAddressInUseException", "variableSetterType" : "IpAddressInUseException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "IpAddressInUse", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "ErrorCode" : { "documentation" : "", "name" : "ErrorCode", "c2jName" : "ErrorCode", "c2jShape" : "ErrorCode", "variable" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ErrorCode", "marshallLocationName" : "ErrorCode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param errorCode */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "DescribeMountTargetSecurityGroupsResult" : { "c2jName" : "DescribeMountTargetSecurityGroupsResponse", "documentation" : "", "shapeName" : "DescribeMountTargetSecurityGroupsResult", "deprecated" : false, "required" : [ "SecurityGroups" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Array of security groups.

", "name" : "SecurityGroups", "c2jName" : "SecurityGroups", "c2jShape" : "SecurityGroups", "variable" : { "variableName" : "securityGroups", "variableType" : "java.util.List", "variableDeclarationType" : "com.amazonaws.internal.SdkInternalList", "documentation" : "

Array of security groups.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "securityGroups", "variableType" : "java.util.List", "variableDeclarationType" : "com.amazonaws.internal.SdkInternalList", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "SecurityGroups", "marshallLocationName" : "SecurityGroups", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "String", "memberLocationName" : null, "implType" : "com.amazonaws.internal.SdkInternalList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "SecurityGroup", "variable" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "map" : false, "simpleType" : "String", "templateType" : "java.util.List", "templateImplType" : "com.amazonaws.internal.SdkInternalList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Array of security groups.

\n@param securityGroups Array of security groups.*/", "getterDocumentation" : "/**

Array of security groups.

\n@return Array of security groups.*/", "fluentSetterDocumentation" : "/**

Array of security groups.

\n@param securityGroups Array of security groups.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Array of security groups.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setSecurityGroups(java.util.Collection)} or {@link #withSecurityGroups(java.util.Collection)} if you want to override the existing values.

\n@param securityGroups Array of security groups.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "describeMountTargetSecurityGroupsResult", "variableType" : "DescribeMountTargetSecurityGroupsResult", "variableDeclarationType" : "DescribeMountTargetSecurityGroupsResult", "documentation" : null, "simpleType" : "DescribeMountTargetSecurityGroupsResult", "variableSetterType" : "DescribeMountTargetSecurityGroupsResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "SecurityGroups" : { "documentation" : "

Array of security groups.

", "name" : "SecurityGroups", "c2jName" : "SecurityGroups", "c2jShape" : "SecurityGroups", "variable" : { "variableName" : "securityGroups", "variableType" : "java.util.List", "variableDeclarationType" : "com.amazonaws.internal.SdkInternalList", "documentation" : "

Array of security groups.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "securityGroups", "variableType" : "java.util.List", "variableDeclarationType" : "com.amazonaws.internal.SdkInternalList", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "SecurityGroups", "marshallLocationName" : "SecurityGroups", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "String", "memberLocationName" : null, "implType" : "com.amazonaws.internal.SdkInternalList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "SecurityGroup", "variable" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "map" : false, "simpleType" : "String", "templateType" : "java.util.List", "templateImplType" : "com.amazonaws.internal.SdkInternalList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Array of security groups.

\n@param securityGroups Array of security groups.*/", "getterDocumentation" : "/**

Array of security groups.

\n@return Array of security groups.*/", "fluentSetterDocumentation" : "/**

Array of security groups.

\n@param securityGroups Array of security groups.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Array of security groups.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setSecurityGroups(java.util.Collection)} or {@link #withSecurityGroups(java.util.Collection)} if you want to override the existing values.

\n@param securityGroups Array of security groups.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "DeleteFileSystemResult" : { "c2jName" : "DeleteFileSystemResult", "documentation" : null, "shapeName" : "DeleteFileSystemResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "deleteFileSystemResult", "variableType" : "DeleteFileSystemResult", "variableDeclarationType" : "DeleteFileSystemResult", "documentation" : null, "simpleType" : "DeleteFileSystemResult", "variableSetterType" : "DeleteFileSystemResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "CreateTagsResult" : { "c2jName" : "CreateTagsResult", "documentation" : null, "shapeName" : "CreateTagsResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "createTagsResult", "variableType" : "CreateTagsResult", "variableDeclarationType" : "CreateTagsResult", "documentation" : null, "simpleType" : "CreateTagsResult", "variableSetterType" : "CreateTagsResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "DeleteMountTargetResult" : { "c2jName" : "DeleteMountTargetResult", "documentation" : null, "shapeName" : "DeleteMountTargetResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "deleteMountTargetResult", "variableType" : "DeleteMountTargetResult", "variableDeclarationType" : "DeleteMountTargetResult", "documentation" : null, "simpleType" : "DeleteMountTargetResult", "variableSetterType" : "DeleteMountTargetResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "MountTargetConflictException" : { "c2jName" : "MountTargetConflict", "documentation" : "

Returned if the mount target would violate one of the specified restrictions based on the file system's existing mount targets.

", "shapeName" : "MountTargetConflictException", "deprecated" : false, "required" : [ "ErrorCode" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "", "name" : "ErrorCode", "c2jName" : "ErrorCode", "c2jShape" : "ErrorCode", "variable" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ErrorCode", "marshallLocationName" : "ErrorCode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param errorCode */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "mountTargetConflictException", "variableType" : "MountTargetConflictException", "variableDeclarationType" : "MountTargetConflictException", "documentation" : null, "simpleType" : "MountTargetConflictException", "variableSetterType" : "MountTargetConflictException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "MountTargetConflict", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "ErrorCode" : { "documentation" : "", "name" : "ErrorCode", "c2jName" : "ErrorCode", "c2jShape" : "ErrorCode", "variable" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ErrorCode", "marshallLocationName" : "ErrorCode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param errorCode */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "DeleteMountTargetRequest" : { "c2jName" : "DeleteMountTargetRequest", "documentation" : "

", "shapeName" : "DeleteMountTargetRequest", "deprecated" : false, "required" : [ "MountTargetId" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

ID of the mount target to delete (String).

", "name" : "MountTargetId", "c2jName" : "MountTargetId", "c2jShape" : "MountTargetId", "variable" : { "variableName" : "mountTargetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

ID of the mount target to delete (String).

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "mountTargetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "MountTargetId", "marshallLocationName" : "MountTargetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : "uri", "flattened" : false, "header" : false, "uri" : true, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

ID of the mount target to delete (String).

\n@param mountTargetId ID of the mount target to delete (String).*/", "getterDocumentation" : "/**

ID of the mount target to delete (String).

\n@return ID of the mount target to delete (String).*/", "fluentSetterDocumentation" : "/**

ID of the mount target to delete (String).

\n@param mountTargetId ID of the mount target to delete (String).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

ID of the mount target to delete (String).

\n@param mountTargetId ID of the mount target to delete (String).\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "deleteMountTargetRequest", "variableType" : "DeleteMountTargetRequest", "variableDeclarationType" : "DeleteMountTargetRequest", "documentation" : null, "simpleType" : "DeleteMountTargetRequest", "variableSetterType" : "DeleteMountTargetRequest" }, "marshaller" : { "action" : "DeleteMountTarget", "verb" : "DELETE", "target" : null, "requestUri" : "/2015-02-01/mount-targets/{MountTargetId}", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "MountTargetId" : { "documentation" : "

ID of the mount target to delete (String).

", "name" : "MountTargetId", "c2jName" : "MountTargetId", "c2jShape" : "MountTargetId", "variable" : { "variableName" : "mountTargetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

ID of the mount target to delete (String).

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "mountTargetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "MountTargetId", "marshallLocationName" : "MountTargetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : "uri", "flattened" : false, "header" : false, "uri" : true, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

ID of the mount target to delete (String).

\n@param mountTargetId ID of the mount target to delete (String).*/", "getterDocumentation" : "/**

ID of the mount target to delete (String).

\n@return ID of the mount target to delete (String).*/", "fluentSetterDocumentation" : "/**

ID of the mount target to delete (String).

\n@param mountTargetId ID of the mount target to delete (String).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

ID of the mount target to delete (String).

\n@param mountTargetId ID of the mount target to delete (String).\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "DescribeFileSystemsResult" : { "c2jName" : "DescribeFileSystemsResponse", "documentation" : "", "shapeName" : "DescribeFileSystemsResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Present if provided by caller in the request (String).

", "name" : "Marker", "c2jName" : "Marker", "c2jShape" : "Marker", "variable" : { "variableName" : "marker", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Present if provided by caller in the request (String).

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "marker", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Marker", "marshallLocationName" : "Marker", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Present if provided by caller in the request (String).

\n@param marker Present if provided by caller in the request (String).*/", "getterDocumentation" : "/**

Present if provided by caller in the request (String).

\n@return Present if provided by caller in the request (String).*/", "fluentSetterDocumentation" : "/**

Present if provided by caller in the request (String).

\n@param marker Present if provided by caller in the request (String).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Present if provided by caller in the request (String).

\n@param marker Present if provided by caller in the request (String).\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Array of file system descriptions.

", "name" : "FileSystems", "c2jName" : "FileSystems", "c2jShape" : "FileSystemDescriptions", "variable" : { "variableName" : "fileSystems", "variableType" : "java.util.List", "variableDeclarationType" : "com.amazonaws.internal.SdkInternalList", "documentation" : "

Array of file system descriptions.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "fileSystems", "variableType" : "java.util.List", "variableDeclarationType" : "com.amazonaws.internal.SdkInternalList", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "FileSystems", "marshallLocationName" : "FileSystems", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "FileSystemDescription", "memberLocationName" : null, "implType" : "com.amazonaws.internal.SdkInternalList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "FileSystemDescription", "variable" : { "variableName" : "member", "variableType" : "FileSystemDescription", "variableDeclarationType" : "FileSystemDescription", "documentation" : "", "simpleType" : "FileSystemDescription", "variableSetterType" : "FileSystemDescription" }, "setterModel" : { "variableName" : "member", "variableType" : "FileSystemDescription", "variableDeclarationType" : "FileSystemDescription", "documentation" : "", "simpleType" : "FileSystemDescription", "variableSetterType" : "FileSystemDescription" }, "getterModel" : { "returnType" : "FileSystemDescription", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "FileSystemDescription", "templateType" : "java.util.List", "templateImplType" : "com.amazonaws.internal.SdkInternalList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Array of file system descriptions.

\n@param fileSystems Array of file system descriptions.*/", "getterDocumentation" : "/**

Array of file system descriptions.

\n@return Array of file system descriptions.*/", "fluentSetterDocumentation" : "/**

Array of file system descriptions.

\n@param fileSystems Array of file system descriptions.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Array of file system descriptions.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setFileSystems(java.util.Collection)} or {@link #withFileSystems(java.util.Collection)} if you want to override the existing values.

\n@param fileSystems Array of file system descriptions.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Present if there are more file systems than returned in the response (String). You can use the NextMarker in the subsequent request to fetch the descriptions.

", "name" : "NextMarker", "c2jName" : "NextMarker", "c2jShape" : "Marker", "variable" : { "variableName" : "nextMarker", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Present if there are more file systems than returned in the response (String). You can use the NextMarker in the subsequent request to fetch the descriptions.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextMarker", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextMarker", "marshallLocationName" : "NextMarker", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Present if there are more file systems than returned in the response (String). You can use the NextMarker in the subsequent request to fetch the descriptions.

\n@param nextMarker Present if there are more file systems than returned in the response (String). You can use the NextMarker in the subsequent request to fetch the descriptions.*/", "getterDocumentation" : "/**

Present if there are more file systems than returned in the response (String). You can use the NextMarker in the subsequent request to fetch the descriptions.

\n@return Present if there are more file systems than returned in the response (String). You can use the NextMarker in the subsequent request to fetch the descriptions.*/", "fluentSetterDocumentation" : "/**

Present if there are more file systems than returned in the response (String). You can use the NextMarker in the subsequent request to fetch the descriptions.

\n@param nextMarker Present if there are more file systems than returned in the response (String). You can use the NextMarker in the subsequent request to fetch the descriptions.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Present if there are more file systems than returned in the response (String). You can use the NextMarker in the subsequent request to fetch the descriptions.

\n@param nextMarker Present if there are more file systems than returned in the response (String). You can use the NextMarker in the subsequent request to fetch the descriptions.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "describeFileSystemsResult", "variableType" : "DescribeFileSystemsResult", "variableDeclarationType" : "DescribeFileSystemsResult", "documentation" : null, "simpleType" : "DescribeFileSystemsResult", "variableSetterType" : "DescribeFileSystemsResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "FileSystems" : { "documentation" : "

Array of file system descriptions.

", "name" : "FileSystems", "c2jName" : "FileSystems", "c2jShape" : "FileSystemDescriptions", "variable" : { "variableName" : "fileSystems", "variableType" : "java.util.List", "variableDeclarationType" : "com.amazonaws.internal.SdkInternalList", "documentation" : "

Array of file system descriptions.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "fileSystems", "variableType" : "java.util.List", "variableDeclarationType" : "com.amazonaws.internal.SdkInternalList", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "FileSystems", "marshallLocationName" : "FileSystems", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "FileSystemDescription", "memberLocationName" : null, "implType" : "com.amazonaws.internal.SdkInternalList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "FileSystemDescription", "variable" : { "variableName" : "member", "variableType" : "FileSystemDescription", "variableDeclarationType" : "FileSystemDescription", "documentation" : "", "simpleType" : "FileSystemDescription", "variableSetterType" : "FileSystemDescription" }, "setterModel" : { "variableName" : "member", "variableType" : "FileSystemDescription", "variableDeclarationType" : "FileSystemDescription", "documentation" : "", "simpleType" : "FileSystemDescription", "variableSetterType" : "FileSystemDescription" }, "getterModel" : { "returnType" : "FileSystemDescription", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "FileSystemDescription", "templateType" : "java.util.List", "templateImplType" : "com.amazonaws.internal.SdkInternalList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Array of file system descriptions.

\n@param fileSystems Array of file system descriptions.*/", "getterDocumentation" : "/**

Array of file system descriptions.

\n@return Array of file system descriptions.*/", "fluentSetterDocumentation" : "/**

Array of file system descriptions.

\n@param fileSystems Array of file system descriptions.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Array of file system descriptions.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setFileSystems(java.util.Collection)} or {@link #withFileSystems(java.util.Collection)} if you want to override the existing values.

\n@param fileSystems Array of file system descriptions.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Marker" : { "documentation" : "

Present if provided by caller in the request (String).

", "name" : "Marker", "c2jName" : "Marker", "c2jShape" : "Marker", "variable" : { "variableName" : "marker", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Present if provided by caller in the request (String).

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "marker", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Marker", "marshallLocationName" : "Marker", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Present if provided by caller in the request (String).

\n@param marker Present if provided by caller in the request (String).*/", "getterDocumentation" : "/**

Present if provided by caller in the request (String).

\n@return Present if provided by caller in the request (String).*/", "fluentSetterDocumentation" : "/**

Present if provided by caller in the request (String).

\n@param marker Present if provided by caller in the request (String).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Present if provided by caller in the request (String).

\n@param marker Present if provided by caller in the request (String).\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "NextMarker" : { "documentation" : "

Present if there are more file systems than returned in the response (String). You can use the NextMarker in the subsequent request to fetch the descriptions.

", "name" : "NextMarker", "c2jName" : "NextMarker", "c2jShape" : "Marker", "variable" : { "variableName" : "nextMarker", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Present if there are more file systems than returned in the response (String). You can use the NextMarker in the subsequent request to fetch the descriptions.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextMarker", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextMarker", "marshallLocationName" : "NextMarker", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Present if there are more file systems than returned in the response (String). You can use the NextMarker in the subsequent request to fetch the descriptions.

\n@param nextMarker Present if there are more file systems than returned in the response (String). You can use the NextMarker in the subsequent request to fetch the descriptions.*/", "getterDocumentation" : "/**

Present if there are more file systems than returned in the response (String). You can use the NextMarker in the subsequent request to fetch the descriptions.

\n@return Present if there are more file systems than returned in the response (String). You can use the NextMarker in the subsequent request to fetch the descriptions.*/", "fluentSetterDocumentation" : "/**

Present if there are more file systems than returned in the response (String). You can use the NextMarker in the subsequent request to fetch the descriptions.

\n@param nextMarker Present if there are more file systems than returned in the response (String). You can use the NextMarker in the subsequent request to fetch the descriptions.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Present if there are more file systems than returned in the response (String). You can use the NextMarker in the subsequent request to fetch the descriptions.

\n@param nextMarker Present if there are more file systems than returned in the response (String). You can use the NextMarker in the subsequent request to fetch the descriptions.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "SecurityGroupNotFoundException" : { "c2jName" : "SecurityGroupNotFound", "documentation" : "

Returned if one of the specified security groups does not exist in the subnet's VPC.

", "shapeName" : "SecurityGroupNotFoundException", "deprecated" : false, "required" : [ "ErrorCode" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "", "name" : "ErrorCode", "c2jName" : "ErrorCode", "c2jShape" : "ErrorCode", "variable" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ErrorCode", "marshallLocationName" : "ErrorCode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param errorCode */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "securityGroupNotFoundException", "variableType" : "SecurityGroupNotFoundException", "variableDeclarationType" : "SecurityGroupNotFoundException", "documentation" : null, "simpleType" : "SecurityGroupNotFoundException", "variableSetterType" : "SecurityGroupNotFoundException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "SecurityGroupNotFound", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "ErrorCode" : { "documentation" : "", "name" : "ErrorCode", "c2jName" : "ErrorCode", "c2jShape" : "ErrorCode", "variable" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ErrorCode", "marshallLocationName" : "ErrorCode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param errorCode */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "FileSystemInUseException" : { "c2jName" : "FileSystemInUse", "documentation" : "

Returned if a file system has mount targets.

", "shapeName" : "FileSystemInUseException", "deprecated" : false, "required" : [ "ErrorCode" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "", "name" : "ErrorCode", "c2jName" : "ErrorCode", "c2jShape" : "ErrorCode", "variable" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ErrorCode", "marshallLocationName" : "ErrorCode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param errorCode */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "fileSystemInUseException", "variableType" : "FileSystemInUseException", "variableDeclarationType" : "FileSystemInUseException", "documentation" : null, "simpleType" : "FileSystemInUseException", "variableSetterType" : "FileSystemInUseException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "FileSystemInUse", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "ErrorCode" : { "documentation" : "", "name" : "ErrorCode", "c2jName" : "ErrorCode", "c2jShape" : "ErrorCode", "variable" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ErrorCode", "marshallLocationName" : "ErrorCode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param errorCode */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "FileSystemAlreadyExistsException" : { "c2jName" : "FileSystemAlreadyExists", "documentation" : "

Returned if the file system you are trying to create already exists, with the creation token you provided.

", "shapeName" : "FileSystemAlreadyExistsException", "deprecated" : false, "required" : [ "ErrorCode", "FileSystemId" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "", "name" : "ErrorCode", "c2jName" : "ErrorCode", "c2jShape" : "ErrorCode", "variable" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ErrorCode", "marshallLocationName" : "ErrorCode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param errorCode */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "", "name" : "FileSystemId", "c2jName" : "FileSystemId", "c2jShape" : "FileSystemId", "variable" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FileSystemId", "marshallLocationName" : "FileSystemId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param fileSystemId */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param fileSystemId \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param fileSystemId \n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "fileSystemAlreadyExistsException", "variableType" : "FileSystemAlreadyExistsException", "variableDeclarationType" : "FileSystemAlreadyExistsException", "documentation" : null, "simpleType" : "FileSystemAlreadyExistsException", "variableSetterType" : "FileSystemAlreadyExistsException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "FileSystemAlreadyExists", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "FileSystemId" : { "documentation" : "", "name" : "FileSystemId", "c2jName" : "FileSystemId", "c2jShape" : "FileSystemId", "variable" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FileSystemId", "marshallLocationName" : "FileSystemId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param fileSystemId */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param fileSystemId \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param fileSystemId \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "ErrorCode" : { "documentation" : "", "name" : "ErrorCode", "c2jName" : "ErrorCode", "c2jShape" : "ErrorCode", "variable" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ErrorCode", "marshallLocationName" : "ErrorCode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param errorCode */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "SecurityGroupLimitExceededException" : { "c2jName" : "SecurityGroupLimitExceeded", "documentation" : "

Returned if the size of SecurityGroups specified in the request is greater than five.

", "shapeName" : "SecurityGroupLimitExceededException", "deprecated" : false, "required" : [ "ErrorCode" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "", "name" : "ErrorCode", "c2jName" : "ErrorCode", "c2jShape" : "ErrorCode", "variable" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ErrorCode", "marshallLocationName" : "ErrorCode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param errorCode */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "securityGroupLimitExceededException", "variableType" : "SecurityGroupLimitExceededException", "variableDeclarationType" : "SecurityGroupLimitExceededException", "documentation" : null, "simpleType" : "SecurityGroupLimitExceededException", "variableSetterType" : "SecurityGroupLimitExceededException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "SecurityGroupLimitExceeded", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "ErrorCode" : { "documentation" : "", "name" : "ErrorCode", "c2jName" : "ErrorCode", "c2jShape" : "ErrorCode", "variable" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ErrorCode", "marshallLocationName" : "ErrorCode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param errorCode */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "CreateMountTargetRequest" : { "c2jName" : "CreateMountTargetRequest", "documentation" : "

", "shapeName" : "CreateMountTargetRequest", "deprecated" : false, "required" : [ "FileSystemId", "SubnetId" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

ID of the file system for which to create the mount target.

", "name" : "FileSystemId", "c2jName" : "FileSystemId", "c2jShape" : "FileSystemId", "variable" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

ID of the file system for which to create the mount target.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FileSystemId", "marshallLocationName" : "FileSystemId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

ID of the file system for which to create the mount target.

\n@param fileSystemId ID of the file system for which to create the mount target.*/", "getterDocumentation" : "/**

ID of the file system for which to create the mount target.

\n@return ID of the file system for which to create the mount target.*/", "fluentSetterDocumentation" : "/**

ID of the file system for which to create the mount target.

\n@param fileSystemId ID of the file system for which to create the mount target.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

ID of the file system for which to create the mount target.

\n@param fileSystemId ID of the file system for which to create the mount target.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

ID of the subnet to add the mount target in.

", "name" : "SubnetId", "c2jName" : "SubnetId", "c2jShape" : "SubnetId", "variable" : { "variableName" : "subnetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

ID of the subnet to add the mount target in.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "subnetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "SubnetId", "marshallLocationName" : "SubnetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

ID of the subnet to add the mount target in.

\n@param subnetId ID of the subnet to add the mount target in.*/", "getterDocumentation" : "/**

ID of the subnet to add the mount target in.

\n@return ID of the subnet to add the mount target in.*/", "fluentSetterDocumentation" : "/**

ID of the subnet to add the mount target in.

\n@param subnetId ID of the subnet to add the mount target in.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

ID of the subnet to add the mount target in.

\n@param subnetId ID of the subnet to add the mount target in.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Valid IPv4 address within the address range of the specified subnet.

", "name" : "IpAddress", "c2jName" : "IpAddress", "c2jShape" : "IpAddress", "variable" : { "variableName" : "ipAddress", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Valid IPv4 address within the address range of the specified subnet.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "ipAddress", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "IpAddress", "marshallLocationName" : "IpAddress", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Valid IPv4 address within the address range of the specified subnet.

\n@param ipAddress Valid IPv4 address within the address range of the specified subnet.*/", "getterDocumentation" : "/**

Valid IPv4 address within the address range of the specified subnet.

\n@return Valid IPv4 address within the address range of the specified subnet.*/", "fluentSetterDocumentation" : "/**

Valid IPv4 address within the address range of the specified subnet.

\n@param ipAddress Valid IPv4 address within the address range of the specified subnet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Valid IPv4 address within the address range of the specified subnet.

\n@param ipAddress Valid IPv4 address within the address range of the specified subnet.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Up to five VPC security group IDs, of the form sg-xxxxxxxx. These must be for the same VPC as subnet specified.

", "name" : "SecurityGroups", "c2jName" : "SecurityGroups", "c2jShape" : "SecurityGroups", "variable" : { "variableName" : "securityGroups", "variableType" : "java.util.List", "variableDeclarationType" : "com.amazonaws.internal.SdkInternalList", "documentation" : "

Up to five VPC security group IDs, of the form sg-xxxxxxxx. These must be for the same VPC as subnet specified.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "securityGroups", "variableType" : "java.util.List", "variableDeclarationType" : "com.amazonaws.internal.SdkInternalList", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "SecurityGroups", "marshallLocationName" : "SecurityGroups", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "String", "memberLocationName" : null, "implType" : "com.amazonaws.internal.SdkInternalList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "SecurityGroup", "variable" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "map" : false, "simpleType" : "String", "templateType" : "java.util.List", "templateImplType" : "com.amazonaws.internal.SdkInternalList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Up to five VPC security group IDs, of the form sg-xxxxxxxx. These must be for the same VPC as subnet specified.

\n@param securityGroups Up to five VPC security group IDs, of the form sg-xxxxxxxx. These must be for the same VPC as subnet specified.*/", "getterDocumentation" : "/**

Up to five VPC security group IDs, of the form sg-xxxxxxxx. These must be for the same VPC as subnet specified.

\n@return Up to five VPC security group IDs, of the form sg-xxxxxxxx. These must be for the same VPC as subnet specified.*/", "fluentSetterDocumentation" : "/**

Up to five VPC security group IDs, of the form sg-xxxxxxxx. These must be for the same VPC as subnet specified.

\n@param securityGroups Up to five VPC security group IDs, of the form sg-xxxxxxxx. These must be for the same VPC as subnet specified.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Up to five VPC security group IDs, of the form sg-xxxxxxxx. These must be for the same VPC as subnet specified.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setSecurityGroups(java.util.Collection)} or {@link #withSecurityGroups(java.util.Collection)} if you want to override the existing values.

\n@param securityGroups Up to five VPC security group IDs, of the form sg-xxxxxxxx. These must be for the same VPC as subnet specified.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "createMountTargetRequest", "variableType" : "CreateMountTargetRequest", "variableDeclarationType" : "CreateMountTargetRequest", "documentation" : null, "simpleType" : "CreateMountTargetRequest", "variableSetterType" : "CreateMountTargetRequest" }, "marshaller" : { "action" : "CreateMountTarget", "verb" : "POST", "target" : null, "requestUri" : "/2015-02-01/mount-targets", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "SecurityGroups" : { "documentation" : "

Up to five VPC security group IDs, of the form sg-xxxxxxxx. These must be for the same VPC as subnet specified.

", "name" : "SecurityGroups", "c2jName" : "SecurityGroups", "c2jShape" : "SecurityGroups", "variable" : { "variableName" : "securityGroups", "variableType" : "java.util.List", "variableDeclarationType" : "com.amazonaws.internal.SdkInternalList", "documentation" : "

Up to five VPC security group IDs, of the form sg-xxxxxxxx. These must be for the same VPC as subnet specified.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "securityGroups", "variableType" : "java.util.List", "variableDeclarationType" : "com.amazonaws.internal.SdkInternalList", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "SecurityGroups", "marshallLocationName" : "SecurityGroups", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "String", "memberLocationName" : null, "implType" : "com.amazonaws.internal.SdkInternalList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "SecurityGroup", "variable" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "map" : false, "simpleType" : "String", "templateType" : "java.util.List", "templateImplType" : "com.amazonaws.internal.SdkInternalList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Up to five VPC security group IDs, of the form sg-xxxxxxxx. These must be for the same VPC as subnet specified.

\n@param securityGroups Up to five VPC security group IDs, of the form sg-xxxxxxxx. These must be for the same VPC as subnet specified.*/", "getterDocumentation" : "/**

Up to five VPC security group IDs, of the form sg-xxxxxxxx. These must be for the same VPC as subnet specified.

\n@return Up to five VPC security group IDs, of the form sg-xxxxxxxx. These must be for the same VPC as subnet specified.*/", "fluentSetterDocumentation" : "/**

Up to five VPC security group IDs, of the form sg-xxxxxxxx. These must be for the same VPC as subnet specified.

\n@param securityGroups Up to five VPC security group IDs, of the form sg-xxxxxxxx. These must be for the same VPC as subnet specified.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Up to five VPC security group IDs, of the form sg-xxxxxxxx. These must be for the same VPC as subnet specified.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setSecurityGroups(java.util.Collection)} or {@link #withSecurityGroups(java.util.Collection)} if you want to override the existing values.

\n@param securityGroups Up to five VPC security group IDs, of the form sg-xxxxxxxx. These must be for the same VPC as subnet specified.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "FileSystemId" : { "documentation" : "

ID of the file system for which to create the mount target.

", "name" : "FileSystemId", "c2jName" : "FileSystemId", "c2jShape" : "FileSystemId", "variable" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

ID of the file system for which to create the mount target.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FileSystemId", "marshallLocationName" : "FileSystemId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

ID of the file system for which to create the mount target.

\n@param fileSystemId ID of the file system for which to create the mount target.*/", "getterDocumentation" : "/**

ID of the file system for which to create the mount target.

\n@return ID of the file system for which to create the mount target.*/", "fluentSetterDocumentation" : "/**

ID of the file system for which to create the mount target.

\n@param fileSystemId ID of the file system for which to create the mount target.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

ID of the file system for which to create the mount target.

\n@param fileSystemId ID of the file system for which to create the mount target.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "IpAddress" : { "documentation" : "

Valid IPv4 address within the address range of the specified subnet.

", "name" : "IpAddress", "c2jName" : "IpAddress", "c2jShape" : "IpAddress", "variable" : { "variableName" : "ipAddress", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Valid IPv4 address within the address range of the specified subnet.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "ipAddress", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "IpAddress", "marshallLocationName" : "IpAddress", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Valid IPv4 address within the address range of the specified subnet.

\n@param ipAddress Valid IPv4 address within the address range of the specified subnet.*/", "getterDocumentation" : "/**

Valid IPv4 address within the address range of the specified subnet.

\n@return Valid IPv4 address within the address range of the specified subnet.*/", "fluentSetterDocumentation" : "/**

Valid IPv4 address within the address range of the specified subnet.

\n@param ipAddress Valid IPv4 address within the address range of the specified subnet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Valid IPv4 address within the address range of the specified subnet.

\n@param ipAddress Valid IPv4 address within the address range of the specified subnet.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "SubnetId" : { "documentation" : "

ID of the subnet to add the mount target in.

", "name" : "SubnetId", "c2jName" : "SubnetId", "c2jShape" : "SubnetId", "variable" : { "variableName" : "subnetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

ID of the subnet to add the mount target in.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "subnetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "SubnetId", "marshallLocationName" : "SubnetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

ID of the subnet to add the mount target in.

\n@param subnetId ID of the subnet to add the mount target in.*/", "getterDocumentation" : "/**

ID of the subnet to add the mount target in.

\n@return ID of the subnet to add the mount target in.*/", "fluentSetterDocumentation" : "/**

ID of the subnet to add the mount target in.

\n@param subnetId ID of the subnet to add the mount target in.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

ID of the subnet to add the mount target in.

\n@param subnetId ID of the subnet to add the mount target in.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "NetworkInterfaceLimitExceededException" : { "c2jName" : "NetworkInterfaceLimitExceeded", "documentation" : "

The calling account has reached the ENI limit for the specific AWS region. Client should try to delete some ENIs or get its account limit raised. For more information, see Amazon VPC Limits in the Amazon Virtual Private Cloud User Guide (see the Network interfaces per VPC entry in the table).

", "shapeName" : "NetworkInterfaceLimitExceededException", "deprecated" : false, "required" : [ "ErrorCode" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "", "name" : "ErrorCode", "c2jName" : "ErrorCode", "c2jShape" : "ErrorCode", "variable" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ErrorCode", "marshallLocationName" : "ErrorCode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param errorCode */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "networkInterfaceLimitExceededException", "variableType" : "NetworkInterfaceLimitExceededException", "variableDeclarationType" : "NetworkInterfaceLimitExceededException", "documentation" : null, "simpleType" : "NetworkInterfaceLimitExceededException", "variableSetterType" : "NetworkInterfaceLimitExceededException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "NetworkInterfaceLimitExceeded", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "ErrorCode" : { "documentation" : "", "name" : "ErrorCode", "c2jName" : "ErrorCode", "c2jShape" : "ErrorCode", "variable" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ErrorCode", "marshallLocationName" : "ErrorCode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param errorCode */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "CreateFileSystemRequest" : { "c2jName" : "CreateFileSystemRequest", "documentation" : "", "shapeName" : "CreateFileSystemRequest", "deprecated" : false, "required" : [ "CreationToken" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

String of up to 64 ASCII characters. Amazon EFS uses this to ensure idempotent creation.

", "name" : "CreationToken", "c2jName" : "CreationToken", "c2jShape" : "CreationToken", "variable" : { "variableName" : "creationToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

String of up to 64 ASCII characters. Amazon EFS uses this to ensure idempotent creation.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "creationToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "CreationToken", "marshallLocationName" : "CreationToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

String of up to 64 ASCII characters. Amazon EFS uses this to ensure idempotent creation.

\n@param creationToken String of up to 64 ASCII characters. Amazon EFS uses this to ensure idempotent creation.*/", "getterDocumentation" : "/**

String of up to 64 ASCII characters. Amazon EFS uses this to ensure idempotent creation.

\n@return String of up to 64 ASCII characters. Amazon EFS uses this to ensure idempotent creation.*/", "fluentSetterDocumentation" : "/**

String of up to 64 ASCII characters. Amazon EFS uses this to ensure idempotent creation.

\n@param creationToken String of up to 64 ASCII characters. Amazon EFS uses this to ensure idempotent creation.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

String of up to 64 ASCII characters. Amazon EFS uses this to ensure idempotent creation.

\n@param creationToken String of up to 64 ASCII characters. Amazon EFS uses this to ensure idempotent creation.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

The PerformanceMode of the file system. We recommend generalPurpose performance mode for most file systems. File systems using the maxIO performance mode can scale to higher levels of aggregate throughput and operations per second with a tradeoff of slightly higher latencies for most file operations. This can't be changed after the file system has been created.

", "name" : "PerformanceMode", "c2jName" : "PerformanceMode", "c2jShape" : "PerformanceMode", "variable" : { "variableName" : "performanceMode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The PerformanceMode of the file system. We recommend generalPurpose performance mode for most file systems. File systems using the maxIO performance mode can scale to higher levels of aggregate throughput and operations per second with a tradeoff of slightly higher latencies for most file operations. This can't be changed after the file system has been created.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "performanceMode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "PerformanceMode", "marshallLocationName" : "PerformanceMode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "PerformanceMode", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The PerformanceMode of the file system. We recommend generalPurpose performance mode for most file systems. File systems using the maxIO performance mode can scale to higher levels of aggregate throughput and operations per second with a tradeoff of slightly higher latencies for most file operations. This can't be changed after the file system has been created.

\n@param performanceMode The PerformanceMode of the file system. We recommend generalPurpose performance mode for most file systems. File systems using the maxIO performance mode can scale to higher levels of aggregate throughput and operations per second with a tradeoff of slightly higher latencies for most file operations. This can't be changed after the file system has been created.\n@see PerformanceMode*/", "getterDocumentation" : "/**

The PerformanceMode of the file system. We recommend generalPurpose performance mode for most file systems. File systems using the maxIO performance mode can scale to higher levels of aggregate throughput and operations per second with a tradeoff of slightly higher latencies for most file operations. This can't be changed after the file system has been created.

\n@return The PerformanceMode of the file system. We recommend generalPurpose performance mode for most file systems. File systems using the maxIO performance mode can scale to higher levels of aggregate throughput and operations per second with a tradeoff of slightly higher latencies for most file operations. This can't be changed after the file system has been created.\n@see PerformanceMode*/", "fluentSetterDocumentation" : "/**

The PerformanceMode of the file system. We recommend generalPurpose performance mode for most file systems. File systems using the maxIO performance mode can scale to higher levels of aggregate throughput and operations per second with a tradeoff of slightly higher latencies for most file operations. This can't be changed after the file system has been created.

\n@param performanceMode The PerformanceMode of the file system. We recommend generalPurpose performance mode for most file systems. File systems using the maxIO performance mode can scale to higher levels of aggregate throughput and operations per second with a tradeoff of slightly higher latencies for most file operations. This can't be changed after the file system has been created.\n@return Returns a reference to this object so that method calls can be chained together.\n@see PerformanceMode*/", "varargSetterDocumentation" : "/**

The PerformanceMode of the file system. We recommend generalPurpose performance mode for most file systems. File systems using the maxIO performance mode can scale to higher levels of aggregate throughput and operations per second with a tradeoff of slightly higher latencies for most file operations. This can't be changed after the file system has been created.

\n@param performanceMode The PerformanceMode of the file system. We recommend generalPurpose performance mode for most file systems. File systems using the maxIO performance mode can scale to higher levels of aggregate throughput and operations per second with a tradeoff of slightly higher latencies for most file operations. This can't be changed after the file system has been created.\n@return Returns a reference to this object so that method calls can be chained together.\n@see PerformanceMode*/" } ], "enums" : null, "variable" : { "variableName" : "createFileSystemRequest", "variableType" : "CreateFileSystemRequest", "variableDeclarationType" : "CreateFileSystemRequest", "documentation" : null, "simpleType" : "CreateFileSystemRequest", "variableSetterType" : "CreateFileSystemRequest" }, "marshaller" : { "action" : "CreateFileSystem", "verb" : "POST", "target" : null, "requestUri" : "/2015-02-01/file-systems", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "CreationToken" : { "documentation" : "

String of up to 64 ASCII characters. Amazon EFS uses this to ensure idempotent creation.

", "name" : "CreationToken", "c2jName" : "CreationToken", "c2jShape" : "CreationToken", "variable" : { "variableName" : "creationToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

String of up to 64 ASCII characters. Amazon EFS uses this to ensure idempotent creation.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "creationToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "CreationToken", "marshallLocationName" : "CreationToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

String of up to 64 ASCII characters. Amazon EFS uses this to ensure idempotent creation.

\n@param creationToken String of up to 64 ASCII characters. Amazon EFS uses this to ensure idempotent creation.*/", "getterDocumentation" : "/**

String of up to 64 ASCII characters. Amazon EFS uses this to ensure idempotent creation.

\n@return String of up to 64 ASCII characters. Amazon EFS uses this to ensure idempotent creation.*/", "fluentSetterDocumentation" : "/**

String of up to 64 ASCII characters. Amazon EFS uses this to ensure idempotent creation.

\n@param creationToken String of up to 64 ASCII characters. Amazon EFS uses this to ensure idempotent creation.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

String of up to 64 ASCII characters. Amazon EFS uses this to ensure idempotent creation.

\n@param creationToken String of up to 64 ASCII characters. Amazon EFS uses this to ensure idempotent creation.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "PerformanceMode" : { "documentation" : "

The PerformanceMode of the file system. We recommend generalPurpose performance mode for most file systems. File systems using the maxIO performance mode can scale to higher levels of aggregate throughput and operations per second with a tradeoff of slightly higher latencies for most file operations. This can't be changed after the file system has been created.

", "name" : "PerformanceMode", "c2jName" : "PerformanceMode", "c2jShape" : "PerformanceMode", "variable" : { "variableName" : "performanceMode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The PerformanceMode of the file system. We recommend generalPurpose performance mode for most file systems. File systems using the maxIO performance mode can scale to higher levels of aggregate throughput and operations per second with a tradeoff of slightly higher latencies for most file operations. This can't be changed after the file system has been created.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "performanceMode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "PerformanceMode", "marshallLocationName" : "PerformanceMode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "PerformanceMode", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The PerformanceMode of the file system. We recommend generalPurpose performance mode for most file systems. File systems using the maxIO performance mode can scale to higher levels of aggregate throughput and operations per second with a tradeoff of slightly higher latencies for most file operations. This can't be changed after the file system has been created.

\n@param performanceMode The PerformanceMode of the file system. We recommend generalPurpose performance mode for most file systems. File systems using the maxIO performance mode can scale to higher levels of aggregate throughput and operations per second with a tradeoff of slightly higher latencies for most file operations. This can't be changed after the file system has been created.\n@see PerformanceMode*/", "getterDocumentation" : "/**

The PerformanceMode of the file system. We recommend generalPurpose performance mode for most file systems. File systems using the maxIO performance mode can scale to higher levels of aggregate throughput and operations per second with a tradeoff of slightly higher latencies for most file operations. This can't be changed after the file system has been created.

\n@return The PerformanceMode of the file system. We recommend generalPurpose performance mode for most file systems. File systems using the maxIO performance mode can scale to higher levels of aggregate throughput and operations per second with a tradeoff of slightly higher latencies for most file operations. This can't be changed after the file system has been created.\n@see PerformanceMode*/", "fluentSetterDocumentation" : "/**

The PerformanceMode of the file system. We recommend generalPurpose performance mode for most file systems. File systems using the maxIO performance mode can scale to higher levels of aggregate throughput and operations per second with a tradeoff of slightly higher latencies for most file operations. This can't be changed after the file system has been created.

\n@param performanceMode The PerformanceMode of the file system. We recommend generalPurpose performance mode for most file systems. File systems using the maxIO performance mode can scale to higher levels of aggregate throughput and operations per second with a tradeoff of slightly higher latencies for most file operations. This can't be changed after the file system has been created.\n@return Returns a reference to this object so that method calls can be chained together.\n@see PerformanceMode*/", "varargSetterDocumentation" : "/**

The PerformanceMode of the file system. We recommend generalPurpose performance mode for most file systems. File systems using the maxIO performance mode can scale to higher levels of aggregate throughput and operations per second with a tradeoff of slightly higher latencies for most file operations. This can't be changed after the file system has been created.

\n@param performanceMode The PerformanceMode of the file system. We recommend generalPurpose performance mode for most file systems. File systems using the maxIO performance mode can scale to higher levels of aggregate throughput and operations per second with a tradeoff of slightly higher latencies for most file operations. This can't be changed after the file system has been created.\n@return Returns a reference to this object so that method calls can be chained together.\n@see PerformanceMode*/" } } }, "MountTargetDescription" : { "c2jName" : "MountTargetDescription", "documentation" : "

Provides a description of a mount target.

", "shapeName" : "MountTargetDescription", "deprecated" : false, "required" : [ "MountTargetId", "FileSystemId", "SubnetId", "LifeCycleState" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

AWS account ID that owns the resource.

", "name" : "OwnerId", "c2jName" : "OwnerId", "c2jShape" : "AwsAccountId", "variable" : { "variableName" : "ownerId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

AWS account ID that owns the resource.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "ownerId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "OwnerId", "marshallLocationName" : "OwnerId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

AWS account ID that owns the resource.

\n@param ownerId AWS account ID that owns the resource.*/", "getterDocumentation" : "/**

AWS account ID that owns the resource.

\n@return AWS account ID that owns the resource.*/", "fluentSetterDocumentation" : "/**

AWS account ID that owns the resource.

\n@param ownerId AWS account ID that owns the resource.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

AWS account ID that owns the resource.

\n@param ownerId AWS account ID that owns the resource.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

System-assigned mount target ID.

", "name" : "MountTargetId", "c2jName" : "MountTargetId", "c2jShape" : "MountTargetId", "variable" : { "variableName" : "mountTargetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

System-assigned mount target ID.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "mountTargetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "MountTargetId", "marshallLocationName" : "MountTargetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

System-assigned mount target ID.

\n@param mountTargetId System-assigned mount target ID.*/", "getterDocumentation" : "/**

System-assigned mount target ID.

\n@return System-assigned mount target ID.*/", "fluentSetterDocumentation" : "/**

System-assigned mount target ID.

\n@param mountTargetId System-assigned mount target ID.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

System-assigned mount target ID.

\n@param mountTargetId System-assigned mount target ID.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

ID of the file system for which the mount target is intended.

", "name" : "FileSystemId", "c2jName" : "FileSystemId", "c2jShape" : "FileSystemId", "variable" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

ID of the file system for which the mount target is intended.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FileSystemId", "marshallLocationName" : "FileSystemId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

ID of the file system for which the mount target is intended.

\n@param fileSystemId ID of the file system for which the mount target is intended.*/", "getterDocumentation" : "/**

ID of the file system for which the mount target is intended.

\n@return ID of the file system for which the mount target is intended.*/", "fluentSetterDocumentation" : "/**

ID of the file system for which the mount target is intended.

\n@param fileSystemId ID of the file system for which the mount target is intended.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

ID of the file system for which the mount target is intended.

\n@param fileSystemId ID of the file system for which the mount target is intended.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

ID of the mount target's subnet.

", "name" : "SubnetId", "c2jName" : "SubnetId", "c2jShape" : "SubnetId", "variable" : { "variableName" : "subnetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

ID of the mount target's subnet.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "subnetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "SubnetId", "marshallLocationName" : "SubnetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

ID of the mount target's subnet.

\n@param subnetId ID of the mount target's subnet.*/", "getterDocumentation" : "/**

ID of the mount target's subnet.

\n@return ID of the mount target's subnet.*/", "fluentSetterDocumentation" : "/**

ID of the mount target's subnet.

\n@param subnetId ID of the mount target's subnet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

ID of the mount target's subnet.

\n@param subnetId ID of the mount target's subnet.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Lifecycle state of the mount target.

", "name" : "LifeCycleState", "c2jName" : "LifeCycleState", "c2jShape" : "LifeCycleState", "variable" : { "variableName" : "lifeCycleState", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Lifecycle state of the mount target.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "lifeCycleState", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "LifeCycleState", "marshallLocationName" : "LifeCycleState", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "LifeCycleState", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Lifecycle state of the mount target.

\n@param lifeCycleState Lifecycle state of the mount target.\n@see LifeCycleState*/", "getterDocumentation" : "/**

Lifecycle state of the mount target.

\n@return Lifecycle state of the mount target.\n@see LifeCycleState*/", "fluentSetterDocumentation" : "/**

Lifecycle state of the mount target.

\n@param lifeCycleState Lifecycle state of the mount target.\n@return Returns a reference to this object so that method calls can be chained together.\n@see LifeCycleState*/", "varargSetterDocumentation" : "/**

Lifecycle state of the mount target.

\n@param lifeCycleState Lifecycle state of the mount target.\n@return Returns a reference to this object so that method calls can be chained together.\n@see LifeCycleState*/" }, { "documentation" : "

Address at which the file system may be mounted via the mount target.

", "name" : "IpAddress", "c2jName" : "IpAddress", "c2jShape" : "IpAddress", "variable" : { "variableName" : "ipAddress", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Address at which the file system may be mounted via the mount target.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "ipAddress", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "IpAddress", "marshallLocationName" : "IpAddress", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Address at which the file system may be mounted via the mount target.

\n@param ipAddress Address at which the file system may be mounted via the mount target.*/", "getterDocumentation" : "/**

Address at which the file system may be mounted via the mount target.

\n@return Address at which the file system may be mounted via the mount target.*/", "fluentSetterDocumentation" : "/**

Address at which the file system may be mounted via the mount target.

\n@param ipAddress Address at which the file system may be mounted via the mount target.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Address at which the file system may be mounted via the mount target.

\n@param ipAddress Address at which the file system may be mounted via the mount target.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

ID of the network interface that Amazon EFS created when it created the mount target.

", "name" : "NetworkInterfaceId", "c2jName" : "NetworkInterfaceId", "c2jShape" : "NetworkInterfaceId", "variable" : { "variableName" : "networkInterfaceId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

ID of the network interface that Amazon EFS created when it created the mount target.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "networkInterfaceId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NetworkInterfaceId", "marshallLocationName" : "NetworkInterfaceId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

ID of the network interface that Amazon EFS created when it created the mount target.

\n@param networkInterfaceId ID of the network interface that Amazon EFS created when it created the mount target.*/", "getterDocumentation" : "/**

ID of the network interface that Amazon EFS created when it created the mount target.

\n@return ID of the network interface that Amazon EFS created when it created the mount target.*/", "fluentSetterDocumentation" : "/**

ID of the network interface that Amazon EFS created when it created the mount target.

\n@param networkInterfaceId ID of the network interface that Amazon EFS created when it created the mount target.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

ID of the network interface that Amazon EFS created when it created the mount target.

\n@param networkInterfaceId ID of the network interface that Amazon EFS created when it created the mount target.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "mountTargetDescription", "variableType" : "MountTargetDescription", "variableDeclarationType" : "MountTargetDescription", "documentation" : null, "simpleType" : "MountTargetDescription", "variableSetterType" : "MountTargetDescription" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "OwnerId" : { "documentation" : "

AWS account ID that owns the resource.

", "name" : "OwnerId", "c2jName" : "OwnerId", "c2jShape" : "AwsAccountId", "variable" : { "variableName" : "ownerId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

AWS account ID that owns the resource.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "ownerId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "OwnerId", "marshallLocationName" : "OwnerId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

AWS account ID that owns the resource.

\n@param ownerId AWS account ID that owns the resource.*/", "getterDocumentation" : "/**

AWS account ID that owns the resource.

\n@return AWS account ID that owns the resource.*/", "fluentSetterDocumentation" : "/**

AWS account ID that owns the resource.

\n@param ownerId AWS account ID that owns the resource.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

AWS account ID that owns the resource.

\n@param ownerId AWS account ID that owns the resource.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "LifeCycleState" : { "documentation" : "

Lifecycle state of the mount target.

", "name" : "LifeCycleState", "c2jName" : "LifeCycleState", "c2jShape" : "LifeCycleState", "variable" : { "variableName" : "lifeCycleState", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Lifecycle state of the mount target.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "lifeCycleState", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "LifeCycleState", "marshallLocationName" : "LifeCycleState", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "LifeCycleState", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Lifecycle state of the mount target.

\n@param lifeCycleState Lifecycle state of the mount target.\n@see LifeCycleState*/", "getterDocumentation" : "/**

Lifecycle state of the mount target.

\n@return Lifecycle state of the mount target.\n@see LifeCycleState*/", "fluentSetterDocumentation" : "/**

Lifecycle state of the mount target.

\n@param lifeCycleState Lifecycle state of the mount target.\n@return Returns a reference to this object so that method calls can be chained together.\n@see LifeCycleState*/", "varargSetterDocumentation" : "/**

Lifecycle state of the mount target.

\n@param lifeCycleState Lifecycle state of the mount target.\n@return Returns a reference to this object so that method calls can be chained together.\n@see LifeCycleState*/" }, "FileSystemId" : { "documentation" : "

ID of the file system for which the mount target is intended.

", "name" : "FileSystemId", "c2jName" : "FileSystemId", "c2jShape" : "FileSystemId", "variable" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

ID of the file system for which the mount target is intended.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FileSystemId", "marshallLocationName" : "FileSystemId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

ID of the file system for which the mount target is intended.

\n@param fileSystemId ID of the file system for which the mount target is intended.*/", "getterDocumentation" : "/**

ID of the file system for which the mount target is intended.

\n@return ID of the file system for which the mount target is intended.*/", "fluentSetterDocumentation" : "/**

ID of the file system for which the mount target is intended.

\n@param fileSystemId ID of the file system for which the mount target is intended.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

ID of the file system for which the mount target is intended.

\n@param fileSystemId ID of the file system for which the mount target is intended.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "IpAddress" : { "documentation" : "

Address at which the file system may be mounted via the mount target.

", "name" : "IpAddress", "c2jName" : "IpAddress", "c2jShape" : "IpAddress", "variable" : { "variableName" : "ipAddress", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Address at which the file system may be mounted via the mount target.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "ipAddress", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "IpAddress", "marshallLocationName" : "IpAddress", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Address at which the file system may be mounted via the mount target.

\n@param ipAddress Address at which the file system may be mounted via the mount target.*/", "getterDocumentation" : "/**

Address at which the file system may be mounted via the mount target.

\n@return Address at which the file system may be mounted via the mount target.*/", "fluentSetterDocumentation" : "/**

Address at which the file system may be mounted via the mount target.

\n@param ipAddress Address at which the file system may be mounted via the mount target.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Address at which the file system may be mounted via the mount target.

\n@param ipAddress Address at which the file system may be mounted via the mount target.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "SubnetId" : { "documentation" : "

ID of the mount target's subnet.

", "name" : "SubnetId", "c2jName" : "SubnetId", "c2jShape" : "SubnetId", "variable" : { "variableName" : "subnetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

ID of the mount target's subnet.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "subnetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "SubnetId", "marshallLocationName" : "SubnetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

ID of the mount target's subnet.

\n@param subnetId ID of the mount target's subnet.*/", "getterDocumentation" : "/**

ID of the mount target's subnet.

\n@return ID of the mount target's subnet.*/", "fluentSetterDocumentation" : "/**

ID of the mount target's subnet.

\n@param subnetId ID of the mount target's subnet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

ID of the mount target's subnet.

\n@param subnetId ID of the mount target's subnet.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "MountTargetId" : { "documentation" : "

System-assigned mount target ID.

", "name" : "MountTargetId", "c2jName" : "MountTargetId", "c2jShape" : "MountTargetId", "variable" : { "variableName" : "mountTargetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

System-assigned mount target ID.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "mountTargetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "MountTargetId", "marshallLocationName" : "MountTargetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

System-assigned mount target ID.

\n@param mountTargetId System-assigned mount target ID.*/", "getterDocumentation" : "/**

System-assigned mount target ID.

\n@return System-assigned mount target ID.*/", "fluentSetterDocumentation" : "/**

System-assigned mount target ID.

\n@param mountTargetId System-assigned mount target ID.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

System-assigned mount target ID.

\n@param mountTargetId System-assigned mount target ID.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "NetworkInterfaceId" : { "documentation" : "

ID of the network interface that Amazon EFS created when it created the mount target.

", "name" : "NetworkInterfaceId", "c2jName" : "NetworkInterfaceId", "c2jShape" : "NetworkInterfaceId", "variable" : { "variableName" : "networkInterfaceId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

ID of the network interface that Amazon EFS created when it created the mount target.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "networkInterfaceId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NetworkInterfaceId", "marshallLocationName" : "NetworkInterfaceId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

ID of the network interface that Amazon EFS created when it created the mount target.

\n@param networkInterfaceId ID of the network interface that Amazon EFS created when it created the mount target.*/", "getterDocumentation" : "/**

ID of the network interface that Amazon EFS created when it created the mount target.

\n@return ID of the network interface that Amazon EFS created when it created the mount target.*/", "fluentSetterDocumentation" : "/**

ID of the network interface that Amazon EFS created when it created the mount target.

\n@param networkInterfaceId ID of the network interface that Amazon EFS created when it created the mount target.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

ID of the network interface that Amazon EFS created when it created the mount target.

\n@param networkInterfaceId ID of the network interface that Amazon EFS created when it created the mount target.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "DescribeMountTargetsRequest" : { "c2jName" : "DescribeMountTargetsRequest", "documentation" : "

", "shapeName" : "DescribeMountTargetsRequest", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

(Optional) Maximum number of mount targets to return in the response. It must be an integer with a value greater than zero.

", "name" : "MaxItems", "c2jName" : "MaxItems", "c2jShape" : "MaxItems", "variable" : { "variableName" : "maxItems", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

(Optional) Maximum number of mount targets to return in the response. It must be an integer with a value greater than zero.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "maxItems", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "MaxItems", "marshallLocationName" : "MaxItems", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : "querystring", "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : true }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

(Optional) Maximum number of mount targets to return in the response. It must be an integer with a value greater than zero.

\n@param maxItems (Optional) Maximum number of mount targets to return in the response. It must be an integer with a value greater than zero.*/", "getterDocumentation" : "/**

(Optional) Maximum number of mount targets to return in the response. It must be an integer with a value greater than zero.

\n@return (Optional) Maximum number of mount targets to return in the response. It must be an integer with a value greater than zero.*/", "fluentSetterDocumentation" : "/**

(Optional) Maximum number of mount targets to return in the response. It must be an integer with a value greater than zero.

\n@param maxItems (Optional) Maximum number of mount targets to return in the response. It must be an integer with a value greater than zero.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

(Optional) Maximum number of mount targets to return in the response. It must be an integer with a value greater than zero.

\n@param maxItems (Optional) Maximum number of mount targets to return in the response. It must be an integer with a value greater than zero.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

(Optional) Opaque pagination token returned from a previous DescribeMountTargets operation (String). If present, it specifies to continue the list from where the previous returning call left off.

", "name" : "Marker", "c2jName" : "Marker", "c2jShape" : "Marker", "variable" : { "variableName" : "marker", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

(Optional) Opaque pagination token returned from a previous DescribeMountTargets operation (String). If present, it specifies to continue the list from where the previous returning call left off.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "marker", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Marker", "marshallLocationName" : "Marker", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : "querystring", "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : true }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

(Optional) Opaque pagination token returned from a previous DescribeMountTargets operation (String). If present, it specifies to continue the list from where the previous returning call left off.

\n@param marker (Optional) Opaque pagination token returned from a previous DescribeMountTargets operation (String). If present, it specifies to continue the list from where the previous returning call left off.*/", "getterDocumentation" : "/**

(Optional) Opaque pagination token returned from a previous DescribeMountTargets operation (String). If present, it specifies to continue the list from where the previous returning call left off.

\n@return (Optional) Opaque pagination token returned from a previous DescribeMountTargets operation (String). If present, it specifies to continue the list from where the previous returning call left off.*/", "fluentSetterDocumentation" : "/**

(Optional) Opaque pagination token returned from a previous DescribeMountTargets operation (String). If present, it specifies to continue the list from where the previous returning call left off.

\n@param marker (Optional) Opaque pagination token returned from a previous DescribeMountTargets operation (String). If present, it specifies to continue the list from where the previous returning call left off.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

(Optional) Opaque pagination token returned from a previous DescribeMountTargets operation (String). If present, it specifies to continue the list from where the previous returning call left off.

\n@param marker (Optional) Opaque pagination token returned from a previous DescribeMountTargets operation (String). If present, it specifies to continue the list from where the previous returning call left off.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

(Optional) ID of the file system whose mount targets you want to list (String). It must be included in your request if MountTargetId is not included.

", "name" : "FileSystemId", "c2jName" : "FileSystemId", "c2jShape" : "FileSystemId", "variable" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

(Optional) ID of the file system whose mount targets you want to list (String). It must be included in your request if MountTargetId is not included.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FileSystemId", "marshallLocationName" : "FileSystemId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : "querystring", "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : true }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

(Optional) ID of the file system whose mount targets you want to list (String). It must be included in your request if MountTargetId is not included.

\n@param fileSystemId (Optional) ID of the file system whose mount targets you want to list (String). It must be included in your request if MountTargetId is not included.*/", "getterDocumentation" : "/**

(Optional) ID of the file system whose mount targets you want to list (String). It must be included in your request if MountTargetId is not included.

\n@return (Optional) ID of the file system whose mount targets you want to list (String). It must be included in your request if MountTargetId is not included.*/", "fluentSetterDocumentation" : "/**

(Optional) ID of the file system whose mount targets you want to list (String). It must be included in your request if MountTargetId is not included.

\n@param fileSystemId (Optional) ID of the file system whose mount targets you want to list (String). It must be included in your request if MountTargetId is not included.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

(Optional) ID of the file system whose mount targets you want to list (String). It must be included in your request if MountTargetId is not included.

\n@param fileSystemId (Optional) ID of the file system whose mount targets you want to list (String). It must be included in your request if MountTargetId is not included.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

(Optional) ID of the mount target that you want to have described (String). It must be included in your request if FileSystemId is not included.

", "name" : "MountTargetId", "c2jName" : "MountTargetId", "c2jShape" : "MountTargetId", "variable" : { "variableName" : "mountTargetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

(Optional) ID of the mount target that you want to have described (String). It must be included in your request if FileSystemId is not included.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "mountTargetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "MountTargetId", "marshallLocationName" : "MountTargetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : "querystring", "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : true }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

(Optional) ID of the mount target that you want to have described (String). It must be included in your request if FileSystemId is not included.

\n@param mountTargetId (Optional) ID of the mount target that you want to have described (String). It must be included in your request if FileSystemId is not included.*/", "getterDocumentation" : "/**

(Optional) ID of the mount target that you want to have described (String). It must be included in your request if FileSystemId is not included.

\n@return (Optional) ID of the mount target that you want to have described (String). It must be included in your request if FileSystemId is not included.*/", "fluentSetterDocumentation" : "/**

(Optional) ID of the mount target that you want to have described (String). It must be included in your request if FileSystemId is not included.

\n@param mountTargetId (Optional) ID of the mount target that you want to have described (String). It must be included in your request if FileSystemId is not included.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

(Optional) ID of the mount target that you want to have described (String). It must be included in your request if FileSystemId is not included.

\n@param mountTargetId (Optional) ID of the mount target that you want to have described (String). It must be included in your request if FileSystemId is not included.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "describeMountTargetsRequest", "variableType" : "DescribeMountTargetsRequest", "variableDeclarationType" : "DescribeMountTargetsRequest", "documentation" : null, "simpleType" : "DescribeMountTargetsRequest", "variableSetterType" : "DescribeMountTargetsRequest" }, "marshaller" : { "action" : "DescribeMountTargets", "verb" : "GET", "target" : null, "requestUri" : "/2015-02-01/mount-targets", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "FileSystemId" : { "documentation" : "

(Optional) ID of the file system whose mount targets you want to list (String). It must be included in your request if MountTargetId is not included.

", "name" : "FileSystemId", "c2jName" : "FileSystemId", "c2jShape" : "FileSystemId", "variable" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

(Optional) ID of the file system whose mount targets you want to list (String). It must be included in your request if MountTargetId is not included.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FileSystemId", "marshallLocationName" : "FileSystemId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : "querystring", "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : true }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

(Optional) ID of the file system whose mount targets you want to list (String). It must be included in your request if MountTargetId is not included.

\n@param fileSystemId (Optional) ID of the file system whose mount targets you want to list (String). It must be included in your request if MountTargetId is not included.*/", "getterDocumentation" : "/**

(Optional) ID of the file system whose mount targets you want to list (String). It must be included in your request if MountTargetId is not included.

\n@return (Optional) ID of the file system whose mount targets you want to list (String). It must be included in your request if MountTargetId is not included.*/", "fluentSetterDocumentation" : "/**

(Optional) ID of the file system whose mount targets you want to list (String). It must be included in your request if MountTargetId is not included.

\n@param fileSystemId (Optional) ID of the file system whose mount targets you want to list (String). It must be included in your request if MountTargetId is not included.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

(Optional) ID of the file system whose mount targets you want to list (String). It must be included in your request if MountTargetId is not included.

\n@param fileSystemId (Optional) ID of the file system whose mount targets you want to list (String). It must be included in your request if MountTargetId is not included.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "MaxItems" : { "documentation" : "

(Optional) Maximum number of mount targets to return in the response. It must be an integer with a value greater than zero.

", "name" : "MaxItems", "c2jName" : "MaxItems", "c2jShape" : "MaxItems", "variable" : { "variableName" : "maxItems", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

(Optional) Maximum number of mount targets to return in the response. It must be an integer with a value greater than zero.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "maxItems", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "MaxItems", "marshallLocationName" : "MaxItems", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : "querystring", "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : true }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

(Optional) Maximum number of mount targets to return in the response. It must be an integer with a value greater than zero.

\n@param maxItems (Optional) Maximum number of mount targets to return in the response. It must be an integer with a value greater than zero.*/", "getterDocumentation" : "/**

(Optional) Maximum number of mount targets to return in the response. It must be an integer with a value greater than zero.

\n@return (Optional) Maximum number of mount targets to return in the response. It must be an integer with a value greater than zero.*/", "fluentSetterDocumentation" : "/**

(Optional) Maximum number of mount targets to return in the response. It must be an integer with a value greater than zero.

\n@param maxItems (Optional) Maximum number of mount targets to return in the response. It must be an integer with a value greater than zero.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

(Optional) Maximum number of mount targets to return in the response. It must be an integer with a value greater than zero.

\n@param maxItems (Optional) Maximum number of mount targets to return in the response. It must be an integer with a value greater than zero.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Marker" : { "documentation" : "

(Optional) Opaque pagination token returned from a previous DescribeMountTargets operation (String). If present, it specifies to continue the list from where the previous returning call left off.

", "name" : "Marker", "c2jName" : "Marker", "c2jShape" : "Marker", "variable" : { "variableName" : "marker", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

(Optional) Opaque pagination token returned from a previous DescribeMountTargets operation (String). If present, it specifies to continue the list from where the previous returning call left off.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "marker", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Marker", "marshallLocationName" : "Marker", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : "querystring", "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : true }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

(Optional) Opaque pagination token returned from a previous DescribeMountTargets operation (String). If present, it specifies to continue the list from where the previous returning call left off.

\n@param marker (Optional) Opaque pagination token returned from a previous DescribeMountTargets operation (String). If present, it specifies to continue the list from where the previous returning call left off.*/", "getterDocumentation" : "/**

(Optional) Opaque pagination token returned from a previous DescribeMountTargets operation (String). If present, it specifies to continue the list from where the previous returning call left off.

\n@return (Optional) Opaque pagination token returned from a previous DescribeMountTargets operation (String). If present, it specifies to continue the list from where the previous returning call left off.*/", "fluentSetterDocumentation" : "/**

(Optional) Opaque pagination token returned from a previous DescribeMountTargets operation (String). If present, it specifies to continue the list from where the previous returning call left off.

\n@param marker (Optional) Opaque pagination token returned from a previous DescribeMountTargets operation (String). If present, it specifies to continue the list from where the previous returning call left off.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

(Optional) Opaque pagination token returned from a previous DescribeMountTargets operation (String). If present, it specifies to continue the list from where the previous returning call left off.

\n@param marker (Optional) Opaque pagination token returned from a previous DescribeMountTargets operation (String). If present, it specifies to continue the list from where the previous returning call left off.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "MountTargetId" : { "documentation" : "

(Optional) ID of the mount target that you want to have described (String). It must be included in your request if FileSystemId is not included.

", "name" : "MountTargetId", "c2jName" : "MountTargetId", "c2jShape" : "MountTargetId", "variable" : { "variableName" : "mountTargetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

(Optional) ID of the mount target that you want to have described (String). It must be included in your request if FileSystemId is not included.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "mountTargetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "MountTargetId", "marshallLocationName" : "MountTargetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : "querystring", "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : true }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

(Optional) ID of the mount target that you want to have described (String). It must be included in your request if FileSystemId is not included.

\n@param mountTargetId (Optional) ID of the mount target that you want to have described (String). It must be included in your request if FileSystemId is not included.*/", "getterDocumentation" : "/**

(Optional) ID of the mount target that you want to have described (String). It must be included in your request if FileSystemId is not included.

\n@return (Optional) ID of the mount target that you want to have described (String). It must be included in your request if FileSystemId is not included.*/", "fluentSetterDocumentation" : "/**

(Optional) ID of the mount target that you want to have described (String). It must be included in your request if FileSystemId is not included.

\n@param mountTargetId (Optional) ID of the mount target that you want to have described (String). It must be included in your request if FileSystemId is not included.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

(Optional) ID of the mount target that you want to have described (String). It must be included in your request if FileSystemId is not included.

\n@param mountTargetId (Optional) ID of the mount target that you want to have described (String). It must be included in your request if FileSystemId is not included.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "IncorrectFileSystemLifeCycleStateException" : { "c2jName" : "IncorrectFileSystemLifeCycleState", "documentation" : "

Returned if the file system's life cycle state is not \"created\".

", "shapeName" : "IncorrectFileSystemLifeCycleStateException", "deprecated" : false, "required" : [ "ErrorCode" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "", "name" : "ErrorCode", "c2jName" : "ErrorCode", "c2jShape" : "ErrorCode", "variable" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ErrorCode", "marshallLocationName" : "ErrorCode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param errorCode */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "incorrectFileSystemLifeCycleStateException", "variableType" : "IncorrectFileSystemLifeCycleStateException", "variableDeclarationType" : "IncorrectFileSystemLifeCycleStateException", "documentation" : null, "simpleType" : "IncorrectFileSystemLifeCycleStateException", "variableSetterType" : "IncorrectFileSystemLifeCycleStateException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "IncorrectFileSystemLifeCycleState", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "ErrorCode" : { "documentation" : "", "name" : "ErrorCode", "c2jName" : "ErrorCode", "c2jShape" : "ErrorCode", "variable" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ErrorCode", "marshallLocationName" : "ErrorCode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param errorCode */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "DescribeFileSystemsRequest" : { "c2jName" : "DescribeFileSystemsRequest", "documentation" : "

", "shapeName" : "DescribeFileSystemsRequest", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

(Optional) Specifies the maximum number of file systems to return in the response (integer). This parameter value must be greater than 0. The number of items that Amazon EFS returns is the minimum of the MaxItems parameter specified in the request and the service's internal maximum number of items per page.

", "name" : "MaxItems", "c2jName" : "MaxItems", "c2jShape" : "MaxItems", "variable" : { "variableName" : "maxItems", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

(Optional) Specifies the maximum number of file systems to return in the response (integer). This parameter value must be greater than 0. The number of items that Amazon EFS returns is the minimum of the MaxItems parameter specified in the request and the service's internal maximum number of items per page.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "maxItems", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "MaxItems", "marshallLocationName" : "MaxItems", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : "querystring", "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : true }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

(Optional) Specifies the maximum number of file systems to return in the response (integer). This parameter value must be greater than 0. The number of items that Amazon EFS returns is the minimum of the MaxItems parameter specified in the request and the service's internal maximum number of items per page.

\n@param maxItems (Optional) Specifies the maximum number of file systems to return in the response (integer). This parameter value must be greater than 0. The number of items that Amazon EFS returns is the minimum of the MaxItems parameter specified in the request and the service's internal maximum number of items per page.*/", "getterDocumentation" : "/**

(Optional) Specifies the maximum number of file systems to return in the response (integer). This parameter value must be greater than 0. The number of items that Amazon EFS returns is the minimum of the MaxItems parameter specified in the request and the service's internal maximum number of items per page.

\n@return (Optional) Specifies the maximum number of file systems to return in the response (integer). This parameter value must be greater than 0. The number of items that Amazon EFS returns is the minimum of the MaxItems parameter specified in the request and the service's internal maximum number of items per page.*/", "fluentSetterDocumentation" : "/**

(Optional) Specifies the maximum number of file systems to return in the response (integer). This parameter value must be greater than 0. The number of items that Amazon EFS returns is the minimum of the MaxItems parameter specified in the request and the service's internal maximum number of items per page.

\n@param maxItems (Optional) Specifies the maximum number of file systems to return in the response (integer). This parameter value must be greater than 0. The number of items that Amazon EFS returns is the minimum of the MaxItems parameter specified in the request and the service's internal maximum number of items per page.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

(Optional) Specifies the maximum number of file systems to return in the response (integer). This parameter value must be greater than 0. The number of items that Amazon EFS returns is the minimum of the MaxItems parameter specified in the request and the service's internal maximum number of items per page.

\n@param maxItems (Optional) Specifies the maximum number of file systems to return in the response (integer). This parameter value must be greater than 0. The number of items that Amazon EFS returns is the minimum of the MaxItems parameter specified in the request and the service's internal maximum number of items per page.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

(Optional) Opaque pagination token returned from a previous DescribeFileSystems operation (String). If present, specifies to continue the list from where the returning call had left off.

", "name" : "Marker", "c2jName" : "Marker", "c2jShape" : "Marker", "variable" : { "variableName" : "marker", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

(Optional) Opaque pagination token returned from a previous DescribeFileSystems operation (String). If present, specifies to continue the list from where the returning call had left off.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "marker", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Marker", "marshallLocationName" : "Marker", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : "querystring", "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : true }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

(Optional) Opaque pagination token returned from a previous DescribeFileSystems operation (String). If present, specifies to continue the list from where the returning call had left off.

\n@param marker (Optional) Opaque pagination token returned from a previous DescribeFileSystems operation (String). If present, specifies to continue the list from where the returning call had left off.*/", "getterDocumentation" : "/**

(Optional) Opaque pagination token returned from a previous DescribeFileSystems operation (String). If present, specifies to continue the list from where the returning call had left off.

\n@return (Optional) Opaque pagination token returned from a previous DescribeFileSystems operation (String). If present, specifies to continue the list from where the returning call had left off.*/", "fluentSetterDocumentation" : "/**

(Optional) Opaque pagination token returned from a previous DescribeFileSystems operation (String). If present, specifies to continue the list from where the returning call had left off.

\n@param marker (Optional) Opaque pagination token returned from a previous DescribeFileSystems operation (String). If present, specifies to continue the list from where the returning call had left off.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

(Optional) Opaque pagination token returned from a previous DescribeFileSystems operation (String). If present, specifies to continue the list from where the returning call had left off.

\n@param marker (Optional) Opaque pagination token returned from a previous DescribeFileSystems operation (String). If present, specifies to continue the list from where the returning call had left off.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

(Optional) Restricts the list to the file system with this creation token (String). You specify a creation token when you create an Amazon EFS file system.

", "name" : "CreationToken", "c2jName" : "CreationToken", "c2jShape" : "CreationToken", "variable" : { "variableName" : "creationToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

(Optional) Restricts the list to the file system with this creation token (String). You specify a creation token when you create an Amazon EFS file system.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "creationToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "CreationToken", "marshallLocationName" : "CreationToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : "querystring", "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : true }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

(Optional) Restricts the list to the file system with this creation token (String). You specify a creation token when you create an Amazon EFS file system.

\n@param creationToken (Optional) Restricts the list to the file system with this creation token (String). You specify a creation token when you create an Amazon EFS file system.*/", "getterDocumentation" : "/**

(Optional) Restricts the list to the file system with this creation token (String). You specify a creation token when you create an Amazon EFS file system.

\n@return (Optional) Restricts the list to the file system with this creation token (String). You specify a creation token when you create an Amazon EFS file system.*/", "fluentSetterDocumentation" : "/**

(Optional) Restricts the list to the file system with this creation token (String). You specify a creation token when you create an Amazon EFS file system.

\n@param creationToken (Optional) Restricts the list to the file system with this creation token (String). You specify a creation token when you create an Amazon EFS file system.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

(Optional) Restricts the list to the file system with this creation token (String). You specify a creation token when you create an Amazon EFS file system.

\n@param creationToken (Optional) Restricts the list to the file system with this creation token (String). You specify a creation token when you create an Amazon EFS file system.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

(Optional) ID of the file system whose description you want to retrieve (String).

", "name" : "FileSystemId", "c2jName" : "FileSystemId", "c2jShape" : "FileSystemId", "variable" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

(Optional) ID of the file system whose description you want to retrieve (String).

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FileSystemId", "marshallLocationName" : "FileSystemId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : "querystring", "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : true }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

(Optional) ID of the file system whose description you want to retrieve (String).

\n@param fileSystemId (Optional) ID of the file system whose description you want to retrieve (String).*/", "getterDocumentation" : "/**

(Optional) ID of the file system whose description you want to retrieve (String).

\n@return (Optional) ID of the file system whose description you want to retrieve (String).*/", "fluentSetterDocumentation" : "/**

(Optional) ID of the file system whose description you want to retrieve (String).

\n@param fileSystemId (Optional) ID of the file system whose description you want to retrieve (String).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

(Optional) ID of the file system whose description you want to retrieve (String).

\n@param fileSystemId (Optional) ID of the file system whose description you want to retrieve (String).\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "describeFileSystemsRequest", "variableType" : "DescribeFileSystemsRequest", "variableDeclarationType" : "DescribeFileSystemsRequest", "documentation" : null, "simpleType" : "DescribeFileSystemsRequest", "variableSetterType" : "DescribeFileSystemsRequest" }, "marshaller" : { "action" : "DescribeFileSystems", "verb" : "GET", "target" : null, "requestUri" : "/2015-02-01/file-systems", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "CreationToken" : { "documentation" : "

(Optional) Restricts the list to the file system with this creation token (String). You specify a creation token when you create an Amazon EFS file system.

", "name" : "CreationToken", "c2jName" : "CreationToken", "c2jShape" : "CreationToken", "variable" : { "variableName" : "creationToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

(Optional) Restricts the list to the file system with this creation token (String). You specify a creation token when you create an Amazon EFS file system.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "creationToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "CreationToken", "marshallLocationName" : "CreationToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : "querystring", "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : true }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

(Optional) Restricts the list to the file system with this creation token (String). You specify a creation token when you create an Amazon EFS file system.

\n@param creationToken (Optional) Restricts the list to the file system with this creation token (String). You specify a creation token when you create an Amazon EFS file system.*/", "getterDocumentation" : "/**

(Optional) Restricts the list to the file system with this creation token (String). You specify a creation token when you create an Amazon EFS file system.

\n@return (Optional) Restricts the list to the file system with this creation token (String). You specify a creation token when you create an Amazon EFS file system.*/", "fluentSetterDocumentation" : "/**

(Optional) Restricts the list to the file system with this creation token (String). You specify a creation token when you create an Amazon EFS file system.

\n@param creationToken (Optional) Restricts the list to the file system with this creation token (String). You specify a creation token when you create an Amazon EFS file system.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

(Optional) Restricts the list to the file system with this creation token (String). You specify a creation token when you create an Amazon EFS file system.

\n@param creationToken (Optional) Restricts the list to the file system with this creation token (String). You specify a creation token when you create an Amazon EFS file system.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "FileSystemId" : { "documentation" : "

(Optional) ID of the file system whose description you want to retrieve (String).

", "name" : "FileSystemId", "c2jName" : "FileSystemId", "c2jShape" : "FileSystemId", "variable" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

(Optional) ID of the file system whose description you want to retrieve (String).

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FileSystemId", "marshallLocationName" : "FileSystemId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : "querystring", "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : true }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

(Optional) ID of the file system whose description you want to retrieve (String).

\n@param fileSystemId (Optional) ID of the file system whose description you want to retrieve (String).*/", "getterDocumentation" : "/**

(Optional) ID of the file system whose description you want to retrieve (String).

\n@return (Optional) ID of the file system whose description you want to retrieve (String).*/", "fluentSetterDocumentation" : "/**

(Optional) ID of the file system whose description you want to retrieve (String).

\n@param fileSystemId (Optional) ID of the file system whose description you want to retrieve (String).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

(Optional) ID of the file system whose description you want to retrieve (String).

\n@param fileSystemId (Optional) ID of the file system whose description you want to retrieve (String).\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "MaxItems" : { "documentation" : "

(Optional) Specifies the maximum number of file systems to return in the response (integer). This parameter value must be greater than 0. The number of items that Amazon EFS returns is the minimum of the MaxItems parameter specified in the request and the service's internal maximum number of items per page.

", "name" : "MaxItems", "c2jName" : "MaxItems", "c2jShape" : "MaxItems", "variable" : { "variableName" : "maxItems", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

(Optional) Specifies the maximum number of file systems to return in the response (integer). This parameter value must be greater than 0. The number of items that Amazon EFS returns is the minimum of the MaxItems parameter specified in the request and the service's internal maximum number of items per page.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "maxItems", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "MaxItems", "marshallLocationName" : "MaxItems", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : "querystring", "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : true }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

(Optional) Specifies the maximum number of file systems to return in the response (integer). This parameter value must be greater than 0. The number of items that Amazon EFS returns is the minimum of the MaxItems parameter specified in the request and the service's internal maximum number of items per page.

\n@param maxItems (Optional) Specifies the maximum number of file systems to return in the response (integer). This parameter value must be greater than 0. The number of items that Amazon EFS returns is the minimum of the MaxItems parameter specified in the request and the service's internal maximum number of items per page.*/", "getterDocumentation" : "/**

(Optional) Specifies the maximum number of file systems to return in the response (integer). This parameter value must be greater than 0. The number of items that Amazon EFS returns is the minimum of the MaxItems parameter specified in the request and the service's internal maximum number of items per page.

\n@return (Optional) Specifies the maximum number of file systems to return in the response (integer). This parameter value must be greater than 0. The number of items that Amazon EFS returns is the minimum of the MaxItems parameter specified in the request and the service's internal maximum number of items per page.*/", "fluentSetterDocumentation" : "/**

(Optional) Specifies the maximum number of file systems to return in the response (integer). This parameter value must be greater than 0. The number of items that Amazon EFS returns is the minimum of the MaxItems parameter specified in the request and the service's internal maximum number of items per page.

\n@param maxItems (Optional) Specifies the maximum number of file systems to return in the response (integer). This parameter value must be greater than 0. The number of items that Amazon EFS returns is the minimum of the MaxItems parameter specified in the request and the service's internal maximum number of items per page.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

(Optional) Specifies the maximum number of file systems to return in the response (integer). This parameter value must be greater than 0. The number of items that Amazon EFS returns is the minimum of the MaxItems parameter specified in the request and the service's internal maximum number of items per page.

\n@param maxItems (Optional) Specifies the maximum number of file systems to return in the response (integer). This parameter value must be greater than 0. The number of items that Amazon EFS returns is the minimum of the MaxItems parameter specified in the request and the service's internal maximum number of items per page.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Marker" : { "documentation" : "

(Optional) Opaque pagination token returned from a previous DescribeFileSystems operation (String). If present, specifies to continue the list from where the returning call had left off.

", "name" : "Marker", "c2jName" : "Marker", "c2jShape" : "Marker", "variable" : { "variableName" : "marker", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

(Optional) Opaque pagination token returned from a previous DescribeFileSystems operation (String). If present, specifies to continue the list from where the returning call had left off.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "marker", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Marker", "marshallLocationName" : "Marker", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : "querystring", "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : true }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

(Optional) Opaque pagination token returned from a previous DescribeFileSystems operation (String). If present, specifies to continue the list from where the returning call had left off.

\n@param marker (Optional) Opaque pagination token returned from a previous DescribeFileSystems operation (String). If present, specifies to continue the list from where the returning call had left off.*/", "getterDocumentation" : "/**

(Optional) Opaque pagination token returned from a previous DescribeFileSystems operation (String). If present, specifies to continue the list from where the returning call had left off.

\n@return (Optional) Opaque pagination token returned from a previous DescribeFileSystems operation (String). If present, specifies to continue the list from where the returning call had left off.*/", "fluentSetterDocumentation" : "/**

(Optional) Opaque pagination token returned from a previous DescribeFileSystems operation (String). If present, specifies to continue the list from where the returning call had left off.

\n@param marker (Optional) Opaque pagination token returned from a previous DescribeFileSystems operation (String). If present, specifies to continue the list from where the returning call had left off.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

(Optional) Opaque pagination token returned from a previous DescribeFileSystems operation (String). If present, specifies to continue the list from where the returning call had left off.

\n@param marker (Optional) Opaque pagination token returned from a previous DescribeFileSystems operation (String). If present, specifies to continue the list from where the returning call had left off.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "DependencyTimeoutException" : { "c2jName" : "DependencyTimeout", "documentation" : "

The service timed out trying to fulfill the request, and the client should try the call again.

", "shapeName" : "DependencyTimeoutException", "deprecated" : false, "required" : [ "ErrorCode" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "", "name" : "ErrorCode", "c2jName" : "ErrorCode", "c2jShape" : "ErrorCode", "variable" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ErrorCode", "marshallLocationName" : "ErrorCode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param errorCode */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "dependencyTimeoutException", "variableType" : "DependencyTimeoutException", "variableDeclarationType" : "DependencyTimeoutException", "documentation" : null, "simpleType" : "DependencyTimeoutException", "variableSetterType" : "DependencyTimeoutException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "DependencyTimeout", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "ErrorCode" : { "documentation" : "", "name" : "ErrorCode", "c2jName" : "ErrorCode", "c2jShape" : "ErrorCode", "variable" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ErrorCode", "marshallLocationName" : "ErrorCode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param errorCode */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "DeleteTagsRequest" : { "c2jName" : "DeleteTagsRequest", "documentation" : "

", "shapeName" : "DeleteTagsRequest", "deprecated" : false, "required" : [ "FileSystemId", "TagKeys" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

ID of the file system whose tags you want to delete (String).

", "name" : "FileSystemId", "c2jName" : "FileSystemId", "c2jShape" : "FileSystemId", "variable" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

ID of the file system whose tags you want to delete (String).

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FileSystemId", "marshallLocationName" : "FileSystemId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : "uri", "flattened" : false, "header" : false, "uri" : true, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

ID of the file system whose tags you want to delete (String).

\n@param fileSystemId ID of the file system whose tags you want to delete (String).*/", "getterDocumentation" : "/**

ID of the file system whose tags you want to delete (String).

\n@return ID of the file system whose tags you want to delete (String).*/", "fluentSetterDocumentation" : "/**

ID of the file system whose tags you want to delete (String).

\n@param fileSystemId ID of the file system whose tags you want to delete (String).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

ID of the file system whose tags you want to delete (String).

\n@param fileSystemId ID of the file system whose tags you want to delete (String).\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

List of tag keys to delete.

", "name" : "TagKeys", "c2jName" : "TagKeys", "c2jShape" : "TagKeys", "variable" : { "variableName" : "tagKeys", "variableType" : "java.util.List", "variableDeclarationType" : "com.amazonaws.internal.SdkInternalList", "documentation" : "

List of tag keys to delete.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "tagKeys", "variableType" : "java.util.List", "variableDeclarationType" : "com.amazonaws.internal.SdkInternalList", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "TagKeys", "marshallLocationName" : "TagKeys", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "String", "memberLocationName" : null, "implType" : "com.amazonaws.internal.SdkInternalList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "TagKey", "variable" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "map" : false, "simpleType" : "String", "templateType" : "java.util.List", "templateImplType" : "com.amazonaws.internal.SdkInternalList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

List of tag keys to delete.

\n@param tagKeys List of tag keys to delete.*/", "getterDocumentation" : "/**

List of tag keys to delete.

\n@return List of tag keys to delete.*/", "fluentSetterDocumentation" : "/**

List of tag keys to delete.

\n@param tagKeys List of tag keys to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

List of tag keys to delete.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setTagKeys(java.util.Collection)} or {@link #withTagKeys(java.util.Collection)} if you want to override the existing values.

\n@param tagKeys List of tag keys to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "deleteTagsRequest", "variableType" : "DeleteTagsRequest", "variableDeclarationType" : "DeleteTagsRequest", "documentation" : null, "simpleType" : "DeleteTagsRequest", "variableSetterType" : "DeleteTagsRequest" }, "marshaller" : { "action" : "DeleteTags", "verb" : "POST", "target" : null, "requestUri" : "/2015-02-01/delete-tags/{FileSystemId}", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "FileSystemId" : { "documentation" : "

ID of the file system whose tags you want to delete (String).

", "name" : "FileSystemId", "c2jName" : "FileSystemId", "c2jShape" : "FileSystemId", "variable" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

ID of the file system whose tags you want to delete (String).

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FileSystemId", "marshallLocationName" : "FileSystemId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : "uri", "flattened" : false, "header" : false, "uri" : true, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

ID of the file system whose tags you want to delete (String).

\n@param fileSystemId ID of the file system whose tags you want to delete (String).*/", "getterDocumentation" : "/**

ID of the file system whose tags you want to delete (String).

\n@return ID of the file system whose tags you want to delete (String).*/", "fluentSetterDocumentation" : "/**

ID of the file system whose tags you want to delete (String).

\n@param fileSystemId ID of the file system whose tags you want to delete (String).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

ID of the file system whose tags you want to delete (String).

\n@param fileSystemId ID of the file system whose tags you want to delete (String).\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "TagKeys" : { "documentation" : "

List of tag keys to delete.

", "name" : "TagKeys", "c2jName" : "TagKeys", "c2jShape" : "TagKeys", "variable" : { "variableName" : "tagKeys", "variableType" : "java.util.List", "variableDeclarationType" : "com.amazonaws.internal.SdkInternalList", "documentation" : "

List of tag keys to delete.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "tagKeys", "variableType" : "java.util.List", "variableDeclarationType" : "com.amazonaws.internal.SdkInternalList", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "TagKeys", "marshallLocationName" : "TagKeys", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "String", "memberLocationName" : null, "implType" : "com.amazonaws.internal.SdkInternalList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "TagKey", "variable" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "map" : false, "simpleType" : "String", "templateType" : "java.util.List", "templateImplType" : "com.amazonaws.internal.SdkInternalList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

List of tag keys to delete.

\n@param tagKeys List of tag keys to delete.*/", "getterDocumentation" : "/**

List of tag keys to delete.

\n@return List of tag keys to delete.*/", "fluentSetterDocumentation" : "/**

List of tag keys to delete.

\n@param tagKeys List of tag keys to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

List of tag keys to delete.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setTagKeys(java.util.Collection)} or {@link #withTagKeys(java.util.Collection)} if you want to override the existing values.

\n@param tagKeys List of tag keys to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "DeleteFileSystemRequest" : { "c2jName" : "DeleteFileSystemRequest", "documentation" : "

", "shapeName" : "DeleteFileSystemRequest", "deprecated" : false, "required" : [ "FileSystemId" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

ID of the file system you want to delete.

", "name" : "FileSystemId", "c2jName" : "FileSystemId", "c2jShape" : "FileSystemId", "variable" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

ID of the file system you want to delete.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FileSystemId", "marshallLocationName" : "FileSystemId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : "uri", "flattened" : false, "header" : false, "uri" : true, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

ID of the file system you want to delete.

\n@param fileSystemId ID of the file system you want to delete.*/", "getterDocumentation" : "/**

ID of the file system you want to delete.

\n@return ID of the file system you want to delete.*/", "fluentSetterDocumentation" : "/**

ID of the file system you want to delete.

\n@param fileSystemId ID of the file system you want to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

ID of the file system you want to delete.

\n@param fileSystemId ID of the file system you want to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "deleteFileSystemRequest", "variableType" : "DeleteFileSystemRequest", "variableDeclarationType" : "DeleteFileSystemRequest", "documentation" : null, "simpleType" : "DeleteFileSystemRequest", "variableSetterType" : "DeleteFileSystemRequest" }, "marshaller" : { "action" : "DeleteFileSystem", "verb" : "DELETE", "target" : null, "requestUri" : "/2015-02-01/file-systems/{FileSystemId}", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "FileSystemId" : { "documentation" : "

ID of the file system you want to delete.

", "name" : "FileSystemId", "c2jName" : "FileSystemId", "c2jShape" : "FileSystemId", "variable" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

ID of the file system you want to delete.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FileSystemId", "marshallLocationName" : "FileSystemId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : "uri", "flattened" : false, "header" : false, "uri" : true, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

ID of the file system you want to delete.

\n@param fileSystemId ID of the file system you want to delete.*/", "getterDocumentation" : "/**

ID of the file system you want to delete.

\n@return ID of the file system you want to delete.*/", "fluentSetterDocumentation" : "/**

ID of the file system you want to delete.

\n@param fileSystemId ID of the file system you want to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

ID of the file system you want to delete.

\n@param fileSystemId ID of the file system you want to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "NoFreeAddressesInSubnetException" : { "c2jName" : "NoFreeAddressesInSubnet", "documentation" : "

Returned if IpAddress was not specified in the request and there are no free IP addresses in the subnet.

", "shapeName" : "NoFreeAddressesInSubnetException", "deprecated" : false, "required" : [ "ErrorCode" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "", "name" : "ErrorCode", "c2jName" : "ErrorCode", "c2jShape" : "ErrorCode", "variable" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ErrorCode", "marshallLocationName" : "ErrorCode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param errorCode */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "noFreeAddressesInSubnetException", "variableType" : "NoFreeAddressesInSubnetException", "variableDeclarationType" : "NoFreeAddressesInSubnetException", "documentation" : null, "simpleType" : "NoFreeAddressesInSubnetException", "variableSetterType" : "NoFreeAddressesInSubnetException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "NoFreeAddressesInSubnet", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "ErrorCode" : { "documentation" : "", "name" : "ErrorCode", "c2jName" : "ErrorCode", "c2jShape" : "ErrorCode", "variable" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ErrorCode", "marshallLocationName" : "ErrorCode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param errorCode */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "FileSystemLimitExceededException" : { "c2jName" : "FileSystemLimitExceeded", "documentation" : "

Returned if the AWS account has already created maximum number of file systems allowed per account.

", "shapeName" : "FileSystemLimitExceededException", "deprecated" : false, "required" : [ "ErrorCode" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "", "name" : "ErrorCode", "c2jName" : "ErrorCode", "c2jShape" : "ErrorCode", "variable" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ErrorCode", "marshallLocationName" : "ErrorCode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param errorCode */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "fileSystemLimitExceededException", "variableType" : "FileSystemLimitExceededException", "variableDeclarationType" : "FileSystemLimitExceededException", "documentation" : null, "simpleType" : "FileSystemLimitExceededException", "variableSetterType" : "FileSystemLimitExceededException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "FileSystemLimitExceeded", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "ErrorCode" : { "documentation" : "", "name" : "ErrorCode", "c2jName" : "ErrorCode", "c2jShape" : "ErrorCode", "variable" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ErrorCode", "marshallLocationName" : "ErrorCode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param errorCode */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "FileSystemNotFoundException" : { "c2jName" : "FileSystemNotFound", "documentation" : "

Returned if the specified FileSystemId does not exist in the requester's AWS account.

", "shapeName" : "FileSystemNotFoundException", "deprecated" : false, "required" : [ "ErrorCode" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "", "name" : "ErrorCode", "c2jName" : "ErrorCode", "c2jShape" : "ErrorCode", "variable" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ErrorCode", "marshallLocationName" : "ErrorCode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param errorCode */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "fileSystemNotFoundException", "variableType" : "FileSystemNotFoundException", "variableDeclarationType" : "FileSystemNotFoundException", "documentation" : null, "simpleType" : "FileSystemNotFoundException", "variableSetterType" : "FileSystemNotFoundException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "FileSystemNotFound", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "ErrorCode" : { "documentation" : "", "name" : "ErrorCode", "c2jName" : "ErrorCode", "c2jShape" : "ErrorCode", "variable" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ErrorCode", "marshallLocationName" : "ErrorCode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param errorCode */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "CreateTagsRequest" : { "c2jName" : "CreateTagsRequest", "documentation" : "

", "shapeName" : "CreateTagsRequest", "deprecated" : false, "required" : [ "FileSystemId", "Tags" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

ID of the file system whose tags you want to modify (String). This operation modifies the tags only, not the file system.

", "name" : "FileSystemId", "c2jName" : "FileSystemId", "c2jShape" : "FileSystemId", "variable" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

ID of the file system whose tags you want to modify (String). This operation modifies the tags only, not the file system.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FileSystemId", "marshallLocationName" : "FileSystemId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : "uri", "flattened" : false, "header" : false, "uri" : true, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

ID of the file system whose tags you want to modify (String). This operation modifies the tags only, not the file system.

\n@param fileSystemId ID of the file system whose tags you want to modify (String). This operation modifies the tags only, not the file system.*/", "getterDocumentation" : "/**

ID of the file system whose tags you want to modify (String). This operation modifies the tags only, not the file system.

\n@return ID of the file system whose tags you want to modify (String). This operation modifies the tags only, not the file system.*/", "fluentSetterDocumentation" : "/**

ID of the file system whose tags you want to modify (String). This operation modifies the tags only, not the file system.

\n@param fileSystemId ID of the file system whose tags you want to modify (String). This operation modifies the tags only, not the file system.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

ID of the file system whose tags you want to modify (String). This operation modifies the tags only, not the file system.

\n@param fileSystemId ID of the file system whose tags you want to modify (String). This operation modifies the tags only, not the file system.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Array of Tag objects to add. Each Tag object is a key-value pair.

", "name" : "Tags", "c2jName" : "Tags", "c2jShape" : "Tags", "variable" : { "variableName" : "tags", "variableType" : "java.util.List", "variableDeclarationType" : "com.amazonaws.internal.SdkInternalList", "documentation" : "

Array of Tag objects to add. Each Tag object is a key-value pair.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "tags", "variableType" : "java.util.List", "variableDeclarationType" : "com.amazonaws.internal.SdkInternalList", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "Tags", "marshallLocationName" : "Tags", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "Tag", "memberLocationName" : null, "implType" : "com.amazonaws.internal.SdkInternalList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "Tag", "variable" : { "variableName" : "member", "variableType" : "Tag", "variableDeclarationType" : "Tag", "documentation" : "", "simpleType" : "Tag", "variableSetterType" : "Tag" }, "setterModel" : { "variableName" : "member", "variableType" : "Tag", "variableDeclarationType" : "Tag", "documentation" : "", "simpleType" : "Tag", "variableSetterType" : "Tag" }, "getterModel" : { "returnType" : "Tag", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "Tag", "templateType" : "java.util.List", "templateImplType" : "com.amazonaws.internal.SdkInternalList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Array of Tag objects to add. Each Tag object is a key-value pair.

\n@param tags Array of Tag objects to add. Each Tag object is a key-value pair.*/", "getterDocumentation" : "/**

Array of Tag objects to add. Each Tag object is a key-value pair.

\n@return Array of Tag objects to add. Each Tag object is a key-value pair.*/", "fluentSetterDocumentation" : "/**

Array of Tag objects to add. Each Tag object is a key-value pair.

\n@param tags Array of Tag objects to add. Each Tag object is a key-value pair.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Array of Tag objects to add. Each Tag object is a key-value pair.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the existing values.

\n@param tags Array of Tag objects to add. Each Tag object is a key-value pair.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "createTagsRequest", "variableType" : "CreateTagsRequest", "variableDeclarationType" : "CreateTagsRequest", "documentation" : null, "simpleType" : "CreateTagsRequest", "variableSetterType" : "CreateTagsRequest" }, "marshaller" : { "action" : "CreateTags", "verb" : "POST", "target" : null, "requestUri" : "/2015-02-01/create-tags/{FileSystemId}", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "FileSystemId" : { "documentation" : "

ID of the file system whose tags you want to modify (String). This operation modifies the tags only, not the file system.

", "name" : "FileSystemId", "c2jName" : "FileSystemId", "c2jShape" : "FileSystemId", "variable" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

ID of the file system whose tags you want to modify (String). This operation modifies the tags only, not the file system.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FileSystemId", "marshallLocationName" : "FileSystemId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : "uri", "flattened" : false, "header" : false, "uri" : true, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

ID of the file system whose tags you want to modify (String). This operation modifies the tags only, not the file system.

\n@param fileSystemId ID of the file system whose tags you want to modify (String). This operation modifies the tags only, not the file system.*/", "getterDocumentation" : "/**

ID of the file system whose tags you want to modify (String). This operation modifies the tags only, not the file system.

\n@return ID of the file system whose tags you want to modify (String). This operation modifies the tags only, not the file system.*/", "fluentSetterDocumentation" : "/**

ID of the file system whose tags you want to modify (String). This operation modifies the tags only, not the file system.

\n@param fileSystemId ID of the file system whose tags you want to modify (String). This operation modifies the tags only, not the file system.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

ID of the file system whose tags you want to modify (String). This operation modifies the tags only, not the file system.

\n@param fileSystemId ID of the file system whose tags you want to modify (String). This operation modifies the tags only, not the file system.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Tags" : { "documentation" : "

Array of Tag objects to add. Each Tag object is a key-value pair.

", "name" : "Tags", "c2jName" : "Tags", "c2jShape" : "Tags", "variable" : { "variableName" : "tags", "variableType" : "java.util.List", "variableDeclarationType" : "com.amazonaws.internal.SdkInternalList", "documentation" : "

Array of Tag objects to add. Each Tag object is a key-value pair.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "tags", "variableType" : "java.util.List", "variableDeclarationType" : "com.amazonaws.internal.SdkInternalList", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "Tags", "marshallLocationName" : "Tags", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "Tag", "memberLocationName" : null, "implType" : "com.amazonaws.internal.SdkInternalList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "Tag", "variable" : { "variableName" : "member", "variableType" : "Tag", "variableDeclarationType" : "Tag", "documentation" : "", "simpleType" : "Tag", "variableSetterType" : "Tag" }, "setterModel" : { "variableName" : "member", "variableType" : "Tag", "variableDeclarationType" : "Tag", "documentation" : "", "simpleType" : "Tag", "variableSetterType" : "Tag" }, "getterModel" : { "returnType" : "Tag", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "Tag", "templateType" : "java.util.List", "templateImplType" : "com.amazonaws.internal.SdkInternalList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Array of Tag objects to add. Each Tag object is a key-value pair.

\n@param tags Array of Tag objects to add. Each Tag object is a key-value pair.*/", "getterDocumentation" : "/**

Array of Tag objects to add. Each Tag object is a key-value pair.

\n@return Array of Tag objects to add. Each Tag object is a key-value pair.*/", "fluentSetterDocumentation" : "/**

Array of Tag objects to add. Each Tag object is a key-value pair.

\n@param tags Array of Tag objects to add. Each Tag object is a key-value pair.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Array of Tag objects to add. Each Tag object is a key-value pair.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the existing values.

\n@param tags Array of Tag objects to add. Each Tag object is a key-value pair.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "LifeCycleState" : { "c2jName" : "LifeCycleState", "documentation" : "", "shapeName" : "LifeCycleState", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : [ { "name" : "Creating", "value" : "creating" }, { "name" : "Available", "value" : "available" }, { "name" : "Deleting", "value" : "deleting" }, { "name" : "Deleted", "value" : "deleted" } ], "variable" : { "variableName" : "lifeCycleState", "variableType" : "LifeCycleState", "variableDeclarationType" : "LifeCycleState", "documentation" : null, "simpleType" : "LifeCycleState", "variableSetterType" : "LifeCycleState" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "BadRequestException" : { "c2jName" : "BadRequest", "documentation" : "

Returned if the request is malformed or contains an error such as an invalid parameter value or a missing required parameter.

", "shapeName" : "BadRequestException", "deprecated" : false, "required" : [ "ErrorCode" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "", "name" : "ErrorCode", "c2jName" : "ErrorCode", "c2jShape" : "ErrorCode", "variable" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ErrorCode", "marshallLocationName" : "ErrorCode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param errorCode */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "badRequestException", "variableType" : "BadRequestException", "variableDeclarationType" : "BadRequestException", "documentation" : null, "simpleType" : "BadRequestException", "variableSetterType" : "BadRequestException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "BadRequest", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "ErrorCode" : { "documentation" : "", "name" : "ErrorCode", "c2jName" : "ErrorCode", "c2jShape" : "ErrorCode", "variable" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ErrorCode", "marshallLocationName" : "ErrorCode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param errorCode */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "InternalServerErrorException" : { "c2jName" : "InternalServerError", "documentation" : "

Returned if an error occurred on the server side.

", "shapeName" : "InternalServerErrorException", "deprecated" : false, "required" : [ "ErrorCode" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "", "name" : "ErrorCode", "c2jName" : "ErrorCode", "c2jShape" : "ErrorCode", "variable" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ErrorCode", "marshallLocationName" : "ErrorCode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param errorCode */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "internalServerErrorException", "variableType" : "InternalServerErrorException", "variableDeclarationType" : "InternalServerErrorException", "documentation" : null, "simpleType" : "InternalServerErrorException", "variableSetterType" : "InternalServerErrorException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "InternalServerError", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "ErrorCode" : { "documentation" : "", "name" : "ErrorCode", "c2jName" : "ErrorCode", "c2jShape" : "ErrorCode", "variable" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "errorCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ErrorCode", "marshallLocationName" : "ErrorCode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param errorCode */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param errorCode \n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "Tag" : { "c2jName" : "Tag", "documentation" : "

A tag is a key-value pair. Allowed characters: letters, whitespace, and numbers, representable in UTF-8, and the following characters: + - = . _ : /

", "shapeName" : "Tag", "deprecated" : false, "required" : [ "Key", "Value" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Tag key (String). The key can't start with aws:.

", "name" : "Key", "c2jName" : "Key", "c2jShape" : "TagKey", "variable" : { "variableName" : "key", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Tag key (String). The key can't start with aws:.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "key", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Key", "marshallLocationName" : "Key", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Tag key (String). The key can't start with aws:.

\n@param key Tag key (String). The key can't start with aws:.*/", "getterDocumentation" : "/**

Tag key (String). The key can't start with aws:.

\n@return Tag key (String). The key can't start with aws:.*/", "fluentSetterDocumentation" : "/**

Tag key (String). The key can't start with aws:.

\n@param key Tag key (String). The key can't start with aws:.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Tag key (String). The key can't start with aws:.

\n@param key Tag key (String). The key can't start with aws:.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Value of the tag key.

", "name" : "Value", "c2jName" : "Value", "c2jShape" : "TagValue", "variable" : { "variableName" : "value", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Value of the tag key.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "value", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Value", "marshallLocationName" : "Value", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Value of the tag key.

\n@param value Value of the tag key.*/", "getterDocumentation" : "/**

Value of the tag key.

\n@return Value of the tag key.*/", "fluentSetterDocumentation" : "/**

Value of the tag key.

\n@param value Value of the tag key.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Value of the tag key.

\n@param value Value of the tag key.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "tag", "variableType" : "Tag", "variableDeclarationType" : "Tag", "documentation" : null, "simpleType" : "Tag", "variableSetterType" : "Tag" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "Value" : { "documentation" : "

Value of the tag key.

", "name" : "Value", "c2jName" : "Value", "c2jShape" : "TagValue", "variable" : { "variableName" : "value", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Value of the tag key.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "value", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Value", "marshallLocationName" : "Value", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Value of the tag key.

\n@param value Value of the tag key.*/", "getterDocumentation" : "/**

Value of the tag key.

\n@return Value of the tag key.*/", "fluentSetterDocumentation" : "/**

Value of the tag key.

\n@param value Value of the tag key.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Value of the tag key.

\n@param value Value of the tag key.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Key" : { "documentation" : "

Tag key (String). The key can't start with aws:.

", "name" : "Key", "c2jName" : "Key", "c2jShape" : "TagKey", "variable" : { "variableName" : "key", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Tag key (String). The key can't start with aws:.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "key", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Key", "marshallLocationName" : "Key", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Tag key (String). The key can't start with aws:.

\n@param key Tag key (String). The key can't start with aws:.*/", "getterDocumentation" : "/**

Tag key (String). The key can't start with aws:.

\n@return Tag key (String). The key can't start with aws:.*/", "fluentSetterDocumentation" : "/**

Tag key (String). The key can't start with aws:.

\n@param key Tag key (String). The key can't start with aws:.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Tag key (String). The key can't start with aws:.

\n@param key Tag key (String). The key can't start with aws:.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "ModifyMountTargetSecurityGroupsResult" : { "c2jName" : "ModifyMountTargetSecurityGroupsResult", "documentation" : null, "shapeName" : "ModifyMountTargetSecurityGroupsResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "modifyMountTargetSecurityGroupsResult", "variableType" : "ModifyMountTargetSecurityGroupsResult", "variableDeclarationType" : "ModifyMountTargetSecurityGroupsResult", "documentation" : null, "simpleType" : "ModifyMountTargetSecurityGroupsResult", "variableSetterType" : "ModifyMountTargetSecurityGroupsResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "FileSystemDescription" : { "c2jName" : "FileSystemDescription", "documentation" : "

Description of the file system.

", "shapeName" : "FileSystemDescription", "deprecated" : false, "required" : [ "OwnerId", "CreationToken", "FileSystemId", "CreationTime", "LifeCycleState", "NumberOfMountTargets", "SizeInBytes", "PerformanceMode" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.

", "name" : "OwnerId", "c2jName" : "OwnerId", "c2jShape" : "AwsAccountId", "variable" : { "variableName" : "ownerId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "ownerId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "OwnerId", "marshallLocationName" : "OwnerId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.

\n@param ownerId AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.*/", "getterDocumentation" : "/**

AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.

\n@return AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.*/", "fluentSetterDocumentation" : "/**

AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.

\n@param ownerId AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.

\n@param ownerId AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Opaque string specified in the request.

", "name" : "CreationToken", "c2jName" : "CreationToken", "c2jShape" : "CreationToken", "variable" : { "variableName" : "creationToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Opaque string specified in the request.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "creationToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "CreationToken", "marshallLocationName" : "CreationToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Opaque string specified in the request.

\n@param creationToken Opaque string specified in the request.*/", "getterDocumentation" : "/**

Opaque string specified in the request.

\n@return Opaque string specified in the request.*/", "fluentSetterDocumentation" : "/**

Opaque string specified in the request.

\n@param creationToken Opaque string specified in the request.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Opaque string specified in the request.

\n@param creationToken Opaque string specified in the request.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

ID of the file system, assigned by Amazon EFS.

", "name" : "FileSystemId", "c2jName" : "FileSystemId", "c2jShape" : "FileSystemId", "variable" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

ID of the file system, assigned by Amazon EFS.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FileSystemId", "marshallLocationName" : "FileSystemId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

ID of the file system, assigned by Amazon EFS.

\n@param fileSystemId ID of the file system, assigned by Amazon EFS.*/", "getterDocumentation" : "/**

ID of the file system, assigned by Amazon EFS.

\n@return ID of the file system, assigned by Amazon EFS.*/", "fluentSetterDocumentation" : "/**

ID of the file system, assigned by Amazon EFS.

\n@param fileSystemId ID of the file system, assigned by Amazon EFS.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

ID of the file system, assigned by Amazon EFS.

\n@param fileSystemId ID of the file system, assigned by Amazon EFS.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).

", "name" : "CreationTime", "c2jName" : "CreationTime", "c2jShape" : "Timestamp", "variable" : { "variableName" : "creationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "

Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).

", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "setterModel" : { "variableName" : "creationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "getterModel" : { "returnType" : "java.util.Date", "documentation" : null }, "http" : { "unmarshallLocationName" : "CreationTime", "marshallLocationName" : "CreationTime", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).

\n@param creationTime Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).*/", "getterDocumentation" : "/**

Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).

\n@return Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).*/", "fluentSetterDocumentation" : "/**

Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).

\n@param creationTime Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).

\n@param creationTime Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Lifecycle phase of the file system.

", "name" : "LifeCycleState", "c2jName" : "LifeCycleState", "c2jShape" : "LifeCycleState", "variable" : { "variableName" : "lifeCycleState", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Lifecycle phase of the file system.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "lifeCycleState", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "LifeCycleState", "marshallLocationName" : "LifeCycleState", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "LifeCycleState", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Lifecycle phase of the file system.

\n@param lifeCycleState Lifecycle phase of the file system.\n@see LifeCycleState*/", "getterDocumentation" : "/**

Lifecycle phase of the file system.

\n@return Lifecycle phase of the file system.\n@see LifeCycleState*/", "fluentSetterDocumentation" : "/**

Lifecycle phase of the file system.

\n@param lifeCycleState Lifecycle phase of the file system.\n@return Returns a reference to this object so that method calls can be chained together.\n@see LifeCycleState*/", "varargSetterDocumentation" : "/**

Lifecycle phase of the file system.

\n@param lifeCycleState Lifecycle phase of the file system.\n@return Returns a reference to this object so that method calls can be chained together.\n@see LifeCycleState*/" }, { "documentation" : "

You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.

", "name" : "Name", "c2jName" : "Name", "c2jShape" : "TagValue", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Name", "marshallLocationName" : "Name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.

\n@param name You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.*/", "getterDocumentation" : "/**

You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.

\n@return You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.*/", "fluentSetterDocumentation" : "/**

You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.

\n@param name You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.

\n@param name You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Current number of mount targets that the file system has. For more information, see CreateMountTarget.

", "name" : "NumberOfMountTargets", "c2jName" : "NumberOfMountTargets", "c2jShape" : "MountTargetCount", "variable" : { "variableName" : "numberOfMountTargets", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

Current number of mount targets that the file system has. For more information, see CreateMountTarget.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "numberOfMountTargets", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "NumberOfMountTargets", "marshallLocationName" : "NumberOfMountTargets", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Current number of mount targets that the file system has. For more information, see CreateMountTarget.

\n@param numberOfMountTargets Current number of mount targets that the file system has. For more information, see CreateMountTarget.*/", "getterDocumentation" : "/**

Current number of mount targets that the file system has. For more information, see CreateMountTarget.

\n@return Current number of mount targets that the file system has. For more information, see CreateMountTarget.*/", "fluentSetterDocumentation" : "/**

Current number of mount targets that the file system has. For more information, see CreateMountTarget.

\n@param numberOfMountTargets Current number of mount targets that the file system has. For more information, see CreateMountTarget.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Current number of mount targets that the file system has. For more information, see CreateMountTarget.

\n@param numberOfMountTargets Current number of mount targets that the file system has. For more information, see CreateMountTarget.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.

", "name" : "SizeInBytes", "c2jName" : "SizeInBytes", "c2jShape" : "FileSystemSize", "variable" : { "variableName" : "sizeInBytes", "variableType" : "FileSystemSize", "variableDeclarationType" : "FileSystemSize", "documentation" : "

Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.

", "simpleType" : "FileSystemSize", "variableSetterType" : "FileSystemSize" }, "setterModel" : { "variableName" : "sizeInBytes", "variableType" : "FileSystemSize", "variableDeclarationType" : "FileSystemSize", "documentation" : "", "simpleType" : "FileSystemSize", "variableSetterType" : "FileSystemSize" }, "getterModel" : { "returnType" : "FileSystemSize", "documentation" : null }, "http" : { "unmarshallLocationName" : "SizeInBytes", "marshallLocationName" : "SizeInBytes", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.

\n@param sizeInBytes Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.*/", "getterDocumentation" : "/**

Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.

\n@return Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.*/", "fluentSetterDocumentation" : "/**

Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.

\n@param sizeInBytes Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.

\n@param sizeInBytes Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

The PerformanceMode of the file system.

", "name" : "PerformanceMode", "c2jName" : "PerformanceMode", "c2jShape" : "PerformanceMode", "variable" : { "variableName" : "performanceMode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The PerformanceMode of the file system.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "performanceMode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "PerformanceMode", "marshallLocationName" : "PerformanceMode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "PerformanceMode", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The PerformanceMode of the file system.

\n@param performanceMode The PerformanceMode of the file system.\n@see PerformanceMode*/", "getterDocumentation" : "/**

The PerformanceMode of the file system.

\n@return The PerformanceMode of the file system.\n@see PerformanceMode*/", "fluentSetterDocumentation" : "/**

The PerformanceMode of the file system.

\n@param performanceMode The PerformanceMode of the file system.\n@return Returns a reference to this object so that method calls can be chained together.\n@see PerformanceMode*/", "varargSetterDocumentation" : "/**

The PerformanceMode of the file system.

\n@param performanceMode The PerformanceMode of the file system.\n@return Returns a reference to this object so that method calls can be chained together.\n@see PerformanceMode*/" } ], "enums" : null, "variable" : { "variableName" : "fileSystemDescription", "variableType" : "FileSystemDescription", "variableDeclarationType" : "FileSystemDescription", "documentation" : null, "simpleType" : "FileSystemDescription", "variableSetterType" : "FileSystemDescription" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "NumberOfMountTargets" : { "documentation" : "

Current number of mount targets that the file system has. For more information, see CreateMountTarget.

", "name" : "NumberOfMountTargets", "c2jName" : "NumberOfMountTargets", "c2jShape" : "MountTargetCount", "variable" : { "variableName" : "numberOfMountTargets", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

Current number of mount targets that the file system has. For more information, see CreateMountTarget.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "numberOfMountTargets", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "NumberOfMountTargets", "marshallLocationName" : "NumberOfMountTargets", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Current number of mount targets that the file system has. For more information, see CreateMountTarget.

\n@param numberOfMountTargets Current number of mount targets that the file system has. For more information, see CreateMountTarget.*/", "getterDocumentation" : "/**

Current number of mount targets that the file system has. For more information, see CreateMountTarget.

\n@return Current number of mount targets that the file system has. For more information, see CreateMountTarget.*/", "fluentSetterDocumentation" : "/**

Current number of mount targets that the file system has. For more information, see CreateMountTarget.

\n@param numberOfMountTargets Current number of mount targets that the file system has. For more information, see CreateMountTarget.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Current number of mount targets that the file system has. For more information, see CreateMountTarget.

\n@param numberOfMountTargets Current number of mount targets that the file system has. For more information, see CreateMountTarget.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "OwnerId" : { "documentation" : "

AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.

", "name" : "OwnerId", "c2jName" : "OwnerId", "c2jShape" : "AwsAccountId", "variable" : { "variableName" : "ownerId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "ownerId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "OwnerId", "marshallLocationName" : "OwnerId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.

\n@param ownerId AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.*/", "getterDocumentation" : "/**

AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.

\n@return AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.*/", "fluentSetterDocumentation" : "/**

AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.

\n@param ownerId AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.

\n@param ownerId AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "CreationToken" : { "documentation" : "

Opaque string specified in the request.

", "name" : "CreationToken", "c2jName" : "CreationToken", "c2jShape" : "CreationToken", "variable" : { "variableName" : "creationToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Opaque string specified in the request.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "creationToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "CreationToken", "marshallLocationName" : "CreationToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Opaque string specified in the request.

\n@param creationToken Opaque string specified in the request.*/", "getterDocumentation" : "/**

Opaque string specified in the request.

\n@return Opaque string specified in the request.*/", "fluentSetterDocumentation" : "/**

Opaque string specified in the request.

\n@param creationToken Opaque string specified in the request.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Opaque string specified in the request.

\n@param creationToken Opaque string specified in the request.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "PerformanceMode" : { "documentation" : "

The PerformanceMode of the file system.

", "name" : "PerformanceMode", "c2jName" : "PerformanceMode", "c2jShape" : "PerformanceMode", "variable" : { "variableName" : "performanceMode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

The PerformanceMode of the file system.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "performanceMode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "PerformanceMode", "marshallLocationName" : "PerformanceMode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "PerformanceMode", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

The PerformanceMode of the file system.

\n@param performanceMode The PerformanceMode of the file system.\n@see PerformanceMode*/", "getterDocumentation" : "/**

The PerformanceMode of the file system.

\n@return The PerformanceMode of the file system.\n@see PerformanceMode*/", "fluentSetterDocumentation" : "/**

The PerformanceMode of the file system.

\n@param performanceMode The PerformanceMode of the file system.\n@return Returns a reference to this object so that method calls can be chained together.\n@see PerformanceMode*/", "varargSetterDocumentation" : "/**

The PerformanceMode of the file system.

\n@param performanceMode The PerformanceMode of the file system.\n@return Returns a reference to this object so that method calls can be chained together.\n@see PerformanceMode*/" }, "CreationTime" : { "documentation" : "

Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).

", "name" : "CreationTime", "c2jName" : "CreationTime", "c2jShape" : "Timestamp", "variable" : { "variableName" : "creationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "

Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).

", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "setterModel" : { "variableName" : "creationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "getterModel" : { "returnType" : "java.util.Date", "documentation" : null }, "http" : { "unmarshallLocationName" : "CreationTime", "marshallLocationName" : "CreationTime", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).

\n@param creationTime Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).*/", "getterDocumentation" : "/**

Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).

\n@return Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).*/", "fluentSetterDocumentation" : "/**

Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).

\n@param creationTime Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).

\n@param creationTime Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "LifeCycleState" : { "documentation" : "

Lifecycle phase of the file system.

", "name" : "LifeCycleState", "c2jName" : "LifeCycleState", "c2jShape" : "LifeCycleState", "variable" : { "variableName" : "lifeCycleState", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Lifecycle phase of the file system.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "lifeCycleState", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "LifeCycleState", "marshallLocationName" : "LifeCycleState", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "LifeCycleState", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Lifecycle phase of the file system.

\n@param lifeCycleState Lifecycle phase of the file system.\n@see LifeCycleState*/", "getterDocumentation" : "/**

Lifecycle phase of the file system.

\n@return Lifecycle phase of the file system.\n@see LifeCycleState*/", "fluentSetterDocumentation" : "/**

Lifecycle phase of the file system.

\n@param lifeCycleState Lifecycle phase of the file system.\n@return Returns a reference to this object so that method calls can be chained together.\n@see LifeCycleState*/", "varargSetterDocumentation" : "/**

Lifecycle phase of the file system.

\n@param lifeCycleState Lifecycle phase of the file system.\n@return Returns a reference to this object so that method calls can be chained together.\n@see LifeCycleState*/" }, "FileSystemId" : { "documentation" : "

ID of the file system, assigned by Amazon EFS.

", "name" : "FileSystemId", "c2jName" : "FileSystemId", "c2jShape" : "FileSystemId", "variable" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

ID of the file system, assigned by Amazon EFS.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fileSystemId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FileSystemId", "marshallLocationName" : "FileSystemId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

ID of the file system, assigned by Amazon EFS.

\n@param fileSystemId ID of the file system, assigned by Amazon EFS.*/", "getterDocumentation" : "/**

ID of the file system, assigned by Amazon EFS.

\n@return ID of the file system, assigned by Amazon EFS.*/", "fluentSetterDocumentation" : "/**

ID of the file system, assigned by Amazon EFS.

\n@param fileSystemId ID of the file system, assigned by Amazon EFS.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

ID of the file system, assigned by Amazon EFS.

\n@param fileSystemId ID of the file system, assigned by Amazon EFS.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "SizeInBytes" : { "documentation" : "

Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.

", "name" : "SizeInBytes", "c2jName" : "SizeInBytes", "c2jShape" : "FileSystemSize", "variable" : { "variableName" : "sizeInBytes", "variableType" : "FileSystemSize", "variableDeclarationType" : "FileSystemSize", "documentation" : "

Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.

", "simpleType" : "FileSystemSize", "variableSetterType" : "FileSystemSize" }, "setterModel" : { "variableName" : "sizeInBytes", "variableType" : "FileSystemSize", "variableDeclarationType" : "FileSystemSize", "documentation" : "", "simpleType" : "FileSystemSize", "variableSetterType" : "FileSystemSize" }, "getterModel" : { "returnType" : "FileSystemSize", "documentation" : null }, "http" : { "unmarshallLocationName" : "SizeInBytes", "marshallLocationName" : "SizeInBytes", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.

\n@param sizeInBytes Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.*/", "getterDocumentation" : "/**

Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.

\n@return Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.*/", "fluentSetterDocumentation" : "/**

Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.

\n@param sizeInBytes Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.

\n@param sizeInBytes Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Name" : { "documentation" : "

You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.

", "name" : "Name", "c2jName" : "Name", "c2jShape" : "TagValue", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Name", "marshallLocationName" : "Name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.

\n@param name You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.*/", "getterDocumentation" : "/**

You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.

\n@return You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.*/", "fluentSetterDocumentation" : "/**

You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.

\n@param name You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.

\n@param name You can add tags to a file system, including a Name tag. For more information, see CreateTags. If the file system has a Name tag, Amazon EFS returns the value in this field.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "FileSystemSize" : { "c2jName" : "FileSystemSize", "documentation" : "

Latest known metered size (in bytes) of data stored in the file system, in its Value field, and the time at which that size was determined in its Timestamp field. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent the actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not necessarily the exact size the file system was at any instant in time.

", "shapeName" : "FileSystemSize", "deprecated" : false, "required" : [ "Value" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Latest known metered size (in bytes) of data stored in the file system.

", "name" : "Value", "c2jName" : "Value", "c2jShape" : "FileSystemSizeValue", "variable" : { "variableName" : "value", "variableType" : "Long", "variableDeclarationType" : "Long", "documentation" : "

Latest known metered size (in bytes) of data stored in the file system.

", "simpleType" : "Long", "variableSetterType" : "Long" }, "setterModel" : { "variableName" : "value", "variableType" : "Long", "variableDeclarationType" : "Long", "documentation" : "", "simpleType" : "Long", "variableSetterType" : "Long" }, "getterModel" : { "returnType" : "Long", "documentation" : null }, "http" : { "unmarshallLocationName" : "Value", "marshallLocationName" : "Value", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Latest known metered size (in bytes) of data stored in the file system.

\n@param value Latest known metered size (in bytes) of data stored in the file system.*/", "getterDocumentation" : "/**

Latest known metered size (in bytes) of data stored in the file system.

\n@return Latest known metered size (in bytes) of data stored in the file system.*/", "fluentSetterDocumentation" : "/**

Latest known metered size (in bytes) of data stored in the file system.

\n@param value Latest known metered size (in bytes) of data stored in the file system.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Latest known metered size (in bytes) of data stored in the file system.

\n@param value Latest known metered size (in bytes) of data stored in the file system.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Time at which the size of data, returned in the Value field, was determined. The value is the integer number of seconds since 1970-01-01T00:00:00Z.

", "name" : "Timestamp", "c2jName" : "Timestamp", "c2jShape" : "Timestamp", "variable" : { "variableName" : "timestamp", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "

Time at which the size of data, returned in the Value field, was determined. The value is the integer number of seconds since 1970-01-01T00:00:00Z.

", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "setterModel" : { "variableName" : "timestamp", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "getterModel" : { "returnType" : "java.util.Date", "documentation" : null }, "http" : { "unmarshallLocationName" : "Timestamp", "marshallLocationName" : "Timestamp", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Time at which the size of data, returned in the Value field, was determined. The value is the integer number of seconds since 1970-01-01T00:00:00Z.

\n@param timestamp Time at which the size of data, returned in the Value field, was determined. The value is the integer number of seconds since 1970-01-01T00:00:00Z.*/", "getterDocumentation" : "/**

Time at which the size of data, returned in the Value field, was determined. The value is the integer number of seconds since 1970-01-01T00:00:00Z.

\n@return Time at which the size of data, returned in the Value field, was determined. The value is the integer number of seconds since 1970-01-01T00:00:00Z.*/", "fluentSetterDocumentation" : "/**

Time at which the size of data, returned in the Value field, was determined. The value is the integer number of seconds since 1970-01-01T00:00:00Z.

\n@param timestamp Time at which the size of data, returned in the Value field, was determined. The value is the integer number of seconds since 1970-01-01T00:00:00Z.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Time at which the size of data, returned in the Value field, was determined. The value is the integer number of seconds since 1970-01-01T00:00:00Z.

\n@param timestamp Time at which the size of data, returned in the Value field, was determined. The value is the integer number of seconds since 1970-01-01T00:00:00Z.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "fileSystemSize", "variableType" : "FileSystemSize", "variableDeclarationType" : "FileSystemSize", "documentation" : null, "simpleType" : "FileSystemSize", "variableSetterType" : "FileSystemSize" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "Value" : { "documentation" : "

Latest known metered size (in bytes) of data stored in the file system.

", "name" : "Value", "c2jName" : "Value", "c2jShape" : "FileSystemSizeValue", "variable" : { "variableName" : "value", "variableType" : "Long", "variableDeclarationType" : "Long", "documentation" : "

Latest known metered size (in bytes) of data stored in the file system.

", "simpleType" : "Long", "variableSetterType" : "Long" }, "setterModel" : { "variableName" : "value", "variableType" : "Long", "variableDeclarationType" : "Long", "documentation" : "", "simpleType" : "Long", "variableSetterType" : "Long" }, "getterModel" : { "returnType" : "Long", "documentation" : null }, "http" : { "unmarshallLocationName" : "Value", "marshallLocationName" : "Value", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Latest known metered size (in bytes) of data stored in the file system.

\n@param value Latest known metered size (in bytes) of data stored in the file system.*/", "getterDocumentation" : "/**

Latest known metered size (in bytes) of data stored in the file system.

\n@return Latest known metered size (in bytes) of data stored in the file system.*/", "fluentSetterDocumentation" : "/**

Latest known metered size (in bytes) of data stored in the file system.

\n@param value Latest known metered size (in bytes) of data stored in the file system.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Latest known metered size (in bytes) of data stored in the file system.

\n@param value Latest known metered size (in bytes) of data stored in the file system.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Timestamp" : { "documentation" : "

Time at which the size of data, returned in the Value field, was determined. The value is the integer number of seconds since 1970-01-01T00:00:00Z.

", "name" : "Timestamp", "c2jName" : "Timestamp", "c2jShape" : "Timestamp", "variable" : { "variableName" : "timestamp", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "

Time at which the size of data, returned in the Value field, was determined. The value is the integer number of seconds since 1970-01-01T00:00:00Z.

", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "setterModel" : { "variableName" : "timestamp", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "getterModel" : { "returnType" : "java.util.Date", "documentation" : null }, "http" : { "unmarshallLocationName" : "Timestamp", "marshallLocationName" : "Timestamp", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Time at which the size of data, returned in the Value field, was determined. The value is the integer number of seconds since 1970-01-01T00:00:00Z.

\n@param timestamp Time at which the size of data, returned in the Value field, was determined. The value is the integer number of seconds since 1970-01-01T00:00:00Z.*/", "getterDocumentation" : "/**

Time at which the size of data, returned in the Value field, was determined. The value is the integer number of seconds since 1970-01-01T00:00:00Z.

\n@return Time at which the size of data, returned in the Value field, was determined. The value is the integer number of seconds since 1970-01-01T00:00:00Z.*/", "fluentSetterDocumentation" : "/**

Time at which the size of data, returned in the Value field, was determined. The value is the integer number of seconds since 1970-01-01T00:00:00Z.

\n@param timestamp Time at which the size of data, returned in the Value field, was determined. The value is the integer number of seconds since 1970-01-01T00:00:00Z.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Time at which the size of data, returned in the Value field, was determined. The value is the integer number of seconds since 1970-01-01T00:00:00Z.

\n@param timestamp Time at which the size of data, returned in the Value field, was determined. The value is the integer number of seconds since 1970-01-01T00:00:00Z.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } } }, "customizationConfig" : { "requestMetrics" : null, "useAutoConstructList" : true, "useAutoConstructMap" : false, "serviceClientHoldInputStream" : false, "operationsWithResponseStreamContentLengthValidation" : null, "customExceptionUnmarshallerImpl" : null, "customClientConfigFactory" : null, "customResponseMetadataClassName" : null, "skipInterfaceAdditions" : false, "customServiceNameForRequest" : null, "requiredParamValidationEnabled" : false, "additionalShapeConstructors" : null, "simpleMethods" : { "DescribeFileSystems" : { "methodForms" : [ [ ] ] } }, "renameShapes" : null, "sendEmptyAutoConstructedListAsEmptyList" : null, "authPolicyActions" : { "skip" : true, "actionPrefix" : null, "fileNamePrefix" : null }, "customServiceMetadata" : null, "customCodeTemplates" : null, "operationModifiers" : null, "shapeSubstitutions" : null, "shapeModifiers" : null, "customErrorCodeFieldName" : null, "sdkModeledExceptionBaseClassName" : null, "customSignerProvider" : null, "calculateCRC32FromCompressedData" : false, "customFileHeader" : null, "convenienceTypeOverloads" : [ ] }, "examples" : { "version" : "1.0", "operationExamples" : { } }, "clientConfigFactory" : "ClientConfigurationFactory", "serviceBaseExceptionFqcn" : "com.amazonaws.AmazonServiceException", "sdkModeledExceptionBaseFqcn" : "com.amazonaws.services.elasticfilesystem.model.AmazonElasticFileSystemException", "fileHeader" : "/*\n * Copyright 2011-2016 Amazon.com, Inc. or its affiliates. All Rights\n * Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License.\n */", "sdkModeledExceptionBaseClassName" : "AmazonElasticFileSystemException", "exceptionUnmarshallerImpl" : null }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy