
models.elasticfilesystem-2015-02-01-intermediate.json Maven / Gradle / Ivy
Show all versions of aws-java-sdk-efs Show documentation
{
"metadata" : {
"apiVersion" : "2015-02-01",
"exceptionUnmarshallerImpl" : null,
"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,
"jsonContentVersion" : "application/x-amz-json-1.1",
"jsonVersion" : "1.1",
"endpointPrefix" : "elasticfilesystem",
"signingName" : "elasticfilesystem",
"jsonProtocol" : true,
"serviceName" : "EFS",
"cborProtocol" : false,
"xmlProtocol" : false,
"unmarshallerContextClassName" : "JsonUnmarshallerContext",
"unmarshallerClassSuffix" : "JsonUnmarshaller",
"protocolDefaultExceptionUnmarshallerType" : "JsonErrorUnmarshaller"
},
"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 API, which among other things returns the file system state. 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 (CreateMountTarget) in your VPC. 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 permission 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" : "This object provides description of a 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,
"authenticated" : true,
"syncReturnType" : "CreateFileSystemResult",
"asyncReturnType" : "CreateFileSystemResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"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\" (see DescribeFileSystems).
In the request, you also provide a subnet ID, which serves several purposes:
- It determines the VPC in which Amazon EFS creates the mount target.
- It determines the Availability Zone in which Amazon EFS creates the mount target.
- It determines the 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 request to add another mount target must meet the following requirements:
-
The subnet specified in the request must belong to the same VPC as the subnets of the existing mount targets.
- The subnet specified in the request 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 API, 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, go to Amazon EFS product detail page. 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 permission for the following action on the file system:
-
elasticfilesystem:CreateMountTarget
This operation also requires permission 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" : "This object provides 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, go to 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,
"authenticated" : true,
"syncReturnType" : "CreateMountTargetResult",
"asyncReturnType" : "CreateMountTargetResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"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 API.
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,
"authenticated" : true,
"syncReturnType" : "CreateTagsResult",
"asyncReturnType" : "CreateTagsResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "createTags"
},
"DeleteFileSystem" : {
"documentation" : " Deletes a file system, permanently severing access to its contents. Upon return, the file system no longer exists and you will not be able to access any contents of the deleted file system.
You cannot 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 API, 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 will return a 404 \"FileSystemNotFound\" error. This operation requires permission 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,
"authenticated" : true,
"syncReturnType" : "DeleteFileSystemResult",
"asyncReturnType" : "DeleteFileSystemResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "deleteFileSystem"
},
"DeleteMountTarget" : {
"documentation" : "Deletes the specified mount target.
This operation forcibly breaks any mounts of the file system via the mount target 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 using another mount target.
This operation requires permission 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 API, which returns a list of mount target descriptions for the given file system. The operation also requires permission 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,
"authenticated" : true,
"syncReturnType" : "DeleteMountTargetResult",
"asyncReturnType" : "DeleteMountTargetResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"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; it is not an error. For more information about tags and related restrictions, go to Tag Restrictions in the AWS Billing and Cost Management User Guide.
This operation requires permission 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,
"authenticated" : true,
"syncReturnType" : "DeleteTagsResult",
"asyncReturnType" : "DeleteTagsResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"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, 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
.
So to retrieve a list of your file system descriptions, the expected usage of this API is an iterative process of first calling DescribeFileSystems
without the Marker
and then continuing to call it with the Marker
parameter set to the value of the NextMarker
from the previous response until the response has no NextMarker
.
Note that 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 permission 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,
"authenticated" : true,
"syncReturnType" : "DescribeFileSystemsResult",
"asyncReturnType" : "DescribeFileSystemsResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"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 life cycle 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,
"authenticated" : true,
"syncReturnType" : "DescribeMountTargetSecurityGroupsResult",
"asyncReturnType" : "DescribeMountTargetSecurityGroupsResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"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 permission 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" : 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" : "MountTargetNotFoundException",
"documentation" : "Returned if there is no mount target with the specified ID found in the caller's account.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "DescribeMountTargetsResult",
"asyncReturnType" : "DescribeMountTargetsResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"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 permission 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" : 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,
"authenticated" : true,
"syncReturnType" : "DescribeTagsResult",
"asyncReturnType" : "DescribeTagsResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"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 (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 life cycle 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,
"authenticated" : true,
"syncReturnType" : "ModifyMountTargetSecurityGroupsResult",
"asyncReturnType" : "ModifyMountTargetSecurityGroupsResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "modifyMountTargetSecurityGroups"
}
},
"shapes" : {
"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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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.*/"
}
}
},
"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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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.*/"
}
}
},
"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,
"statusCode" : false,
"queryString" : true,
"uri" : false,
"header" : false
},
"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. String. Opaque pagination token returned from a previous DescribeTags
operation. 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. String. Opaque pagination token returned from a previous DescribeTags
operation. 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,
"statusCode" : false,
"queryString" : true,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Optional. String. Opaque pagination token returned from a previous DescribeTags
operation. If present, it specifies to continue the list from where the previous call left off.
\n@param marker Optional. String. Opaque pagination token returned from a previous DescribeTags
operation. If present, it specifies to continue the list from where the previous call left off.*/",
"getterDocumentation" : "/**Optional. String. Opaque pagination token returned from a previous DescribeTags
operation. If present, it specifies to continue the list from where the previous call left off.
\n@return Optional. String. Opaque pagination token returned from a previous DescribeTags
operation. If present, it specifies to continue the list from where the previous call left off.*/",
"fluentSetterDocumentation" : "/**Optional. String. Opaque pagination token returned from a previous DescribeTags
operation. If present, it specifies to continue the list from where the previous call left off.
\n@param marker Optional. String. Opaque pagination token returned from a previous DescribeTags
operation. 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. String. Opaque pagination token returned from a previous DescribeTags
operation. If present, it specifies to continue the list from where the previous call left off.
\n@param marker Optional. String. Opaque pagination token returned from a previous DescribeTags
operation. 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" : "The 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" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : true,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ID of the file system whose tag set you want to retrieve.
\n@param fileSystemId The ID of the file system whose tag set you want to retrieve.*/",
"getterDocumentation" : "/**The ID of the file system whose tag set you want to retrieve.
\n@return The ID of the file system whose tag set you want to retrieve.*/",
"fluentSetterDocumentation" : "/**The ID of the file system whose tag set you want to retrieve.
\n@param fileSystemId The 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" : "/**The ID of the file system whose tag set you want to retrieve.
\n@param fileSystemId The 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" : {
"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,
"statusCode" : false,
"queryString" : true,
"uri" : false,
"header" : false
},
"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.*/"
},
"FileSystemId" : {
"documentation" : "The 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" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : true,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ID of the file system whose tag set you want to retrieve.
\n@param fileSystemId The ID of the file system whose tag set you want to retrieve.*/",
"getterDocumentation" : "/**The ID of the file system whose tag set you want to retrieve.
\n@return The ID of the file system whose tag set you want to retrieve.*/",
"fluentSetterDocumentation" : "/**The ID of the file system whose tag set you want to retrieve.
\n@param fileSystemId The 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" : "/**The ID of the file system whose tag set you want to retrieve.
\n@param fileSystemId The 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.*/"
},
"Marker" : {
"documentation" : "Optional. String. Opaque pagination token returned from a previous DescribeTags
operation. 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. String. Opaque pagination token returned from a previous DescribeTags
operation. 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,
"statusCode" : false,
"queryString" : true,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Optional. String. Opaque pagination token returned from a previous DescribeTags
operation. If present, it specifies to continue the list from where the previous call left off.
\n@param marker Optional. String. Opaque pagination token returned from a previous DescribeTags
operation. If present, it specifies to continue the list from where the previous call left off.*/",
"getterDocumentation" : "/**Optional. String. Opaque pagination token returned from a previous DescribeTags
operation. If present, it specifies to continue the list from where the previous call left off.
\n@return Optional. String. Opaque pagination token returned from a previous DescribeTags
operation. If present, it specifies to continue the list from where the previous call left off.*/",
"fluentSetterDocumentation" : "/**Optional. String. Opaque pagination token returned from a previous DescribeTags
operation. If present, it specifies to continue the list from where the previous call left off.
\n@param marker Optional. String. Opaque pagination token returned from a previous DescribeTags
operation. 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. String. Opaque pagination token returned from a previous DescribeTags
operation. If present, it specifies to continue the list from where the previous call left off.
\n@param marker Optional. String. Opaque pagination token returned from a previous DescribeTags
operation. 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.*/"
}
}
},
"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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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.*/"
}
}
},
"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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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.*/"
}
}
},
"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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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" : "The 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" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ID of the file system for which to create the mount target.
\n@param fileSystemId The ID of the file system for which to create the mount target.*/",
"getterDocumentation" : "/**The ID of the file system for which to create the mount target.
\n@return The ID of the file system for which to create the mount target.*/",
"fluentSetterDocumentation" : "/**The ID of the file system for which to create the mount target.
\n@param fileSystemId The 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" : "/**The ID of the file system for which to create the mount target.
\n@param fileSystemId The 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" : "The ID of the subnet to add the mount target in.
",
"name" : "SubnetId",
"c2jName" : "SubnetId",
"c2jShape" : "SubnetId",
"variable" : {
"variableName" : "subnetId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ID of the subnet to add the mount target in.
\n@param subnetId The ID of the subnet to add the mount target in.*/",
"getterDocumentation" : "/**The ID of the subnet to add the mount target in.
\n@return The ID of the subnet to add the mount target in.*/",
"fluentSetterDocumentation" : "/**The ID of the subnet to add the mount target in.
\n@param subnetId The 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" : "/**The ID of the subnet to add the mount target in.
\n@param subnetId The 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" : "A 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" : "A 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A valid IPv4 address within the address range of the specified subnet.
\n@param ipAddress A valid IPv4 address within the address range of the specified subnet.*/",
"getterDocumentation" : "/**A valid IPv4 address within the address range of the specified subnet.
\n@return A valid IPv4 address within the address range of the specified subnet.*/",
"fluentSetterDocumentation" : "/**A valid IPv4 address within the address range of the specified subnet.
\n@param ipAddress A 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" : "/**A valid IPv4 address within the address range of the specified subnet.
\n@param ipAddress A 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 5 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 5 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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 5 VPC security group IDs, of the form \"sg-xxxxxxxx\". These must be for the same VPC as subnet specified.
\n@param securityGroups Up to 5 VPC security group IDs, of the form \"sg-xxxxxxxx\". These must be for the same VPC as subnet specified.*/",
"getterDocumentation" : "/** Up to 5 VPC security group IDs, of the form \"sg-xxxxxxxx\". These must be for the same VPC as subnet specified.
\n@return Up to 5 VPC security group IDs, of the form \"sg-xxxxxxxx\". These must be for the same VPC as subnet specified.*/",
"fluentSetterDocumentation" : "/** Up to 5 VPC security group IDs, of the form \"sg-xxxxxxxx\". These must be for the same VPC as subnet specified.
\n@param securityGroups Up to 5 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 5 VPC security group IDs, of the form \"sg-xxxxxxxx\". These must be for the same VPC as subnet specified.
\nNOTE: 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 5 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" : {
"FileSystemId" : {
"documentation" : "The 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" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ID of the file system for which to create the mount target.
\n@param fileSystemId The ID of the file system for which to create the mount target.*/",
"getterDocumentation" : "/**The ID of the file system for which to create the mount target.
\n@return The ID of the file system for which to create the mount target.*/",
"fluentSetterDocumentation" : "/**The ID of the file system for which to create the mount target.
\n@param fileSystemId The 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" : "/**The ID of the file system for which to create the mount target.
\n@param fileSystemId The 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.*/"
},
"SubnetId" : {
"documentation" : "The ID of the subnet to add the mount target in.
",
"name" : "SubnetId",
"c2jName" : "SubnetId",
"c2jShape" : "SubnetId",
"variable" : {
"variableName" : "subnetId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ID of the subnet to add the mount target in.
\n@param subnetId The ID of the subnet to add the mount target in.*/",
"getterDocumentation" : "/**The ID of the subnet to add the mount target in.
\n@return The ID of the subnet to add the mount target in.*/",
"fluentSetterDocumentation" : "/**The ID of the subnet to add the mount target in.
\n@param subnetId The 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" : "/**The ID of the subnet to add the mount target in.
\n@param subnetId The 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.*/"
},
"SecurityGroups" : {
"documentation" : " Up to 5 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 5 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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 5 VPC security group IDs, of the form \"sg-xxxxxxxx\". These must be for the same VPC as subnet specified.
\n@param securityGroups Up to 5 VPC security group IDs, of the form \"sg-xxxxxxxx\". These must be for the same VPC as subnet specified.*/",
"getterDocumentation" : "/** Up to 5 VPC security group IDs, of the form \"sg-xxxxxxxx\". These must be for the same VPC as subnet specified.
\n@return Up to 5 VPC security group IDs, of the form \"sg-xxxxxxxx\". These must be for the same VPC as subnet specified.*/",
"fluentSetterDocumentation" : "/** Up to 5 VPC security group IDs, of the form \"sg-xxxxxxxx\". These must be for the same VPC as subnet specified.
\n@param securityGroups Up to 5 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 5 VPC security group IDs, of the form \"sg-xxxxxxxx\". These must be for the same VPC as subnet specified.
\nNOTE: 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 5 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.*/"
},
"IpAddress" : {
"documentation" : "A 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" : "A 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A valid IPv4 address within the address range of the specified subnet.
\n@param ipAddress A valid IPv4 address within the address range of the specified subnet.*/",
"getterDocumentation" : "/**A valid IPv4 address within the address range of the specified subnet.
\n@return A valid IPv4 address within the address range of the specified subnet.*/",
"fluentSetterDocumentation" : "/**A valid IPv4 address within the address range of the specified subnet.
\n@param ipAddress A 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" : "/**A valid IPv4 address within the address range of the specified subnet.
\n@param ipAddress A 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.*/"
}
}
},
"ModifyMountTargetSecurityGroupsRequest" : {
"c2jName" : "ModifyMountTargetSecurityGroupsRequest",
"documentation" : "",
"shapeName" : "ModifyMountTargetSecurityGroupsRequest",
"deprecated" : false,
"required" : [ "MountTargetId" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The 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" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : true,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ID of the mount target whose security groups you want to modify.
\n@param mountTargetId The ID of the mount target whose security groups you want to modify.*/",
"getterDocumentation" : "/**The ID of the mount target whose security groups you want to modify.
\n@return The ID of the mount target whose security groups you want to modify.*/",
"fluentSetterDocumentation" : "/**The ID of the mount target whose security groups you want to modify.
\n@param mountTargetId The 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" : "/**The ID of the mount target whose security groups you want to modify.
\n@param mountTargetId The 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" : "An 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" : "An 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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" : "/**An array of up to five VPC security group IDs.
\n@param securityGroups An array of up to five VPC security group IDs.*/",
"getterDocumentation" : "/**An array of up to five VPC security group IDs.
\n@return An array of up to five VPC security group IDs.*/",
"fluentSetterDocumentation" : "/**An array of up to five VPC security group IDs.
\n@param securityGroups An 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" : "/**An array of up to five VPC security group IDs.
\nNOTE: 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 An 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" : {
"MountTargetId" : {
"documentation" : "The 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" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : true,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ID of the mount target whose security groups you want to modify.
\n@param mountTargetId The ID of the mount target whose security groups you want to modify.*/",
"getterDocumentation" : "/**The ID of the mount target whose security groups you want to modify.
\n@return The ID of the mount target whose security groups you want to modify.*/",
"fluentSetterDocumentation" : "/**The ID of the mount target whose security groups you want to modify.
\n@param mountTargetId The 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" : "/**The ID of the mount target whose security groups you want to modify.
\n@param mountTargetId The 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.*/"
},
"SecurityGroups" : {
"documentation" : "An 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" : "An 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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" : "/**An array of up to five VPC security group IDs.
\n@param securityGroups An array of up to five VPC security group IDs.*/",
"getterDocumentation" : "/**An array of up to five VPC security group IDs.
\n@return An array of up to five VPC security group IDs.*/",
"fluentSetterDocumentation" : "/**An array of up to five VPC security group IDs.
\n@param securityGroups An 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" : "/**An array of up to five VPC security group IDs.
\nNOTE: 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 An 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.*/"
}
}
},
"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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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.
\nNOTE: 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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.
\nNOTE: 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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.*/"
}
}
},
"DescribeMountTargetSecurityGroupsRequest" : {
"c2jName" : "DescribeMountTargetSecurityGroupsRequest",
"documentation" : "",
"shapeName" : "DescribeMountTargetSecurityGroupsRequest",
"deprecated" : false,
"required" : [ "MountTargetId" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The 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" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : true,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ID of the mount target whose security groups you want to retrieve.
\n@param mountTargetId The ID of the mount target whose security groups you want to retrieve.*/",
"getterDocumentation" : "/**The ID of the mount target whose security groups you want to retrieve.
\n@return The ID of the mount target whose security groups you want to retrieve.*/",
"fluentSetterDocumentation" : "/**The ID of the mount target whose security groups you want to retrieve.
\n@param mountTargetId The 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" : "/**The ID of the mount target whose security groups you want to retrieve.
\n@param mountTargetId The 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" : "The 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" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : true,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ID of the mount target whose security groups you want to retrieve.
\n@param mountTargetId The ID of the mount target whose security groups you want to retrieve.*/",
"getterDocumentation" : "/**The ID of the mount target whose security groups you want to retrieve.
\n@return The ID of the mount target whose security groups you want to retrieve.*/",
"fluentSetterDocumentation" : "/**The ID of the mount target whose security groups you want to retrieve.
\n@param mountTargetId The 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" : "/**The ID of the mount target whose security groups you want to retrieve.
\n@param mountTargetId The 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.*/"
}
}
},
"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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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.*/"
}
}
},
"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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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.*/"
}
}
},
"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" : { }
},
"DescribeMountTargetSecurityGroupsResult" : {
"c2jName" : "DescribeMountTargetSecurityGroupsResponse",
"documentation" : "",
"shapeName" : "DescribeMountTargetSecurityGroupsResult",
"deprecated" : false,
"required" : [ "SecurityGroups" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "An array of security groups.
",
"name" : "SecurityGroups",
"c2jName" : "SecurityGroups",
"c2jShape" : "SecurityGroups",
"variable" : {
"variableName" : "securityGroups",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "An 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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" : "/**An array of security groups.
\n@param securityGroups An array of security groups.*/",
"getterDocumentation" : "/**An array of security groups.
\n@return An array of security groups.*/",
"fluentSetterDocumentation" : "/**An array of security groups.
\n@param securityGroups An array of security groups.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**An array of security groups.
\nNOTE: 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 An 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" : "An array of security groups.
",
"name" : "SecurityGroups",
"c2jName" : "SecurityGroups",
"c2jShape" : "SecurityGroups",
"variable" : {
"variableName" : "securityGroups",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "An 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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" : "/**An array of security groups.
\n@param securityGroups An array of security groups.*/",
"getterDocumentation" : "/**An array of security groups.
\n@return An array of security groups.*/",
"fluentSetterDocumentation" : "/**An array of security groups.
\n@param securityGroups An array of security groups.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**An array of security groups.
\nNOTE: 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 An array of security groups.\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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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.*/"
}
}
},
"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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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.*/"
}
}
},
"DeleteFileSystemRequest" : {
"c2jName" : "DeleteFileSystemRequest",
"documentation" : "",
"shapeName" : "DeleteFileSystemRequest",
"deprecated" : false,
"required" : [ "FileSystemId" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The ID of the file system you want to delete.
",
"name" : "FileSystemId",
"c2jName" : "FileSystemId",
"c2jShape" : "FileSystemId",
"variable" : {
"variableName" : "fileSystemId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : true,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ID of the file system you want to delete.
\n@param fileSystemId The ID of the file system you want to delete.*/",
"getterDocumentation" : "/**The ID of the file system you want to delete.
\n@return The ID of the file system you want to delete.*/",
"fluentSetterDocumentation" : "/**The ID of the file system you want to delete.
\n@param fileSystemId The 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" : "/**The ID of the file system you want to delete.
\n@param fileSystemId The 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" : "The ID of the file system you want to delete.
",
"name" : "FileSystemId",
"c2jName" : "FileSystemId",
"c2jShape" : "FileSystemId",
"variable" : {
"variableName" : "fileSystemId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : true,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ID of the file system you want to delete.
\n@param fileSystemId The ID of the file system you want to delete.*/",
"getterDocumentation" : "/**The ID of the file system you want to delete.
\n@return The ID of the file system you want to delete.*/",
"fluentSetterDocumentation" : "/**The ID of the file system you want to delete.
\n@param fileSystemId The 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" : "/**The ID of the file system you want to delete.
\n@param fileSystemId The 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.*/"
}
}
},
"FileSystemDescription" : {
"c2jName" : "FileSystemDescription",
"documentation" : "This object provides description of a file system.
",
"shapeName" : "FileSystemDescription",
"deprecated" : false,
"required" : [ "OwnerId", "CreationToken", "FileSystemId", "CreationTime", "LifeCycleState", "NumberOfMountTargets", "SizeInBytes" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The 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" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The 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 The 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" : "/**The 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 The 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" : "/**The 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 The 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" : "/**The 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 The 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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" : "The file system ID assigned by Amazon EFS.
",
"name" : "FileSystemId",
"c2jName" : "FileSystemId",
"c2jShape" : "FileSystemId",
"variable" : {
"variableName" : "fileSystemId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The file system ID 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The file system ID assigned by Amazon EFS.
\n@param fileSystemId The file system ID assigned by Amazon EFS.*/",
"getterDocumentation" : "/**The file system ID assigned by Amazon EFS.
\n@return The file system ID assigned by Amazon EFS.*/",
"fluentSetterDocumentation" : "/**The file system ID assigned by Amazon EFS.
\n@param fileSystemId The file system ID assigned by Amazon EFS.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The file system ID assigned by Amazon EFS.
\n@param fileSystemId The file system ID assigned by Amazon EFS.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The time at which 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" : "The time at which 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The time at which the file system was created, in seconds, since 1970-01-01T00:00:00Z.
\n@param creationTime The time at which the file system was created, in seconds, since 1970-01-01T00:00:00Z.*/",
"getterDocumentation" : "/**The time at which the file system was created, in seconds, since 1970-01-01T00:00:00Z.
\n@return The time at which the file system was created, in seconds, since 1970-01-01T00:00:00Z.*/",
"fluentSetterDocumentation" : "/**The time at which the file system was created, in seconds, since 1970-01-01T00:00:00Z.
\n@param creationTime The time at which 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" : "/**The time at which the file system was created, in seconds, since 1970-01-01T00:00:00Z.
\n@param creationTime The time at which 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" : "A predefined string value that indicates the lifecycle phase of the file system.
",
"name" : "LifeCycleState",
"c2jName" : "LifeCycleState",
"c2jShape" : "LifeCycleState",
"variable" : {
"variableName" : "lifeCycleState",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A predefined string value that indicates the 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "LifeCycleState",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A predefined string value that indicates the lifecycle phase of the file system.
\n@param lifeCycleState A predefined string value that indicates the lifecycle phase of the file system.\n@see LifeCycleState*/",
"getterDocumentation" : "/**A predefined string value that indicates the lifecycle phase of the file system.
\n@return A predefined string value that indicates the lifecycle phase of the file system.\n@see LifeCycleState*/",
"fluentSetterDocumentation" : "/**A predefined string value that indicates the lifecycle phase of the file system.
\n@param lifeCycleState A predefined string value that indicates the 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" : "/**A predefined string value that indicates the lifecycle phase of the file system.
\n@param lifeCycleState A predefined string value that indicates the 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 (see CreateTags) including a \"Name\" tag. 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 (see CreateTags) including a \"Name\" tag. 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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 (see CreateTags) including a \"Name\" tag. 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 (see CreateTags) including a \"Name\" tag. 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 (see CreateTags) including a \"Name\" tag. 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 (see CreateTags) including a \"Name\" tag. 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 (see CreateTags) including a \"Name\" tag. 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 (see CreateTags) including a \"Name\" tag. 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 (see CreateTags) including a \"Name\" tag. 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 (see CreateTags) including a \"Name\" tag. 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" : "The current number of mount targets (see CreateMountTarget) the file system has.
",
"name" : "NumberOfMountTargets",
"c2jName" : "NumberOfMountTargets",
"c2jShape" : "MountTargetCount",
"variable" : {
"variableName" : "numberOfMountTargets",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The current number of mount targets (see CreateMountTarget) the file system has.
",
"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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The current number of mount targets (see CreateMountTarget) the file system has.
\n@param numberOfMountTargets The current number of mount targets (see CreateMountTarget) the file system has.*/",
"getterDocumentation" : "/**The current number of mount targets (see CreateMountTarget) the file system has.
\n@return The current number of mount targets (see CreateMountTarget) the file system has.*/",
"fluentSetterDocumentation" : "/**The current number of mount targets (see CreateMountTarget) the file system has.
\n@param numberOfMountTargets The current number of mount targets (see CreateMountTarget) the file system has.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The current number of mount targets (see CreateMountTarget) the file system has.
\n@param numberOfMountTargets The current number of mount targets (see CreateMountTarget) the file system has.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : " This object provides the latest known metered size 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" : " This object provides the latest known metered size 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/** This object provides the latest known metered size 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 This object provides the latest known metered size 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" : "/** This object provides the latest known metered size 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 This object provides the latest known metered size 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" : "/** This object provides the latest known metered size 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 This object provides the latest known metered size 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" : "/** This object provides the latest known metered size 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 This object provides the latest known metered size 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.*/"
} ],
"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" : {
"Name" : {
"documentation" : "You can add tags to a file system (see CreateTags) including a \"Name\" tag. 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 (see CreateTags) including a \"Name\" tag. 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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 (see CreateTags) including a \"Name\" tag. 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 (see CreateTags) including a \"Name\" tag. 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 (see CreateTags) including a \"Name\" tag. 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 (see CreateTags) including a \"Name\" tag. 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 (see CreateTags) including a \"Name\" tag. 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 (see CreateTags) including a \"Name\" tag. 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 (see CreateTags) including a \"Name\" tag. 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 (see CreateTags) including a \"Name\" tag. 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.*/"
},
"CreationTime" : {
"documentation" : "The time at which 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" : "The time at which 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The time at which the file system was created, in seconds, since 1970-01-01T00:00:00Z.
\n@param creationTime The time at which the file system was created, in seconds, since 1970-01-01T00:00:00Z.*/",
"getterDocumentation" : "/**The time at which the file system was created, in seconds, since 1970-01-01T00:00:00Z.
\n@return The time at which the file system was created, in seconds, since 1970-01-01T00:00:00Z.*/",
"fluentSetterDocumentation" : "/**The time at which the file system was created, in seconds, since 1970-01-01T00:00:00Z.
\n@param creationTime The time at which 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" : "/**The time at which the file system was created, in seconds, since 1970-01-01T00:00:00Z.
\n@param creationTime The time at which 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.*/"
},
"FileSystemId" : {
"documentation" : "The file system ID assigned by Amazon EFS.
",
"name" : "FileSystemId",
"c2jName" : "FileSystemId",
"c2jShape" : "FileSystemId",
"variable" : {
"variableName" : "fileSystemId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The file system ID 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The file system ID assigned by Amazon EFS.
\n@param fileSystemId The file system ID assigned by Amazon EFS.*/",
"getterDocumentation" : "/**The file system ID assigned by Amazon EFS.
\n@return The file system ID assigned by Amazon EFS.*/",
"fluentSetterDocumentation" : "/**The file system ID assigned by Amazon EFS.
\n@param fileSystemId The file system ID assigned by Amazon EFS.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The file system ID assigned by Amazon EFS.
\n@param fileSystemId The file system ID assigned by Amazon EFS.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"LifeCycleState" : {
"documentation" : "A predefined string value that indicates the lifecycle phase of the file system.
",
"name" : "LifeCycleState",
"c2jName" : "LifeCycleState",
"c2jShape" : "LifeCycleState",
"variable" : {
"variableName" : "lifeCycleState",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A predefined string value that indicates the 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "LifeCycleState",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A predefined string value that indicates the lifecycle phase of the file system.
\n@param lifeCycleState A predefined string value that indicates the lifecycle phase of the file system.\n@see LifeCycleState*/",
"getterDocumentation" : "/**A predefined string value that indicates the lifecycle phase of the file system.
\n@return A predefined string value that indicates the lifecycle phase of the file system.\n@see LifeCycleState*/",
"fluentSetterDocumentation" : "/**A predefined string value that indicates the lifecycle phase of the file system.
\n@param lifeCycleState A predefined string value that indicates the 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" : "/**A predefined string value that indicates the lifecycle phase of the file system.
\n@param lifeCycleState A predefined string value that indicates the 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*/"
},
"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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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.*/"
},
"OwnerId" : {
"documentation" : "The 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" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The 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 The 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" : "/**The 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 The 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" : "/**The 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 The 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" : "/**The 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 The 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.*/"
},
"NumberOfMountTargets" : {
"documentation" : "The current number of mount targets (see CreateMountTarget) the file system has.
",
"name" : "NumberOfMountTargets",
"c2jName" : "NumberOfMountTargets",
"c2jShape" : "MountTargetCount",
"variable" : {
"variableName" : "numberOfMountTargets",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The current number of mount targets (see CreateMountTarget) the file system has.
",
"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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The current number of mount targets (see CreateMountTarget) the file system has.
\n@param numberOfMountTargets The current number of mount targets (see CreateMountTarget) the file system has.*/",
"getterDocumentation" : "/**The current number of mount targets (see CreateMountTarget) the file system has.
\n@return The current number of mount targets (see CreateMountTarget) the file system has.*/",
"fluentSetterDocumentation" : "/**The current number of mount targets (see CreateMountTarget) the file system has.
\n@param numberOfMountTargets The current number of mount targets (see CreateMountTarget) the file system has.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The current number of mount targets (see CreateMountTarget) the file system has.
\n@param numberOfMountTargets The current number of mount targets (see CreateMountTarget) the file system has.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"SizeInBytes" : {
"documentation" : " This object provides the latest known metered size 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" : " This object provides the latest known metered size 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/** This object provides the latest known metered size 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 This object provides the latest known metered size 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" : "/** This object provides the latest known metered size 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 This object provides the latest known metered size 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" : "/** This object provides the latest known metered size 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 This object provides the latest known metered size 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" : "/** This object provides the latest known metered size 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 This object provides the latest known metered size 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.*/"
}
}
},
"CreateMountTargetResult" : {
"c2jName" : "MountTargetDescription",
"documentation" : "This object provides 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" : "The AWS account ID that owns the resource.
",
"name" : "OwnerId",
"c2jName" : "OwnerId",
"c2jShape" : "AwsAccountId",
"variable" : {
"variableName" : "ownerId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The AWS account ID that owns the resource.
\n@param ownerId The AWS account ID that owns the resource.*/",
"getterDocumentation" : "/**The AWS account ID that owns the resource.
\n@return The AWS account ID that owns the resource.*/",
"fluentSetterDocumentation" : "/**The AWS account ID that owns the resource.
\n@param ownerId The AWS account ID that owns the resource.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The AWS account ID that owns the resource.
\n@param ownerId The AWS account ID that owns the resource.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The system-assigned mount target ID.
",
"name" : "MountTargetId",
"c2jName" : "MountTargetId",
"c2jShape" : "MountTargetId",
"variable" : {
"variableName" : "mountTargetId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The system-assigned mount target ID.
\n@param mountTargetId The system-assigned mount target ID.*/",
"getterDocumentation" : "/**The system-assigned mount target ID.
\n@return The system-assigned mount target ID.*/",
"fluentSetterDocumentation" : "/**The system-assigned mount target ID.
\n@param mountTargetId The system-assigned mount target ID.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The system-assigned mount target ID.
\n@param mountTargetId The system-assigned mount target ID.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The 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" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ID of the file system for which the mount target is intended.
\n@param fileSystemId The ID of the file system for which the mount target is intended.*/",
"getterDocumentation" : "/**The ID of the file system for which the mount target is intended.
\n@return The ID of the file system for which the mount target is intended.*/",
"fluentSetterDocumentation" : "/**The ID of the file system for which the mount target is intended.
\n@param fileSystemId The 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" : "/**The ID of the file system for which the mount target is intended.
\n@param fileSystemId The 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" : "The ID of the subnet that the mount target is in.
",
"name" : "SubnetId",
"c2jName" : "SubnetId",
"c2jShape" : "SubnetId",
"variable" : {
"variableName" : "subnetId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The ID of the subnet that the mount target is 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ID of the subnet that the mount target is in.
\n@param subnetId The ID of the subnet that the mount target is in.*/",
"getterDocumentation" : "/**The ID of the subnet that the mount target is in.
\n@return The ID of the subnet that the mount target is in.*/",
"fluentSetterDocumentation" : "/**The ID of the subnet that the mount target is in.
\n@param subnetId The ID of the subnet that the mount target is in.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The ID of the subnet that the mount target is in.
\n@param subnetId The ID of the subnet that the mount target is in.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The lifecycle state the mount target is in.
",
"name" : "LifeCycleState",
"c2jName" : "LifeCycleState",
"c2jShape" : "LifeCycleState",
"variable" : {
"variableName" : "lifeCycleState",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The lifecycle state the mount target is in.
",
"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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "LifeCycleState",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The lifecycle state the mount target is in.
\n@param lifeCycleState The lifecycle state the mount target is in.\n@see LifeCycleState*/",
"getterDocumentation" : "/**The lifecycle state the mount target is in.
\n@return The lifecycle state the mount target is in.\n@see LifeCycleState*/",
"fluentSetterDocumentation" : "/**The lifecycle state the mount target is in.
\n@param lifeCycleState The lifecycle state the mount target is in.\n@return Returns a reference to this object so that method calls can be chained together.\n@see LifeCycleState*/",
"varargSetterDocumentation" : "/**The lifecycle state the mount target is in.
\n@param lifeCycleState The lifecycle state the mount target is in.\n@return Returns a reference to this object so that method calls can be chained together.\n@see LifeCycleState*/"
}, {
"documentation" : "The 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" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The address at which the file system may be mounted via the mount target.
\n@param ipAddress The address at which the file system may be mounted via the mount target.*/",
"getterDocumentation" : "/**The address at which the file system may be mounted via the mount target.
\n@return The address at which the file system may be mounted via the mount target.*/",
"fluentSetterDocumentation" : "/**The address at which the file system may be mounted via the mount target.
\n@param ipAddress The 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" : "/**The address at which the file system may be mounted via the mount target.
\n@param ipAddress The 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" : "The 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" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ID of the network interface that Amazon EFS created when it created the mount target.
\n@param networkInterfaceId The ID of the network interface that Amazon EFS created when it created the mount target.*/",
"getterDocumentation" : "/**The ID of the network interface that Amazon EFS created when it created the mount target.
\n@return The ID of the network interface that Amazon EFS created when it created the mount target.*/",
"fluentSetterDocumentation" : "/**The ID of the network interface that Amazon EFS created when it created the mount target.
\n@param networkInterfaceId The 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" : "/**The ID of the network interface that Amazon EFS created when it created the mount target.
\n@param networkInterfaceId The 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" : {
"FileSystemId" : {
"documentation" : "The 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" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ID of the file system for which the mount target is intended.
\n@param fileSystemId The ID of the file system for which the mount target is intended.*/",
"getterDocumentation" : "/**The ID of the file system for which the mount target is intended.
\n@return The ID of the file system for which the mount target is intended.*/",
"fluentSetterDocumentation" : "/**The ID of the file system for which the mount target is intended.
\n@param fileSystemId The 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" : "/**The ID of the file system for which the mount target is intended.
\n@param fileSystemId The 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.*/"
},
"MountTargetId" : {
"documentation" : "The system-assigned mount target ID.
",
"name" : "MountTargetId",
"c2jName" : "MountTargetId",
"c2jShape" : "MountTargetId",
"variable" : {
"variableName" : "mountTargetId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The system-assigned mount target ID.
\n@param mountTargetId The system-assigned mount target ID.*/",
"getterDocumentation" : "/**The system-assigned mount target ID.
\n@return The system-assigned mount target ID.*/",
"fluentSetterDocumentation" : "/**The system-assigned mount target ID.
\n@param mountTargetId The system-assigned mount target ID.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The system-assigned mount target ID.
\n@param mountTargetId The system-assigned mount target ID.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"LifeCycleState" : {
"documentation" : "The lifecycle state the mount target is in.
",
"name" : "LifeCycleState",
"c2jName" : "LifeCycleState",
"c2jShape" : "LifeCycleState",
"variable" : {
"variableName" : "lifeCycleState",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The lifecycle state the mount target is in.
",
"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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "LifeCycleState",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The lifecycle state the mount target is in.
\n@param lifeCycleState The lifecycle state the mount target is in.\n@see LifeCycleState*/",
"getterDocumentation" : "/**The lifecycle state the mount target is in.
\n@return The lifecycle state the mount target is in.\n@see LifeCycleState*/",
"fluentSetterDocumentation" : "/**The lifecycle state the mount target is in.
\n@param lifeCycleState The lifecycle state the mount target is in.\n@return Returns a reference to this object so that method calls can be chained together.\n@see LifeCycleState*/",
"varargSetterDocumentation" : "/**The lifecycle state the mount target is in.
\n@param lifeCycleState The lifecycle state the mount target is in.\n@return Returns a reference to this object so that method calls can be chained together.\n@see LifeCycleState*/"
},
"SubnetId" : {
"documentation" : "The ID of the subnet that the mount target is in.
",
"name" : "SubnetId",
"c2jName" : "SubnetId",
"c2jShape" : "SubnetId",
"variable" : {
"variableName" : "subnetId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The ID of the subnet that the mount target is 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ID of the subnet that the mount target is in.
\n@param subnetId The ID of the subnet that the mount target is in.*/",
"getterDocumentation" : "/**The ID of the subnet that the mount target is in.
\n@return The ID of the subnet that the mount target is in.*/",
"fluentSetterDocumentation" : "/**The ID of the subnet that the mount target is in.
\n@param subnetId The ID of the subnet that the mount target is in.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The ID of the subnet that the mount target is in.
\n@param subnetId The ID of the subnet that the mount target is in.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"OwnerId" : {
"documentation" : "The AWS account ID that owns the resource.
",
"name" : "OwnerId",
"c2jName" : "OwnerId",
"c2jShape" : "AwsAccountId",
"variable" : {
"variableName" : "ownerId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The AWS account ID that owns the resource.
\n@param ownerId The AWS account ID that owns the resource.*/",
"getterDocumentation" : "/**The AWS account ID that owns the resource.
\n@return The AWS account ID that owns the resource.*/",
"fluentSetterDocumentation" : "/**The AWS account ID that owns the resource.
\n@param ownerId The AWS account ID that owns the resource.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The AWS account ID that owns the resource.
\n@param ownerId The AWS account ID that owns the resource.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"IpAddress" : {
"documentation" : "The 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" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The address at which the file system may be mounted via the mount target.
\n@param ipAddress The address at which the file system may be mounted via the mount target.*/",
"getterDocumentation" : "/**The address at which the file system may be mounted via the mount target.
\n@return The address at which the file system may be mounted via the mount target.*/",
"fluentSetterDocumentation" : "/**The address at which the file system may be mounted via the mount target.
\n@param ipAddress The 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" : "/**The address at which the file system may be mounted via the mount target.
\n@param ipAddress The 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.*/"
},
"NetworkInterfaceId" : {
"documentation" : "The 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" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ID of the network interface that Amazon EFS created when it created the mount target.
\n@param networkInterfaceId The ID of the network interface that Amazon EFS created when it created the mount target.*/",
"getterDocumentation" : "/**The ID of the network interface that Amazon EFS created when it created the mount target.
\n@return The ID of the network interface that Amazon EFS created when it created the mount target.*/",
"fluentSetterDocumentation" : "/**The ID of the network interface that Amazon EFS created when it created the mount target.
\n@param networkInterfaceId The 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" : "/**The ID of the network interface that Amazon EFS created when it created the mount target.
\n@param networkInterfaceId The 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.*/"
}
}
},
"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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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.*/"
}
}
},
"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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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 pair of key and value. The allowed characters in keys and values are letters, whitespace, and numbers, representable in UTF-8, and the characters '+', '-', '=', '.', '_', ':', and '/'.
",
"shapeName" : "Tag",
"deprecated" : false,
"required" : [ "Key", "Value" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "Tag key, a string. The key must not start with \"aws:\".
",
"name" : "Key",
"c2jName" : "Key",
"c2jShape" : "TagKey",
"variable" : {
"variableName" : "key",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Tag key, a string. The key must not 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Tag key, a string. The key must not start with \"aws:\".
\n@param key Tag key, a string. The key must not start with \"aws:\".*/",
"getterDocumentation" : "/**Tag key, a string. The key must not start with \"aws:\".
\n@return Tag key, a string. The key must not start with \"aws:\".*/",
"fluentSetterDocumentation" : "/**Tag key, a string. The key must not start with \"aws:\".
\n@param key Tag key, a string. The key must not start with \"aws:\".\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Tag key, a string. The key must not start with \"aws:\".
\n@param key Tag key, a string. The key must not 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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, a string. The key must not start with \"aws:\".
",
"name" : "Key",
"c2jName" : "Key",
"c2jShape" : "TagKey",
"variable" : {
"variableName" : "key",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Tag key, a string. The key must not 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Tag key, a string. The key must not start with \"aws:\".
\n@param key Tag key, a string. The key must not start with \"aws:\".*/",
"getterDocumentation" : "/**Tag key, a string. The key must not start with \"aws:\".
\n@return Tag key, a string. The key must not start with \"aws:\".*/",
"fluentSetterDocumentation" : "/**Tag key, a string. The key must not start with \"aws:\".
\n@param key Tag key, a string. The key must not start with \"aws:\".\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Tag key, a string. The key must not start with \"aws:\".
\n@param key Tag key, a string. The key must not start with \"aws:\".\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,
"statusCode" : false,
"queryString" : true,
"uri" : false,
"header" : false
},
"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. String. Opaque pagination token returned from a previous DescribeMountTargets
operation. 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. String. Opaque pagination token returned from a previous DescribeMountTargets
operation. 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,
"statusCode" : false,
"queryString" : true,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Optional. String. Opaque pagination token returned from a previous DescribeMountTargets
operation. If present, it specifies to continue the list from where the previous returning call left off.
\n@param marker Optional. String. Opaque pagination token returned from a previous DescribeMountTargets
operation. If present, it specifies to continue the list from where the previous returning call left off.*/",
"getterDocumentation" : "/**Optional. String. Opaque pagination token returned from a previous DescribeMountTargets
operation. If present, it specifies to continue the list from where the previous returning call left off.
\n@return Optional. String. Opaque pagination token returned from a previous DescribeMountTargets
operation. If present, it specifies to continue the list from where the previous returning call left off.*/",
"fluentSetterDocumentation" : "/**Optional. String. Opaque pagination token returned from a previous DescribeMountTargets
operation. If present, it specifies to continue the list from where the previous returning call left off.
\n@param marker Optional. String. Opaque pagination token returned from a previous DescribeMountTargets
operation. 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. String. Opaque pagination token returned from a previous DescribeMountTargets
operation. If present, it specifies to continue the list from where the previous returning call left off.
\n@param marker Optional. String. Opaque pagination token returned from a previous DescribeMountTargets
operation. 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. String. The ID of the file system whose mount targets you want to list. 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. String. The ID of the file system whose mount targets you want to list. 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,
"statusCode" : false,
"queryString" : true,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Optional. String. The ID of the file system whose mount targets you want to list. It must be included in your request if MountTargetId
is not included.
\n@param fileSystemId Optional. String. The ID of the file system whose mount targets you want to list. It must be included in your request if MountTargetId
is not included.*/",
"getterDocumentation" : "/**Optional. String. The ID of the file system whose mount targets you want to list. It must be included in your request if MountTargetId
is not included.
\n@return Optional. String. The ID of the file system whose mount targets you want to list. It must be included in your request if MountTargetId
is not included.*/",
"fluentSetterDocumentation" : "/**Optional. String. The ID of the file system whose mount targets you want to list. It must be included in your request if MountTargetId
is not included.
\n@param fileSystemId Optional. String. The ID of the file system whose mount targets you want to list. 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. String. The ID of the file system whose mount targets you want to list. It must be included in your request if MountTargetId
is not included.
\n@param fileSystemId Optional. String. The ID of the file system whose mount targets you want to list. 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. String. The ID of the mount target that you want to have described. 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. String. The ID of the mount target that you want to have described. 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,
"statusCode" : false,
"queryString" : true,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Optional. String. The ID of the mount target that you want to have described. It must be included in your request if FileSystemId
is not included.
\n@param mountTargetId Optional. String. The ID of the mount target that you want to have described. It must be included in your request if FileSystemId
is not included.*/",
"getterDocumentation" : "/**Optional. String. The ID of the mount target that you want to have described. It must be included in your request if FileSystemId
is not included.
\n@return Optional. String. The ID of the mount target that you want to have described. It must be included in your request if FileSystemId
is not included.*/",
"fluentSetterDocumentation" : "/**Optional. String. The ID of the mount target that you want to have described. It must be included in your request if FileSystemId
is not included.
\n@param mountTargetId Optional. String. The ID of the mount target that you want to have described. 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. String. The ID of the mount target that you want to have described. It must be included in your request if FileSystemId
is not included.
\n@param mountTargetId Optional. String. The ID of the mount target that you want to have described. 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" : {
"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,
"statusCode" : false,
"queryString" : true,
"uri" : false,
"header" : false
},
"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.*/"
},
"FileSystemId" : {
"documentation" : "Optional. String. The ID of the file system whose mount targets you want to list. 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. String. The ID of the file system whose mount targets you want to list. 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,
"statusCode" : false,
"queryString" : true,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Optional. String. The ID of the file system whose mount targets you want to list. It must be included in your request if MountTargetId
is not included.
\n@param fileSystemId Optional. String. The ID of the file system whose mount targets you want to list. It must be included in your request if MountTargetId
is not included.*/",
"getterDocumentation" : "/**Optional. String. The ID of the file system whose mount targets you want to list. It must be included in your request if MountTargetId
is not included.
\n@return Optional. String. The ID of the file system whose mount targets you want to list. It must be included in your request if MountTargetId
is not included.*/",
"fluentSetterDocumentation" : "/**Optional. String. The ID of the file system whose mount targets you want to list. It must be included in your request if MountTargetId
is not included.
\n@param fileSystemId Optional. String. The ID of the file system whose mount targets you want to list. 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. String. The ID of the file system whose mount targets you want to list. It must be included in your request if MountTargetId
is not included.
\n@param fileSystemId Optional. String. The ID of the file system whose mount targets you want to list. 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.*/"
},
"MountTargetId" : {
"documentation" : "Optional. String. The ID of the mount target that you want to have described. 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. String. The ID of the mount target that you want to have described. 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,
"statusCode" : false,
"queryString" : true,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Optional. String. The ID of the mount target that you want to have described. It must be included in your request if FileSystemId
is not included.
\n@param mountTargetId Optional. String. The ID of the mount target that you want to have described. It must be included in your request if FileSystemId
is not included.*/",
"getterDocumentation" : "/**Optional. String. The ID of the mount target that you want to have described. It must be included in your request if FileSystemId
is not included.
\n@return Optional. String. The ID of the mount target that you want to have described. It must be included in your request if FileSystemId
is not included.*/",
"fluentSetterDocumentation" : "/**Optional. String. The ID of the mount target that you want to have described. It must be included in your request if FileSystemId
is not included.
\n@param mountTargetId Optional. String. The ID of the mount target that you want to have described. 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. String. The ID of the mount target that you want to have described. It must be included in your request if FileSystemId
is not included.
\n@param mountTargetId Optional. String. The ID of the mount target that you want to have described. 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.*/"
},
"Marker" : {
"documentation" : "Optional. String. Opaque pagination token returned from a previous DescribeMountTargets
operation. 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. String. Opaque pagination token returned from a previous DescribeMountTargets
operation. 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,
"statusCode" : false,
"queryString" : true,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Optional. String. Opaque pagination token returned from a previous DescribeMountTargets
operation. If present, it specifies to continue the list from where the previous returning call left off.
\n@param marker Optional. String. Opaque pagination token returned from a previous DescribeMountTargets
operation. If present, it specifies to continue the list from where the previous returning call left off.*/",
"getterDocumentation" : "/**Optional. String. Opaque pagination token returned from a previous DescribeMountTargets
operation. If present, it specifies to continue the list from where the previous returning call left off.
\n@return Optional. String. Opaque pagination token returned from a previous DescribeMountTargets
operation. If present, it specifies to continue the list from where the previous returning call left off.*/",
"fluentSetterDocumentation" : "/**Optional. String. Opaque pagination token returned from a previous DescribeMountTargets
operation. If present, it specifies to continue the list from where the previous returning call left off.
\n@param marker Optional. String. Opaque pagination token returned from a previous DescribeMountTargets
operation. 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. String. Opaque pagination token returned from a previous DescribeMountTargets
operation. If present, it specifies to continue the list from where the previous returning call left off.
\n@param marker Optional. String. Opaque pagination token returned from a previous DescribeMountTargets
operation. 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.*/"
}
}
},
"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" : { }
},
"MountTargetDescription" : {
"c2jName" : "MountTargetDescription",
"documentation" : "This object provides 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" : "The AWS account ID that owns the resource.
",
"name" : "OwnerId",
"c2jName" : "OwnerId",
"c2jShape" : "AwsAccountId",
"variable" : {
"variableName" : "ownerId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The AWS account ID that owns the resource.
\n@param ownerId The AWS account ID that owns the resource.*/",
"getterDocumentation" : "/**The AWS account ID that owns the resource.
\n@return The AWS account ID that owns the resource.*/",
"fluentSetterDocumentation" : "/**The AWS account ID that owns the resource.
\n@param ownerId The AWS account ID that owns the resource.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The AWS account ID that owns the resource.
\n@param ownerId The AWS account ID that owns the resource.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The system-assigned mount target ID.
",
"name" : "MountTargetId",
"c2jName" : "MountTargetId",
"c2jShape" : "MountTargetId",
"variable" : {
"variableName" : "mountTargetId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The system-assigned mount target ID.
\n@param mountTargetId The system-assigned mount target ID.*/",
"getterDocumentation" : "/**The system-assigned mount target ID.
\n@return The system-assigned mount target ID.*/",
"fluentSetterDocumentation" : "/**The system-assigned mount target ID.
\n@param mountTargetId The system-assigned mount target ID.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The system-assigned mount target ID.
\n@param mountTargetId The system-assigned mount target ID.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The 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" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ID of the file system for which the mount target is intended.
\n@param fileSystemId The ID of the file system for which the mount target is intended.*/",
"getterDocumentation" : "/**The ID of the file system for which the mount target is intended.
\n@return The ID of the file system for which the mount target is intended.*/",
"fluentSetterDocumentation" : "/**The ID of the file system for which the mount target is intended.
\n@param fileSystemId The 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" : "/**The ID of the file system for which the mount target is intended.
\n@param fileSystemId The 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" : "The ID of the subnet that the mount target is in.
",
"name" : "SubnetId",
"c2jName" : "SubnetId",
"c2jShape" : "SubnetId",
"variable" : {
"variableName" : "subnetId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The ID of the subnet that the mount target is 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ID of the subnet that the mount target is in.
\n@param subnetId The ID of the subnet that the mount target is in.*/",
"getterDocumentation" : "/**The ID of the subnet that the mount target is in.
\n@return The ID of the subnet that the mount target is in.*/",
"fluentSetterDocumentation" : "/**The ID of the subnet that the mount target is in.
\n@param subnetId The ID of the subnet that the mount target is in.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The ID of the subnet that the mount target is in.
\n@param subnetId The ID of the subnet that the mount target is in.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The lifecycle state the mount target is in.
",
"name" : "LifeCycleState",
"c2jName" : "LifeCycleState",
"c2jShape" : "LifeCycleState",
"variable" : {
"variableName" : "lifeCycleState",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The lifecycle state the mount target is in.
",
"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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "LifeCycleState",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The lifecycle state the mount target is in.
\n@param lifeCycleState The lifecycle state the mount target is in.\n@see LifeCycleState*/",
"getterDocumentation" : "/**The lifecycle state the mount target is in.
\n@return The lifecycle state the mount target is in.\n@see LifeCycleState*/",
"fluentSetterDocumentation" : "/**The lifecycle state the mount target is in.
\n@param lifeCycleState The lifecycle state the mount target is in.\n@return Returns a reference to this object so that method calls can be chained together.\n@see LifeCycleState*/",
"varargSetterDocumentation" : "/**The lifecycle state the mount target is in.
\n@param lifeCycleState The lifecycle state the mount target is in.\n@return Returns a reference to this object so that method calls can be chained together.\n@see LifeCycleState*/"
}, {
"documentation" : "The 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" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The address at which the file system may be mounted via the mount target.
\n@param ipAddress The address at which the file system may be mounted via the mount target.*/",
"getterDocumentation" : "/**The address at which the file system may be mounted via the mount target.
\n@return The address at which the file system may be mounted via the mount target.*/",
"fluentSetterDocumentation" : "/**The address at which the file system may be mounted via the mount target.
\n@param ipAddress The 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" : "/**The address at which the file system may be mounted via the mount target.
\n@param ipAddress The 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" : "The 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" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ID of the network interface that Amazon EFS created when it created the mount target.
\n@param networkInterfaceId The ID of the network interface that Amazon EFS created when it created the mount target.*/",
"getterDocumentation" : "/**The ID of the network interface that Amazon EFS created when it created the mount target.
\n@return The ID of the network interface that Amazon EFS created when it created the mount target.*/",
"fluentSetterDocumentation" : "/**The ID of the network interface that Amazon EFS created when it created the mount target.
\n@param networkInterfaceId The 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" : "/**The ID of the network interface that Amazon EFS created when it created the mount target.
\n@param networkInterfaceId The 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" : {
"FileSystemId" : {
"documentation" : "The 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" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ID of the file system for which the mount target is intended.
\n@param fileSystemId The ID of the file system for which the mount target is intended.*/",
"getterDocumentation" : "/**The ID of the file system for which the mount target is intended.
\n@return The ID of the file system for which the mount target is intended.*/",
"fluentSetterDocumentation" : "/**The ID of the file system for which the mount target is intended.
\n@param fileSystemId The 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" : "/**The ID of the file system for which the mount target is intended.
\n@param fileSystemId The 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.*/"
},
"MountTargetId" : {
"documentation" : "The system-assigned mount target ID.
",
"name" : "MountTargetId",
"c2jName" : "MountTargetId",
"c2jShape" : "MountTargetId",
"variable" : {
"variableName" : "mountTargetId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The system-assigned mount target ID.
\n@param mountTargetId The system-assigned mount target ID.*/",
"getterDocumentation" : "/**The system-assigned mount target ID.
\n@return The system-assigned mount target ID.*/",
"fluentSetterDocumentation" : "/**The system-assigned mount target ID.
\n@param mountTargetId The system-assigned mount target ID.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The system-assigned mount target ID.
\n@param mountTargetId The system-assigned mount target ID.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"LifeCycleState" : {
"documentation" : "The lifecycle state the mount target is in.
",
"name" : "LifeCycleState",
"c2jName" : "LifeCycleState",
"c2jShape" : "LifeCycleState",
"variable" : {
"variableName" : "lifeCycleState",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The lifecycle state the mount target is in.
",
"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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "LifeCycleState",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The lifecycle state the mount target is in.
\n@param lifeCycleState The lifecycle state the mount target is in.\n@see LifeCycleState*/",
"getterDocumentation" : "/**The lifecycle state the mount target is in.
\n@return The lifecycle state the mount target is in.\n@see LifeCycleState*/",
"fluentSetterDocumentation" : "/**The lifecycle state the mount target is in.
\n@param lifeCycleState The lifecycle state the mount target is in.\n@return Returns a reference to this object so that method calls can be chained together.\n@see LifeCycleState*/",
"varargSetterDocumentation" : "/**The lifecycle state the mount target is in.
\n@param lifeCycleState The lifecycle state the mount target is in.\n@return Returns a reference to this object so that method calls can be chained together.\n@see LifeCycleState*/"
},
"SubnetId" : {
"documentation" : "The ID of the subnet that the mount target is in.
",
"name" : "SubnetId",
"c2jName" : "SubnetId",
"c2jShape" : "SubnetId",
"variable" : {
"variableName" : "subnetId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The ID of the subnet that the mount target is 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ID of the subnet that the mount target is in.
\n@param subnetId The ID of the subnet that the mount target is in.*/",
"getterDocumentation" : "/**The ID of the subnet that the mount target is in.
\n@return The ID of the subnet that the mount target is in.*/",
"fluentSetterDocumentation" : "/**The ID of the subnet that the mount target is in.
\n@param subnetId The ID of the subnet that the mount target is in.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The ID of the subnet that the mount target is in.
\n@param subnetId The ID of the subnet that the mount target is in.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"OwnerId" : {
"documentation" : "The AWS account ID that owns the resource.
",
"name" : "OwnerId",
"c2jName" : "OwnerId",
"c2jShape" : "AwsAccountId",
"variable" : {
"variableName" : "ownerId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The AWS account ID that owns the resource.
\n@param ownerId The AWS account ID that owns the resource.*/",
"getterDocumentation" : "/**The AWS account ID that owns the resource.
\n@return The AWS account ID that owns the resource.*/",
"fluentSetterDocumentation" : "/**The AWS account ID that owns the resource.
\n@param ownerId The AWS account ID that owns the resource.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The AWS account ID that owns the resource.
\n@param ownerId The AWS account ID that owns the resource.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"IpAddress" : {
"documentation" : "The 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" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The address at which the file system may be mounted via the mount target.
\n@param ipAddress The address at which the file system may be mounted via the mount target.*/",
"getterDocumentation" : "/**The address at which the file system may be mounted via the mount target.
\n@return The address at which the file system may be mounted via the mount target.*/",
"fluentSetterDocumentation" : "/**The address at which the file system may be mounted via the mount target.
\n@param ipAddress The 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" : "/**The address at which the file system may be mounted via the mount target.
\n@param ipAddress The 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.*/"
},
"NetworkInterfaceId" : {
"documentation" : "The 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" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The ID of the network interface that Amazon EFS created when it created the mount target.
\n@param networkInterfaceId The ID of the network interface that Amazon EFS created when it created the mount target.*/",
"getterDocumentation" : "/**The ID of the network interface that Amazon EFS created when it created the mount target.
\n@return The ID of the network interface that Amazon EFS created when it created the mount target.*/",
"fluentSetterDocumentation" : "/**The ID of the network interface that Amazon EFS created when it created the mount target.
\n@param networkInterfaceId The 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" : "/**The ID of the network interface that Amazon EFS created when it created the mount target.
\n@param networkInterfaceId The 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.*/"
}
}
},
"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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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.
\nNOTE: 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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" : {
"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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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.
\nNOTE: 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.*/"
},
"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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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.*/"
}
}
},
"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, go to 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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.*/"
}
}
},
"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" : { }
},
"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" : { }
},
"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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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.*/"
}
}
},
"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" : { }
},
"DescribeFileSystemsResult" : {
"c2jName" : "DescribeFileSystemsResponse",
"documentation" : "",
"shapeName" : "DescribeFileSystemsResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "A string, present if provided by caller in the request.
",
"name" : "Marker",
"c2jName" : "Marker",
"c2jShape" : "Marker",
"variable" : {
"variableName" : "marker",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A string, present if provided by caller in the request.
",
"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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A string, present if provided by caller in the request.
\n@param marker A string, present if provided by caller in the request.*/",
"getterDocumentation" : "/**A string, present if provided by caller in the request.
\n@return A string, present if provided by caller in the request.*/",
"fluentSetterDocumentation" : "/**A string, present if provided by caller in the request.
\n@param marker A string, present if provided by caller in the request.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A string, present if provided by caller in the request.
\n@param marker A string, present if provided by caller in the request.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "An array of file system descriptions.
",
"name" : "FileSystems",
"c2jName" : "FileSystems",
"c2jShape" : "FileSystemDescriptions",
"variable" : {
"variableName" : "fileSystems",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "An 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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" : "/**An array of file system descriptions.
\n@param fileSystems An array of file system descriptions.*/",
"getterDocumentation" : "/**An array of file system descriptions.
\n@return An array of file system descriptions.*/",
"fluentSetterDocumentation" : "/**An array of file system descriptions.
\n@param fileSystems An array of file system descriptions.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**An array of file system descriptions.
\nNOTE: 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 An array of file system descriptions.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "A string, present if there are more file systems than returned in the response. 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" : "A string, present if there are more file systems than returned in the response. 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A string, present if there are more file systems than returned in the response. You can use the NextMarker
in the subsequent request to fetch the descriptions.
\n@param nextMarker A string, present if there are more file systems than returned in the response. You can use the NextMarker
in the subsequent request to fetch the descriptions.*/",
"getterDocumentation" : "/**A string, present if there are more file systems than returned in the response. You can use the NextMarker
in the subsequent request to fetch the descriptions.
\n@return A string, present if there are more file systems than returned in the response. You can use the NextMarker
in the subsequent request to fetch the descriptions.*/",
"fluentSetterDocumentation" : "/**A string, present if there are more file systems than returned in the response. You can use the NextMarker
in the subsequent request to fetch the descriptions.
\n@param nextMarker A string, present if there are more file systems than returned in the response. 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" : "/**A string, present if there are more file systems than returned in the response. You can use the NextMarker
in the subsequent request to fetch the descriptions.
\n@param nextMarker A string, present if there are more file systems than returned in the response. 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" : "An array of file system descriptions.
",
"name" : "FileSystems",
"c2jName" : "FileSystems",
"c2jShape" : "FileSystemDescriptions",
"variable" : {
"variableName" : "fileSystems",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "An 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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" : "/**An array of file system descriptions.
\n@param fileSystems An array of file system descriptions.*/",
"getterDocumentation" : "/**An array of file system descriptions.
\n@return An array of file system descriptions.*/",
"fluentSetterDocumentation" : "/**An array of file system descriptions.
\n@param fileSystems An array of file system descriptions.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**An array of file system descriptions.
\nNOTE: 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 An array of file system descriptions.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Marker" : {
"documentation" : "A string, present if provided by caller in the request.
",
"name" : "Marker",
"c2jName" : "Marker",
"c2jShape" : "Marker",
"variable" : {
"variableName" : "marker",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A string, present if provided by caller in the request.
",
"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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A string, present if provided by caller in the request.
\n@param marker A string, present if provided by caller in the request.*/",
"getterDocumentation" : "/**A string, present if provided by caller in the request.
\n@return A string, present if provided by caller in the request.*/",
"fluentSetterDocumentation" : "/**A string, present if provided by caller in the request.
\n@param marker A string, present if provided by caller in the request.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A string, present if provided by caller in the request.
\n@param marker A string, present if provided by caller in the request.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"NextMarker" : {
"documentation" : "A string, present if there are more file systems than returned in the response. 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" : "A string, present if there are more file systems than returned in the response. 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A string, present if there are more file systems than returned in the response. You can use the NextMarker
in the subsequent request to fetch the descriptions.
\n@param nextMarker A string, present if there are more file systems than returned in the response. You can use the NextMarker
in the subsequent request to fetch the descriptions.*/",
"getterDocumentation" : "/**A string, present if there are more file systems than returned in the response. You can use the NextMarker
in the subsequent request to fetch the descriptions.
\n@return A string, present if there are more file systems than returned in the response. You can use the NextMarker
in the subsequent request to fetch the descriptions.*/",
"fluentSetterDocumentation" : "/**A string, present if there are more file systems than returned in the response. You can use the NextMarker
in the subsequent request to fetch the descriptions.
\n@param nextMarker A string, present if there are more file systems than returned in the response. 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" : "/**A string, present if there are more file systems than returned in the response. You can use the NextMarker
in the subsequent request to fetch the descriptions.
\n@param nextMarker A string, present if there are more file systems than returned in the response. 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.*/"
}
}
},
"DescribeFileSystemsRequest" : {
"c2jName" : "DescribeFileSystemsRequest",
"documentation" : "",
"shapeName" : "DescribeFileSystemsRequest",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "Optional integer. Specifies the maximum number of file systems to return in the response. This parameter value must be greater than 0. The number of items Amazon EFS returns will be 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 integer. Specifies the maximum number of file systems to return in the response. This parameter value must be greater than 0. The number of items Amazon EFS returns will be 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,
"statusCode" : false,
"queryString" : true,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Optional integer. Specifies the maximum number of file systems to return in the response. This parameter value must be greater than 0. The number of items Amazon EFS returns will be 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 integer. Specifies the maximum number of file systems to return in the response. This parameter value must be greater than 0. The number of items Amazon EFS returns will be the minimum of the MaxItems
parameter specified in the request and the service's internal maximum number of items per page.*/",
"getterDocumentation" : "/**Optional integer. Specifies the maximum number of file systems to return in the response. This parameter value must be greater than 0. The number of items Amazon EFS returns will be the minimum of the MaxItems
parameter specified in the request and the service's internal maximum number of items per page.
\n@return Optional integer. Specifies the maximum number of file systems to return in the response. This parameter value must be greater than 0. The number of items Amazon EFS returns will be the minimum of the MaxItems
parameter specified in the request and the service's internal maximum number of items per page.*/",
"fluentSetterDocumentation" : "/**Optional integer. Specifies the maximum number of file systems to return in the response. This parameter value must be greater than 0. The number of items Amazon EFS returns will be 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 integer. Specifies the maximum number of file systems to return in the response. This parameter value must be greater than 0. The number of items Amazon EFS returns will be 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 integer. Specifies the maximum number of file systems to return in the response. This parameter value must be greater than 0. The number of items Amazon EFS returns will be 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 integer. Specifies the maximum number of file systems to return in the response. This parameter value must be greater than 0. The number of items Amazon EFS returns will be 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 string. Opaque pagination token returned from a previous DescribeFileSystems
operation. 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 string. Opaque pagination token returned from a previous DescribeFileSystems
operation. 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,
"statusCode" : false,
"queryString" : true,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/** Optional string. Opaque pagination token returned from a previous DescribeFileSystems
operation. If present, specifies to continue the list from where the returning call had left off.
\n@param marker Optional string. Opaque pagination token returned from a previous DescribeFileSystems
operation. If present, specifies to continue the list from where the returning call had left off.*/",
"getterDocumentation" : "/** Optional string. Opaque pagination token returned from a previous DescribeFileSystems
operation. If present, specifies to continue the list from where the returning call had left off.
\n@return Optional string. Opaque pagination token returned from a previous DescribeFileSystems
operation. If present, specifies to continue the list from where the returning call had left off.*/",
"fluentSetterDocumentation" : "/** Optional string. Opaque pagination token returned from a previous DescribeFileSystems
operation. If present, specifies to continue the list from where the returning call had left off.
\n@param marker Optional string. Opaque pagination token returned from a previous DescribeFileSystems
operation. 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 string. Opaque pagination token returned from a previous DescribeFileSystems
operation. If present, specifies to continue the list from where the returning call had left off.
\n@param marker Optional string. Opaque pagination token returned from a previous DescribeFileSystems
operation. 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 string. Restricts the list to the file system with this creation token (you specify a creation token at the time of creating an Amazon EFS file system).
",
"name" : "CreationToken",
"c2jName" : "CreationToken",
"c2jShape" : "CreationToken",
"variable" : {
"variableName" : "creationToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : " Optional string. Restricts the list to the file system with this creation token (you specify a creation token at the time of creating 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,
"statusCode" : false,
"queryString" : true,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/** Optional string. Restricts the list to the file system with this creation token (you specify a creation token at the time of creating an Amazon EFS file system).
\n@param creationToken Optional string. Restricts the list to the file system with this creation token (you specify a creation token at the time of creating an Amazon EFS file system).*/",
"getterDocumentation" : "/** Optional string. Restricts the list to the file system with this creation token (you specify a creation token at the time of creating an Amazon EFS file system).
\n@return Optional string. Restricts the list to the file system with this creation token (you specify a creation token at the time of creating an Amazon EFS file system).*/",
"fluentSetterDocumentation" : "/** Optional string. Restricts the list to the file system with this creation token (you specify a creation token at the time of creating an Amazon EFS file system).
\n@param creationToken Optional string. Restricts the list to the file system with this creation token (you specify a creation token at the time of creating an Amazon EFS file system).\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/** Optional string. Restricts the list to the file system with this creation token (you specify a creation token at the time of creating an Amazon EFS file system).
\n@param creationToken Optional string. Restricts the list to the file system with this creation token (you specify a creation token at the time of creating an Amazon EFS file system).\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "Optional string. File system ID whose description you want to retrieve.
",
"name" : "FileSystemId",
"c2jName" : "FileSystemId",
"c2jShape" : "FileSystemId",
"variable" : {
"variableName" : "fileSystemId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Optional string. File system ID whose description 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" : "querystring",
"flattened" : false,
"statusCode" : false,
"queryString" : true,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Optional string. File system ID whose description you want to retrieve.
\n@param fileSystemId Optional string. File system ID whose description you want to retrieve.*/",
"getterDocumentation" : "/**Optional string. File system ID whose description you want to retrieve.
\n@return Optional string. File system ID whose description you want to retrieve.*/",
"fluentSetterDocumentation" : "/**Optional string. File system ID whose description you want to retrieve.
\n@param fileSystemId Optional string. File system ID whose description you want to retrieve.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Optional string. File system ID whose description you want to retrieve.
\n@param fileSystemId Optional string. File system ID whose description you want to retrieve.\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" : {
"MaxItems" : {
"documentation" : "Optional integer. Specifies the maximum number of file systems to return in the response. This parameter value must be greater than 0. The number of items Amazon EFS returns will be 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 integer. Specifies the maximum number of file systems to return in the response. This parameter value must be greater than 0. The number of items Amazon EFS returns will be 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,
"statusCode" : false,
"queryString" : true,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Optional integer. Specifies the maximum number of file systems to return in the response. This parameter value must be greater than 0. The number of items Amazon EFS returns will be 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 integer. Specifies the maximum number of file systems to return in the response. This parameter value must be greater than 0. The number of items Amazon EFS returns will be the minimum of the MaxItems
parameter specified in the request and the service's internal maximum number of items per page.*/",
"getterDocumentation" : "/**Optional integer. Specifies the maximum number of file systems to return in the response. This parameter value must be greater than 0. The number of items Amazon EFS returns will be the minimum of the MaxItems
parameter specified in the request and the service's internal maximum number of items per page.
\n@return Optional integer. Specifies the maximum number of file systems to return in the response. This parameter value must be greater than 0. The number of items Amazon EFS returns will be the minimum of the MaxItems
parameter specified in the request and the service's internal maximum number of items per page.*/",
"fluentSetterDocumentation" : "/**Optional integer. Specifies the maximum number of file systems to return in the response. This parameter value must be greater than 0. The number of items Amazon EFS returns will be 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 integer. Specifies the maximum number of file systems to return in the response. This parameter value must be greater than 0. The number of items Amazon EFS returns will be 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 integer. Specifies the maximum number of file systems to return in the response. This parameter value must be greater than 0. The number of items Amazon EFS returns will be 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 integer. Specifies the maximum number of file systems to return in the response. This parameter value must be greater than 0. The number of items Amazon EFS returns will be 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.*/"
},
"FileSystemId" : {
"documentation" : "Optional string. File system ID whose description you want to retrieve.
",
"name" : "FileSystemId",
"c2jName" : "FileSystemId",
"c2jShape" : "FileSystemId",
"variable" : {
"variableName" : "fileSystemId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Optional string. File system ID whose description 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" : "querystring",
"flattened" : false,
"statusCode" : false,
"queryString" : true,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Optional string. File system ID whose description you want to retrieve.
\n@param fileSystemId Optional string. File system ID whose description you want to retrieve.*/",
"getterDocumentation" : "/**Optional string. File system ID whose description you want to retrieve.
\n@return Optional string. File system ID whose description you want to retrieve.*/",
"fluentSetterDocumentation" : "/**Optional string. File system ID whose description you want to retrieve.
\n@param fileSystemId Optional string. File system ID whose description you want to retrieve.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Optional string. File system ID whose description you want to retrieve.
\n@param fileSystemId Optional string. File system ID whose description you want to retrieve.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"CreationToken" : {
"documentation" : " Optional string. Restricts the list to the file system with this creation token (you specify a creation token at the time of creating an Amazon EFS file system).
",
"name" : "CreationToken",
"c2jName" : "CreationToken",
"c2jShape" : "CreationToken",
"variable" : {
"variableName" : "creationToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : " Optional string. Restricts the list to the file system with this creation token (you specify a creation token at the time of creating 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,
"statusCode" : false,
"queryString" : true,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/** Optional string. Restricts the list to the file system with this creation token (you specify a creation token at the time of creating an Amazon EFS file system).
\n@param creationToken Optional string. Restricts the list to the file system with this creation token (you specify a creation token at the time of creating an Amazon EFS file system).*/",
"getterDocumentation" : "/** Optional string. Restricts the list to the file system with this creation token (you specify a creation token at the time of creating an Amazon EFS file system).
\n@return Optional string. Restricts the list to the file system with this creation token (you specify a creation token at the time of creating an Amazon EFS file system).*/",
"fluentSetterDocumentation" : "/** Optional string. Restricts the list to the file system with this creation token (you specify a creation token at the time of creating an Amazon EFS file system).
\n@param creationToken Optional string. Restricts the list to the file system with this creation token (you specify a creation token at the time of creating an Amazon EFS file system).\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/** Optional string. Restricts the list to the file system with this creation token (you specify a creation token at the time of creating an Amazon EFS file system).
\n@param creationToken Optional string. Restricts the list to the file system with this creation token (you specify a creation token at the time of creating an Amazon EFS file system).\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Marker" : {
"documentation" : " Optional string. Opaque pagination token returned from a previous DescribeFileSystems
operation. 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 string. Opaque pagination token returned from a previous DescribeFileSystems
operation. 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,
"statusCode" : false,
"queryString" : true,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/** Optional string. Opaque pagination token returned from a previous DescribeFileSystems
operation. If present, specifies to continue the list from where the returning call had left off.
\n@param marker Optional string. Opaque pagination token returned from a previous DescribeFileSystems
operation. If present, specifies to continue the list from where the returning call had left off.*/",
"getterDocumentation" : "/** Optional string. Opaque pagination token returned from a previous DescribeFileSystems
operation. If present, specifies to continue the list from where the returning call had left off.
\n@return Optional string. Opaque pagination token returned from a previous DescribeFileSystems
operation. If present, specifies to continue the list from where the returning call had left off.*/",
"fluentSetterDocumentation" : "/** Optional string. Opaque pagination token returned from a previous DescribeFileSystems
operation. If present, specifies to continue the list from where the returning call had left off.
\n@param marker Optional string. Opaque pagination token returned from a previous DescribeFileSystems
operation. 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 string. Opaque pagination token returned from a previous DescribeFileSystems
operation. If present, specifies to continue the list from where the returning call had left off.
\n@param marker Optional string. Opaque pagination token returned from a previous DescribeFileSystems
operation. 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.*/"
}
}
},
"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" : { }
},
"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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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.*/"
}
}
},
"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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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" : "String. The ID of the file system whose tags you want to delete.
",
"name" : "FileSystemId",
"c2jName" : "FileSystemId",
"c2jShape" : "FileSystemId",
"variable" : {
"variableName" : "fileSystemId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "String. The ID of the file system whose tags 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,
"statusCode" : false,
"queryString" : false,
"uri" : true,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**String. The ID of the file system whose tags you want to delete.
\n@param fileSystemId String. The ID of the file system whose tags you want to delete.*/",
"getterDocumentation" : "/**String. The ID of the file system whose tags you want to delete.
\n@return String. The ID of the file system whose tags you want to delete.*/",
"fluentSetterDocumentation" : "/**String. The ID of the file system whose tags you want to delete.
\n@param fileSystemId String. The ID of the file system whose tags you want to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**String. The ID of the file system whose tags you want to delete.
\n@param fileSystemId String. The ID of the file system whose tags you want to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "A 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" : "A 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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" : "/**A list of tag keys to delete.
\n@param tagKeys A list of tag keys to delete.*/",
"getterDocumentation" : "/**A list of tag keys to delete.
\n@return A list of tag keys to delete.*/",
"fluentSetterDocumentation" : "/**A list of tag keys to delete.
\n@param tagKeys A list of tag keys to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of tag keys to delete.
\nNOTE: 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 A 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" : "String. The ID of the file system whose tags you want to delete.
",
"name" : "FileSystemId",
"c2jName" : "FileSystemId",
"c2jShape" : "FileSystemId",
"variable" : {
"variableName" : "fileSystemId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "String. The ID of the file system whose tags 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,
"statusCode" : false,
"queryString" : false,
"uri" : true,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**String. The ID of the file system whose tags you want to delete.
\n@param fileSystemId String. The ID of the file system whose tags you want to delete.*/",
"getterDocumentation" : "/**String. The ID of the file system whose tags you want to delete.
\n@return String. The ID of the file system whose tags you want to delete.*/",
"fluentSetterDocumentation" : "/**String. The ID of the file system whose tags you want to delete.
\n@param fileSystemId String. The ID of the file system whose tags you want to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**String. The ID of the file system whose tags you want to delete.
\n@param fileSystemId String. The ID of the file system whose tags you want to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"TagKeys" : {
"documentation" : "A 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" : "A 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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" : "/**A list of tag keys to delete.
\n@param tagKeys A list of tag keys to delete.*/",
"getterDocumentation" : "/**A list of tag keys to delete.
\n@return A list of tag keys to delete.*/",
"fluentSetterDocumentation" : "/**A list of tag keys to delete.
\n@param tagKeys A list of tag keys to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of tag keys to delete.
\nNOTE: 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 A list of tag keys to delete.\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" : "String. The ID of the mount target to delete.
",
"name" : "MountTargetId",
"c2jName" : "MountTargetId",
"c2jShape" : "MountTargetId",
"variable" : {
"variableName" : "mountTargetId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "String. The ID of the mount target to delete.
",
"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,
"statusCode" : false,
"queryString" : false,
"uri" : true,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**String. The ID of the mount target to delete.
\n@param mountTargetId String. The ID of the mount target to delete.*/",
"getterDocumentation" : "/**String. The ID of the mount target to delete.
\n@return String. The ID of the mount target to delete.*/",
"fluentSetterDocumentation" : "/**String. The ID of the mount target to delete.
\n@param mountTargetId String. The ID of the mount target to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**String. The ID of the mount target to delete.
\n@param mountTargetId String. The ID of the mount target to delete.\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" : "String. The ID of the mount target to delete.
",
"name" : "MountTargetId",
"c2jName" : "MountTargetId",
"c2jShape" : "MountTargetId",
"variable" : {
"variableName" : "mountTargetId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "String. The ID of the mount target to delete.
",
"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,
"statusCode" : false,
"queryString" : false,
"uri" : true,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**String. The ID of the mount target to delete.
\n@param mountTargetId String. The ID of the mount target to delete.*/",
"getterDocumentation" : "/**String. The ID of the mount target to delete.
\n@return String. The ID of the mount target to delete.*/",
"fluentSetterDocumentation" : "/**String. The ID of the mount target to delete.
\n@param mountTargetId String. The ID of the mount target to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**String. The ID of the mount target to delete.
\n@param mountTargetId String. The ID of the mount target to delete.\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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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" : "String. The ID of the file system whose tags you want to modify. This operation modifies only the tags and not the file system.
",
"name" : "FileSystemId",
"c2jName" : "FileSystemId",
"c2jShape" : "FileSystemId",
"variable" : {
"variableName" : "fileSystemId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "String. The ID of the file system whose tags you want to modify. This operation modifies only the tags and 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,
"statusCode" : false,
"queryString" : false,
"uri" : true,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**String. The ID of the file system whose tags you want to modify. This operation modifies only the tags and not the file system.
\n@param fileSystemId String. The ID of the file system whose tags you want to modify. This operation modifies only the tags and not the file system.*/",
"getterDocumentation" : "/**String. The ID of the file system whose tags you want to modify. This operation modifies only the tags and not the file system.
\n@return String. The ID of the file system whose tags you want to modify. This operation modifies only the tags and not the file system.*/",
"fluentSetterDocumentation" : "/**String. The ID of the file system whose tags you want to modify. This operation modifies only the tags and not the file system.
\n@param fileSystemId String. The ID of the file system whose tags you want to modify. This operation modifies only the tags and not the file system.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**String. The ID of the file system whose tags you want to modify. This operation modifies only the tags and not the file system.
\n@param fileSystemId String. The ID of the file system whose tags you want to modify. This operation modifies only the tags and not the file system.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : " An 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" : " An 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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" : "/** An array of Tag
objects to add. Each Tag
object is a key-value pair.
\n@param tags An array of Tag
objects to add. Each Tag
object is a key-value pair.*/",
"getterDocumentation" : "/** An array of Tag
objects to add. Each Tag
object is a key-value pair.
\n@return An array of Tag
objects to add. Each Tag
object is a key-value pair.*/",
"fluentSetterDocumentation" : "/** An array of Tag
objects to add. Each Tag
object is a key-value pair.
\n@param tags An 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" : "/** An array of Tag
objects to add. Each Tag
object is a key-value pair.
\nNOTE: 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 An 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" : {
"Tags" : {
"documentation" : " An 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" : " An 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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" : "/** An array of Tag
objects to add. Each Tag
object is a key-value pair.
\n@param tags An array of Tag
objects to add. Each Tag
object is a key-value pair.*/",
"getterDocumentation" : "/** An array of Tag
objects to add. Each Tag
object is a key-value pair.
\n@return An array of Tag
objects to add. Each Tag
object is a key-value pair.*/",
"fluentSetterDocumentation" : "/** An array of Tag
objects to add. Each Tag
object is a key-value pair.
\n@param tags An 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" : "/** An array of Tag
objects to add. Each Tag
object is a key-value pair.
\nNOTE: 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 An 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.*/"
},
"FileSystemId" : {
"documentation" : "String. The ID of the file system whose tags you want to modify. This operation modifies only the tags and not the file system.
",
"name" : "FileSystemId",
"c2jName" : "FileSystemId",
"c2jShape" : "FileSystemId",
"variable" : {
"variableName" : "fileSystemId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "String. The ID of the file system whose tags you want to modify. This operation modifies only the tags and 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,
"statusCode" : false,
"queryString" : false,
"uri" : true,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**String. The ID of the file system whose tags you want to modify. This operation modifies only the tags and not the file system.
\n@param fileSystemId String. The ID of the file system whose tags you want to modify. This operation modifies only the tags and not the file system.*/",
"getterDocumentation" : "/**String. The ID of the file system whose tags you want to modify. This operation modifies only the tags and not the file system.
\n@return String. The ID of the file system whose tags you want to modify. This operation modifies only the tags and not the file system.*/",
"fluentSetterDocumentation" : "/**String. The ID of the file system whose tags you want to modify. This operation modifies only the tags and not the file system.
\n@param fileSystemId String. The ID of the file system whose tags you want to modify. This operation modifies only the tags and not the file system.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**String. The ID of the file system whose tags you want to modify. This operation modifies only the tags and not the file system.
\n@param fileSystemId String. The ID of the file system whose tags you want to modify. This operation modifies only the tags and not the file system.\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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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.*/"
} ],
"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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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.*/"
}
}
},
"CreateFileSystemResult" : {
"c2jName" : "FileSystemDescription",
"documentation" : "This object provides description of a file system.
",
"shapeName" : "CreateFileSystemResult",
"deprecated" : false,
"required" : [ "OwnerId", "CreationToken", "FileSystemId", "CreationTime", "LifeCycleState", "NumberOfMountTargets", "SizeInBytes" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The 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" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The 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 The 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" : "/**The 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 The 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" : "/**The 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 The 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" : "/**The 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 The 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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" : "The file system ID assigned by Amazon EFS.
",
"name" : "FileSystemId",
"c2jName" : "FileSystemId",
"c2jShape" : "FileSystemId",
"variable" : {
"variableName" : "fileSystemId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The file system ID 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The file system ID assigned by Amazon EFS.
\n@param fileSystemId The file system ID assigned by Amazon EFS.*/",
"getterDocumentation" : "/**The file system ID assigned by Amazon EFS.
\n@return The file system ID assigned by Amazon EFS.*/",
"fluentSetterDocumentation" : "/**The file system ID assigned by Amazon EFS.
\n@param fileSystemId The file system ID assigned by Amazon EFS.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The file system ID assigned by Amazon EFS.
\n@param fileSystemId The file system ID assigned by Amazon EFS.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The time at which 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" : "The time at which 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The time at which the file system was created, in seconds, since 1970-01-01T00:00:00Z.
\n@param creationTime The time at which the file system was created, in seconds, since 1970-01-01T00:00:00Z.*/",
"getterDocumentation" : "/**The time at which the file system was created, in seconds, since 1970-01-01T00:00:00Z.
\n@return The time at which the file system was created, in seconds, since 1970-01-01T00:00:00Z.*/",
"fluentSetterDocumentation" : "/**The time at which the file system was created, in seconds, since 1970-01-01T00:00:00Z.
\n@param creationTime The time at which 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" : "/**The time at which the file system was created, in seconds, since 1970-01-01T00:00:00Z.
\n@param creationTime The time at which 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" : "A predefined string value that indicates the lifecycle phase of the file system.
",
"name" : "LifeCycleState",
"c2jName" : "LifeCycleState",
"c2jShape" : "LifeCycleState",
"variable" : {
"variableName" : "lifeCycleState",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A predefined string value that indicates the 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "LifeCycleState",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A predefined string value that indicates the lifecycle phase of the file system.
\n@param lifeCycleState A predefined string value that indicates the lifecycle phase of the file system.\n@see LifeCycleState*/",
"getterDocumentation" : "/**A predefined string value that indicates the lifecycle phase of the file system.
\n@return A predefined string value that indicates the lifecycle phase of the file system.\n@see LifeCycleState*/",
"fluentSetterDocumentation" : "/**A predefined string value that indicates the lifecycle phase of the file system.
\n@param lifeCycleState A predefined string value that indicates the 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" : "/**A predefined string value that indicates the lifecycle phase of the file system.
\n@param lifeCycleState A predefined string value that indicates the 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 (see CreateTags) including a \"Name\" tag. 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 (see CreateTags) including a \"Name\" tag. 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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 (see CreateTags) including a \"Name\" tag. 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 (see CreateTags) including a \"Name\" tag. 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 (see CreateTags) including a \"Name\" tag. 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 (see CreateTags) including a \"Name\" tag. 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 (see CreateTags) including a \"Name\" tag. 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 (see CreateTags) including a \"Name\" tag. 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 (see CreateTags) including a \"Name\" tag. 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 (see CreateTags) including a \"Name\" tag. 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" : "The current number of mount targets (see CreateMountTarget) the file system has.
",
"name" : "NumberOfMountTargets",
"c2jName" : "NumberOfMountTargets",
"c2jShape" : "MountTargetCount",
"variable" : {
"variableName" : "numberOfMountTargets",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The current number of mount targets (see CreateMountTarget) the file system has.
",
"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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The current number of mount targets (see CreateMountTarget) the file system has.
\n@param numberOfMountTargets The current number of mount targets (see CreateMountTarget) the file system has.*/",
"getterDocumentation" : "/**The current number of mount targets (see CreateMountTarget) the file system has.
\n@return The current number of mount targets (see CreateMountTarget) the file system has.*/",
"fluentSetterDocumentation" : "/**The current number of mount targets (see CreateMountTarget) the file system has.
\n@param numberOfMountTargets The current number of mount targets (see CreateMountTarget) the file system has.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The current number of mount targets (see CreateMountTarget) the file system has.
\n@param numberOfMountTargets The current number of mount targets (see CreateMountTarget) the file system has.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : " This object provides the latest known metered size 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" : " This object provides the latest known metered size 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/** This object provides the latest known metered size 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 This object provides the latest known metered size 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" : "/** This object provides the latest known metered size 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 This object provides the latest known metered size 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" : "/** This object provides the latest known metered size 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 This object provides the latest known metered size 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" : "/** This object provides the latest known metered size 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 This object provides the latest known metered size 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.*/"
} ],
"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" : {
"Name" : {
"documentation" : "You can add tags to a file system (see CreateTags) including a \"Name\" tag. 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 (see CreateTags) including a \"Name\" tag. 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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 (see CreateTags) including a \"Name\" tag. 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 (see CreateTags) including a \"Name\" tag. 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 (see CreateTags) including a \"Name\" tag. 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 (see CreateTags) including a \"Name\" tag. 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 (see CreateTags) including a \"Name\" tag. 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 (see CreateTags) including a \"Name\" tag. 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 (see CreateTags) including a \"Name\" tag. 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 (see CreateTags) including a \"Name\" tag. 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.*/"
},
"CreationTime" : {
"documentation" : "The time at which 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" : "The time at which 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The time at which the file system was created, in seconds, since 1970-01-01T00:00:00Z.
\n@param creationTime The time at which the file system was created, in seconds, since 1970-01-01T00:00:00Z.*/",
"getterDocumentation" : "/**The time at which the file system was created, in seconds, since 1970-01-01T00:00:00Z.
\n@return The time at which the file system was created, in seconds, since 1970-01-01T00:00:00Z.*/",
"fluentSetterDocumentation" : "/**The time at which the file system was created, in seconds, since 1970-01-01T00:00:00Z.
\n@param creationTime The time at which 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" : "/**The time at which the file system was created, in seconds, since 1970-01-01T00:00:00Z.
\n@param creationTime The time at which 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.*/"
},
"FileSystemId" : {
"documentation" : "The file system ID assigned by Amazon EFS.
",
"name" : "FileSystemId",
"c2jName" : "FileSystemId",
"c2jShape" : "FileSystemId",
"variable" : {
"variableName" : "fileSystemId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The file system ID 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The file system ID assigned by Amazon EFS.
\n@param fileSystemId The file system ID assigned by Amazon EFS.*/",
"getterDocumentation" : "/**The file system ID assigned by Amazon EFS.
\n@return The file system ID assigned by Amazon EFS.*/",
"fluentSetterDocumentation" : "/**The file system ID assigned by Amazon EFS.
\n@param fileSystemId The file system ID assigned by Amazon EFS.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The file system ID assigned by Amazon EFS.
\n@param fileSystemId The file system ID assigned by Amazon EFS.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"LifeCycleState" : {
"documentation" : "A predefined string value that indicates the lifecycle phase of the file system.
",
"name" : "LifeCycleState",
"c2jName" : "LifeCycleState",
"c2jShape" : "LifeCycleState",
"variable" : {
"variableName" : "lifeCycleState",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A predefined string value that indicates the 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "LifeCycleState",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A predefined string value that indicates the lifecycle phase of the file system.
\n@param lifeCycleState A predefined string value that indicates the lifecycle phase of the file system.\n@see LifeCycleState*/",
"getterDocumentation" : "/**A predefined string value that indicates the lifecycle phase of the file system.
\n@return A predefined string value that indicates the lifecycle phase of the file system.\n@see LifeCycleState*/",
"fluentSetterDocumentation" : "/**A predefined string value that indicates the lifecycle phase of the file system.
\n@param lifeCycleState A predefined string value that indicates the 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" : "/**A predefined string value that indicates the lifecycle phase of the file system.
\n@param lifeCycleState A predefined string value that indicates the 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*/"
},
"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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : 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.*/"
},
"OwnerId" : {
"documentation" : "The 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" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The 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 The 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" : "/**The 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 The 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" : "/**The 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 The 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" : "/**The 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 The 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.*/"
},
"NumberOfMountTargets" : {
"documentation" : "The current number of mount targets (see CreateMountTarget) the file system has.
",
"name" : "NumberOfMountTargets",
"c2jName" : "NumberOfMountTargets",
"c2jShape" : "MountTargetCount",
"variable" : {
"variableName" : "numberOfMountTargets",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The current number of mount targets (see CreateMountTarget) the file system has.
",
"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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The current number of mount targets (see CreateMountTarget) the file system has.
\n@param numberOfMountTargets The current number of mount targets (see CreateMountTarget) the file system has.*/",
"getterDocumentation" : "/**The current number of mount targets (see CreateMountTarget) the file system has.
\n@return The current number of mount targets (see CreateMountTarget) the file system has.*/",
"fluentSetterDocumentation" : "/**The current number of mount targets (see CreateMountTarget) the file system has.
\n@param numberOfMountTargets The current number of mount targets (see CreateMountTarget) the file system has.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The current number of mount targets (see CreateMountTarget) the file system has.
\n@param numberOfMountTargets The current number of mount targets (see CreateMountTarget) the file system has.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"SizeInBytes" : {
"documentation" : " This object provides the latest known metered size 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" : " This object provides the latest known metered size 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/** This object provides the latest known metered size 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 This object provides the latest known metered size 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" : "/** This object provides the latest known metered size 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 This object provides the latest known metered size 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" : "/** This object provides the latest known metered size 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 This object provides the latest known metered size 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" : "/** This object provides the latest known metered size 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 This object provides the latest known metered size 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.*/"
}
}
},
"FileSystemSize" : {
"c2jName" : "FileSystemSize",
"documentation" : "This object provides the 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" : "The 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" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The latest known metered size, in bytes, of data stored in the file system.
\n@param value The latest known metered size, in bytes, of data stored in the file system.*/",
"getterDocumentation" : "/**The latest known metered size, in bytes, of data stored in the file system.
\n@return The latest known metered size, in bytes, of data stored in the file system.*/",
"fluentSetterDocumentation" : "/**The latest known metered size, in bytes, of data stored in the file system.
\n@param value The 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" : "/**The latest known metered size, in bytes, of data stored in the file system.
\n@param value The 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" : "The 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" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The 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 The 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" : "/**The 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 The 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" : "/**The 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 The 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" : "/**The 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 The 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" : "The 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" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The latest known metered size, in bytes, of data stored in the file system.
\n@param value The latest known metered size, in bytes, of data stored in the file system.*/",
"getterDocumentation" : "/**The latest known metered size, in bytes, of data stored in the file system.
\n@return The latest known metered size, in bytes, of data stored in the file system.*/",
"fluentSetterDocumentation" : "/**The latest known metered size, in bytes, of data stored in the file system.
\n@param value The 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" : "/**The latest known metered size, in bytes, of data stored in the file system.
\n@param value The 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" : "The 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" : "The 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,
"statusCode" : false,
"queryString" : false,
"uri" : false,
"header" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The 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 The 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" : "/**The 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 The 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" : "/**The 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 The 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" : "/**The 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 The 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,
"convenienceTypeOverloads" : [ ]
},
"examples" : {
"version" : "1.0",
"operationExamples" : { }
},
"clientConfigFactory" : "ClientConfigurationFactory"
}