AWS Transfer for SFTP (version v1.*.*)

create_server

Instantiates an autoscaling virtual server based on Secure File Transfer Protocol (SFTP) in AWS. When you make updates to your server or when you work with users, use the service-generated ServerId property that is assigned to the newly created server.

Parameters

$body

Type: object

{
  "LoggingRole" : "A value that allows the service to write your SFTP users' activity to your Amazon CloudWatch logs for monitoring and auditing purposes.",
  "HostKey" : "The RSA private key as generated by the ssh-keygen -N \"\" -f my-new-server-key command.  \nIf you aren't planning to migrate existing users from an existing SFTP server to a new AWS SFTP server, don't update the host key. Accidentally changing a server's host key can be disruptive.  \n For more information, see \"https://alpha-docs-aws.amazon.com/transfer/latest/userguide/configuring-servers.html#change-host-key\" in the AWS SFTP User Guide. ",
  "IdentityProviderDetails" : {
    "InvocationRole" : "The InvocationRole parameter provides the type of InvocationRole used to authenticate the user account.",
    "Url" : "The Url parameter provides contains the location of the service endpoint used to authenticate users."
  },
  "EndpointType" : "The type of VPC endpoint that you want your SFTP server to connect to. If you connect to a VPC endpoint, your SFTP server isn't accessible over the public internet.",
  "EndpointDetails" : {
    "VpcEndpointId" : "The ID of the VPC endpoint."
  },
  "IdentityProviderType" : "Specifies the mode of authentication for the SFTP server. The default value is SERVICE_MANAGED, which allows you to store and access SFTP user credentials within the AWS Transfer for SFTP service. Use the API_GATEWAY value to integrate with an identity provider of your choosing. The API_GATEWAY setting requires you to provide an API Gateway endpoint URL to call for authentication using the IdentityProviderDetails parameter.",
  "Tags" : [ {
    "Value" : "This property contains one or more values that you assigned to the key name you create.",
    "Key" : "The name assigned to the tag that you create."
  } ]
}

create_user

Creates a user and associates them with an existing Secure File Transfer Protocol (SFTP) server. You can only create and associate users with SFTP servers that have the IdentityProviderType set to SERVICE_MANAGED. Using parameters for CreateUser, you can specify the user name, set the home directory, store the user's public key, and assign the user's AWS Identity and Access Management (IAM) role. You can also optionally add a scope-down policy, and assign metadata with tags that can be used to group and search for users.

Parameters

$body

Type: object

{
  "Policy" : "A scope-down policy for your user so you can use the same IAM role across multiple users. This policy scopes down user access to portions of their Amazon S3 bucket. Variables that you can use inside this policy include ${Transfer:UserName}, ${Transfer:HomeDirectory}, and ${Transfer:HomeBucket}.  \nFor scope-down policies, AWS Transfer for SFTP stores the policy as a JSON blob, instead of the Amazon Resource Name (ARN) of the policy. You save the policy as a JSON blob and pass it in the Policy argument. \nFor an example of a scope-down policy, see \"https://docs.aws.amazon.com/transfer/latest/userguide/users.html#users-policies-scope-down\">Creating a Scope-Down Policy. \nFor more information, see \"https://docs.aws.amazon.com/STS/latest/APIReference/API_AssumeRole.html\" in the AWS Security Token Service API Reference.",
  "Role" : "The IAM role that controls your user's access to your Amazon S3 bucket. The policies attached to this role will determine the level of access you want to provide your users when transferring files into and out of your Amazon S3 bucket or buckets. The IAM role should also contain a trust relationship that allows the SFTP server to access your resources when servicing your SFTP user's transfer requests.",
  "HomeDirectory" : "The landing directory (folder) for a user when they log in to the server using their SFTP client.  \nAn example is <your-Amazon-S3-bucket-name>/home/username.",
  "HomeDirectoryType" : "The type of landing directory (folder) you want your users' home directory to be when they log into the SFTP server. If you set it to PATH, the user will see the absolute Amazon S3 bucket paths as is in their SFTP clients. If you set it LOGICAL, you will need to provide mappings in the HomeDirectoryMappings for how you want to make S3 paths visible to your user.",
  "ServerId" : "A system-assigned unique identifier for an SFTP server instance. This is the specific SFTP server that you added your user to.",
  "UserName" : "A unique string that identifies a user and is associated with a server as specified by the ServerId. This user name must be a minimum of 3 and a maximum of 32 characters long. The following are valid characters: a-z, A-Z, 0-9, underscore, and hyphen. The user name can't start with a hyphen.",
  "HomeDirectoryMappings" : [ {
    "Entry" : "Represents an entry and a target for HomeDirectoryMappings.",
    "Target" : "Represents the map target that is used in a HomeDirectorymapEntry."
  } ],
  "SshPublicKeyBody" : "The public portion of the Secure Shell (SSH) key used to authenticate the user to the SFTP server.",
  "Tags" : [ {
    "Value" : "This property contains one or more values that you assigned to the key name you create.",
    "Key" : "The name assigned to the tag that you create."
  } ]
}

delete_server

Deletes the Secure File Transfer Protocol (SFTP) server that you specify. No response returns from this operation.

Parameters

$body

Type: object

{
  "ServerId" : "A unique system-assigned identifier for an SFTP server instance."
}

delete_ssh_public_key

Deletes a user's Secure Shell (SSH) public key. No response is returned from this operation.

Parameters

$body

Type: object

{
  "SshPublicKeyId" : "A unique identifier used to reference your user's specific SSH key.",
  "ServerId" : "A system-assigned unique identifier for a Secure File Transfer Protocol (SFTP) server instance that has the user assigned to it.",
  "UserName" : "A unique string that identifies a user whose public key is being deleted."
}

delete_user

Deletes the user belonging to the server you specify. No response returns from this operation.
When you delete a user from a server, the user's information is lost.

Parameters

$body

Type: object

{
  "ServerId" : "A system-assigned unique identifier for an SFTP server instance that has the user assigned to it.",
  "UserName" : "A unique string that identifies a user that is being deleted from the server."
}

describe_server

Describes the server that you specify by passing the ServerId parameter. The response contains a description of the server's properties.

Parameters

$body

Type: object

{
  "ServerId" : "A system-assigned unique identifier for an SFTP server."
}

describe_user

Describes the user assigned to a specific server, as identified by its ServerId property. The response from this call returns the properties of the user associated with the ServerId value that was specified.

Parameters

$body

Type: object

{
  "ServerId" : "A system-assigned unique identifier for an SFTP server that has this user assigned.",
  "UserName" : "The name of the user assigned to one or more servers. User names are part of the sign-in credentials to use the AWS Transfer for SFTP service and perform file transfer tasks."
}

import_ssh_public_key

Adds a Secure Shell (SSH) public key to a user account identified by a UserName value assigned to a specific server, identified by ServerId. The response returns the UserName value, the ServerId value, and the name of the SshPublicKeyId.

Parameters

$body

Type: object

{
  "ServerId" : "A system-assigned unique identifier for an SFTP server.",
  "UserName" : "The name of the user account that is assigned to one or more servers.",
  "SshPublicKeyBody" : "The public key portion of an SSH key pair."
}

list_servers

Lists the Secure File Transfer Protocol (SFTP) servers that are associated with your AWS account.

This operation has no parameters

list_tags_for_resource

Lists all of the tags associated with the Amazon Resource Number (ARN) you specify. The resource can be a user, server, or role.

Parameters

$body

Type: object

{
  "NextToken" : "When you request additional results from the ListTagsForResource operation, a NextToken parameter is returned in the input. You can then pass in a subsequent command to the NextToken parameter to continue listing additional tags.",
  "MaxResults" : "Specifies the number of tags to return as a response to the ListTagsForResource request.",
  "Arn" : "Requests the tags associated with a particular Amazon Resource Name (ARN). An ARN is an identifier for a specific AWS resource, such as a server, user, or role."
}

list_users

Lists the users for the server that you specify by passing the ServerId parameter.

Parameters

$body

Type: object

{
  "ServerId" : "A system-assigned unique identifier for a Secure File Transfer Protocol (SFTP) server that has users assigned to it.",
  "NextToken" : "When you can get additional results from the ListUsers call, a NextToken parameter is returned in the output. You can then pass in a subsequent command to the NextToken parameter to continue listing additional users.",
  "MaxResults" : "Specifies the number of users to return as a response to the ListUsers request."
}

start_server

Changes the state of a Secure File Transfer Protocol (SFTP) server from OFFLINE to ONLINE. It has no impact on an SFTP server that is already ONLINE. An ONLINE server can accept and process file transfer jobs. The state of STARTING indicates that the server is in an intermediate state, either not fully able to respond, or not fully online. The values of START_FAILED can indicate an error condition.
No response is returned from this call.

Parameters

$body

Type: object

{
  "ServerId" : "A system-assigned unique identifier for an SFTP server that you start."
}

stop_server

Changes the state of an SFTP server from ONLINE to OFFLINE. An OFFLINE server cannot accept and process file transfer jobs. Information tied to your server such as server and user properties are not affected by stopping your server. Stopping a server will not reduce or impact your Secure File Transfer Protocol (SFTP) endpoint billing. The state of STOPPING indicates that the server is in an intermediate state, either not fully able to respond, or not fully offline. The values of STOP_FAILED can indicate an error condition. No response is returned from this call.

Parameters

$body

Type: object

{
  "ServerId" : "A system-assigned unique identifier for an SFTP server that you stopped."
}

tag_resource

Attaches a key-value pair to a resource, as identified by its Amazon Resource Name (ARN). Resources are users, servers, roles, and other entities. There is no response returned from this call.

Parameters

$body

Type: object

{
  "Arn" : "An Amazon Resource Name (ARN) for a specific AWS resource, such as a server, user, or role.",
  "Tags" : [ {
    "Value" : "This property contains one or more values that you assigned to the key name you create.",
    "Key" : "The name assigned to the tag that you create."
  } ]
}

test_identity_provider

If the IdentityProviderType of the server is API_Gateway, tests whether your API Gateway is set up successfully. We highly recommend that you call this operation to test your authentication method as soon as you create your server. By doing so, you can troubleshoot issues with the API Gateway integration to ensure that your users can successfully use the service.

Parameters

$body

Type: object

{
  "ServerId" : "A system-assigned identifier for a specific server. That server's user authentication method is tested with a user name and password.",
  "UserName" : "This request parameter is the name of the user account to be tested.",
  "UserPassword" : "The password of the user account to be tested."
}

untag_resource

Detaches a key-value pair from a resource, as identified by its Amazon Resource Name (ARN). Resources are users, servers, roles, and other entities. No response is returned from this call.

Parameters

$body

Type: object

{
  "Arn" : "This is the value of the resource that will have the tag removed. An Amazon Resource Name (ARN) is an identifier for a specific AWS resource, such as a server, user, or role.",
  "TagKeys" : [ "string" ]
}

update_server

Updates the server properties after that server has been created. The UpdateServer call returns the ServerId of the Secure File Transfer Protocol (SFTP) server you updated.

Parameters

$body

Type: object

{
  "LoggingRole" : "A value that changes the AWS Identity and Access Management (IAM) role that allows Amazon S3 events to be logged in Amazon CloudWatch, turning logging on or off.",
  "HostKey" : "The RSA private key as generated by ssh-keygen -N \"\" -f my-new-server-key.  \nIf you aren't planning to migrate existing users from an existing SFTP server to a new AWS SFTP server, don't update the host key. Accidentally changing a server's host key can be disruptive.  \n For more information, see \"https://docs.aws.amazon.com/transfer/latest/userguide/configuring-servers.html#change-host-key\" in the AWS SFTP User Guide. ",
  "ServerId" : "A system-assigned unique identifier for an SFTP server instance that the user account is assigned to.",
  "IdentityProviderDetails" : {
    "InvocationRole" : "The InvocationRole parameter provides the type of InvocationRole used to authenticate the user account.",
    "Url" : "The Url parameter provides contains the location of the service endpoint used to authenticate users."
  },
  "EndpointType" : "The type of endpoint that you want your SFTP server to connect to. You can choose to connect to the public internet or a virtual private cloud (VPC) endpoint. With a VPC endpoint, your SFTP server isn't accessible over the public internet. ",
  "EndpointDetails" : {
    "VpcEndpointId" : "The ID of the VPC endpoint."
  }
}

update_user

Assigns new properties to a user. Parameters you pass modify any or all of the following: the home directory, role, and policy for the UserName and ServerId you specify. The response returns the ServerId and the UserName for the updated user.

Parameters

$body

Type: object

{
  "Policy" : "Allows you to supply a scope-down policy for your user so you can use the same AWS Identity and Access Management (IAM) role across multiple users. The policy scopes down user access to portions of your Amazon S3 bucket. Variables you can use inside this policy include ${Transfer:UserName}, ${Transfer:HomeDirectory}, and ${Transfer:HomeBucket}.  \nFor scope-down policies, AWS Transfer for SFTP stores the policy as a JSON blob, instead of the Amazon Resource Name (ARN) of the policy. You save the policy as a JSON blob and pass it in the Policy argument. \nFor an example of a scope-down policy, see \"https://docs.aws.amazon.com/transfer/latest/userguide/users.html#users-policies-scope-down\">Creating a Scope-Down Policy. \nFor more information, see \"https://docs.aws.amazon.com/STS/latest/APIReference/API_AssumeRole.html\" in the AWS Security Token Service API Reference.",
  "Role" : "The IAM role that controls your user's access to your Amazon S3 bucket. The policies attached to this role will determine the level of access you want to provide your users when transferring files into and out of your Amazon S3 bucket or buckets. The IAM role should also contain a trust relationship that allows the Secure File Transfer Protocol (SFTP) server to access your resources when servicing your SFTP user's transfer requests.",
  "HomeDirectory" : "A parameter that specifies the landing directory (folder) for a user when they log in to the server using their client.  \nAn example is <your-Amazon-S3-bucket-name>/home/username.",
  "HomeDirectoryType" : "The type of landing directory (folder) you want your users' home directory to be when they log into the SFTP serve. If you set it to PATH, the user will see the absolute Amazon S3 bucket paths as is in their SFTP clients. If you set it LOGICAL, you will need to provide mappings in the HomeDirectoryMappings for how you want to make S3 paths visible to your user.",
  "ServerId" : "A system-assigned unique identifier for an SFTP server instance that the user account is assigned to.",
  "UserName" : "A unique string that identifies a user and is associated with a server as specified by the ServerId. This is the string that will be used by your user when they log in to your SFTP server. This user name is a minimum of 3 and a maximum of 32 characters long. The following are valid characters: a-z, A-Z, 0-9, underscore, and hyphen. The user name can't start with a hyphen.",
  "HomeDirectoryMappings" : [ {
    "Entry" : "Represents an entry and a target for HomeDirectoryMappings.",
    "Target" : "Represents the map target that is used in a HomeDirectorymapEntry."
  } ]
}