Skip to content

TransferClient

Index > Transfer > TransferClient

Auto-generated documentation for Transfer type annotations stubs module types-aiobotocore-transfer.

TransferClient

Type annotations and code completion for session.client("transfer") boto3 documentation

Usage example
from aioboto3.session import Session
from types_aiobotocore_transfer.client import TransferClient

session = Session()
async with session.client("transfer") as client:
    client: TransferClient

Exceptions

aioboto3 client exceptions are generated in runtime. This class provides code completion for session.client("transfer").exceptions structure.

Usage example
async with session.client("transfer") as client:
    try:
        do_something(client)
    except (
            client.AccessDeniedException,
        client.ClientError,
        client.ConflictException,
        client.InternalServiceError,
        client.InvalidNextTokenException,
        client.InvalidRequestException,
        client.ResourceExistsException,
        client.ResourceNotFoundException,
        client.ServiceUnavailableException,
        client.ThrottlingException,
    ) as e:
        print(e)
Type checking example
from types_aiobotocore_transfer.client import Exceptions

def handle_error(exc: Exceptions.AccessDeniedException) -> None:
    ...

Methods

can_paginate

Check if an operation can be paginated.

Type annotations and code completion for session.client("transfer").can_paginate method. boto3 documentation

Method definition
def can_paginate(
    self,
    operation_name: str,
) -> bool:
    ...

close

Closes underlying endpoint connections.

Type annotations and code completion for session.client("transfer").close method. boto3 documentation

Method definition
await def close(
    self,
) -> None:
    ...

create_access

Used by administrators to choose which groups in the directory should have access to upload and download files over the enabled protocols using Transfer Family.

Type annotations and code completion for session.client("transfer").create_access method. boto3 documentation

Method definition
await def create_access(
    self,
    *,
    Role: str,
    ServerId: str,
    ExternalId: str,
    HomeDirectory: str = ...,
    HomeDirectoryType: HomeDirectoryTypeType = ...,  # (1)
    HomeDirectoryMappings: Sequence[HomeDirectoryMapEntryTypeDef] = ...,  # (2)
    Policy: str = ...,
    PosixProfile: PosixProfileTypeDef = ...,  # (3)
) -> CreateAccessResponseTypeDef:  # (4)
    ...
  1. See HomeDirectoryTypeType
  2. See HomeDirectoryMapEntryTypeDef
  3. See PosixProfileTypeDef
  4. See CreateAccessResponseTypeDef
Usage example with kwargs
kwargs: CreateAccessRequestRequestTypeDef = {  # (1)
    "Role": ...,
    "ServerId": ...,
    "ExternalId": ...,
}

parent.create_access(**kwargs)
  1. See CreateAccessRequestRequestTypeDef

create_agreement

Creates an agreement.

Type annotations and code completion for session.client("transfer").create_agreement method. boto3 documentation

Method definition
await def create_agreement(
    self,
    *,
    ServerId: str,
    LocalProfileId: str,
    PartnerProfileId: str,
    BaseDirectory: str,
    AccessRole: str,
    Description: str = ...,
    Status: AgreementStatusTypeType = ...,  # (1)
    Tags: Sequence[TagTypeDef] = ...,  # (2)
) -> CreateAgreementResponseTypeDef:  # (3)
    ...
  1. See AgreementStatusTypeType
  2. See TagTypeDef
  3. See CreateAgreementResponseTypeDef
Usage example with kwargs
kwargs: CreateAgreementRequestRequestTypeDef = {  # (1)
    "ServerId": ...,
    "LocalProfileId": ...,
    "PartnerProfileId": ...,
    "BaseDirectory": ...,
    "AccessRole": ...,
}

parent.create_agreement(**kwargs)
  1. See CreateAgreementRequestRequestTypeDef

create_connector

Creates the connector, which captures the parameters for an outbound connection for the AS2 protocol.

Type annotations and code completion for session.client("transfer").create_connector method. boto3 documentation

Method definition
await def create_connector(
    self,
    *,
    Url: str,
    As2Config: As2ConnectorConfigTypeDef,  # (1)
    AccessRole: str,
    LoggingRole: str = ...,
    Tags: Sequence[TagTypeDef] = ...,  # (2)
) -> CreateConnectorResponseTypeDef:  # (3)
    ...
  1. See As2ConnectorConfigTypeDef
  2. See TagTypeDef
  3. See CreateConnectorResponseTypeDef
Usage example with kwargs
kwargs: CreateConnectorRequestRequestTypeDef = {  # (1)
    "Url": ...,
    "As2Config": ...,
    "AccessRole": ...,
}

parent.create_connector(**kwargs)
  1. See CreateConnectorRequestRequestTypeDef

create_profile

Creates the profile for the AS2 process.

Type annotations and code completion for session.client("transfer").create_profile method. boto3 documentation

Method definition
await def create_profile(
    self,
    *,
    As2Id: str,
    ProfileType: ProfileTypeType,  # (1)
    CertificateIds: Sequence[str] = ...,
    Tags: Sequence[TagTypeDef] = ...,  # (2)
) -> CreateProfileResponseTypeDef:  # (3)
    ...
  1. See ProfileTypeType
  2. See TagTypeDef
  3. See CreateProfileResponseTypeDef
Usage example with kwargs
kwargs: CreateProfileRequestRequestTypeDef = {  # (1)
    "As2Id": ...,
    "ProfileType": ...,
}

parent.create_profile(**kwargs)
  1. See CreateProfileRequestRequestTypeDef

create_server

Instantiates an auto-scaling virtual server based on the selected file transfer protocol in Amazon Web Services.

Type annotations and code completion for session.client("transfer").create_server method. boto3 documentation

Method definition
await def create_server(
    self,
    *,
    Certificate: str = ...,
    Domain: DomainType = ...,  # (1)
    EndpointDetails: EndpointDetailsTypeDef = ...,  # (2)
    EndpointType: EndpointTypeType = ...,  # (3)
    HostKey: str = ...,
    IdentityProviderDetails: IdentityProviderDetailsTypeDef = ...,  # (4)
    IdentityProviderType: IdentityProviderTypeType = ...,  # (5)
    LoggingRole: str = ...,
    PostAuthenticationLoginBanner: str = ...,
    PreAuthenticationLoginBanner: str = ...,
    Protocols: Sequence[ProtocolType] = ...,  # (6)
    ProtocolDetails: ProtocolDetailsTypeDef = ...,  # (7)
    SecurityPolicyName: str = ...,
    Tags: Sequence[TagTypeDef] = ...,  # (8)
    WorkflowDetails: WorkflowDetailsTypeDef = ...,  # (9)
) -> CreateServerResponseTypeDef:  # (10)
    ...
  1. See DomainType
  2. See EndpointDetailsTypeDef
  3. See EndpointTypeType
  4. See IdentityProviderDetailsTypeDef
  5. See IdentityProviderTypeType
  6. See ProtocolType
  7. See ProtocolDetailsTypeDef
  8. See TagTypeDef
  9. See WorkflowDetailsTypeDef
  10. See CreateServerResponseTypeDef
Usage example with kwargs
kwargs: CreateServerRequestRequestTypeDef = {  # (1)
    "Certificate": ...,
}

parent.create_server(**kwargs)
  1. See CreateServerRequestRequestTypeDef

create_user

Creates a user and associates them with an existing file transfer protocol- enabled server.

Type annotations and code completion for session.client("transfer").create_user method. boto3 documentation

Method definition
await def create_user(
    self,
    *,
    Role: str,
    ServerId: str,
    UserName: str,
    HomeDirectory: str = ...,
    HomeDirectoryType: HomeDirectoryTypeType = ...,  # (1)
    HomeDirectoryMappings: Sequence[HomeDirectoryMapEntryTypeDef] = ...,  # (2)
    Policy: str = ...,
    PosixProfile: PosixProfileTypeDef = ...,  # (3)
    SshPublicKeyBody: str = ...,
    Tags: Sequence[TagTypeDef] = ...,  # (4)
) -> CreateUserResponseTypeDef:  # (5)
    ...
  1. See HomeDirectoryTypeType
  2. See HomeDirectoryMapEntryTypeDef
  3. See PosixProfileTypeDef
  4. See TagTypeDef
  5. See CreateUserResponseTypeDef
Usage example with kwargs
kwargs: CreateUserRequestRequestTypeDef = {  # (1)
    "Role": ...,
    "ServerId": ...,
    "UserName": ...,
}

parent.create_user(**kwargs)
  1. See CreateUserRequestRequestTypeDef

create_workflow

Allows you to create a workflow with specified steps and step details the workflow invokes after file transfer completes.

Type annotations and code completion for session.client("transfer").create_workflow method. boto3 documentation

Method definition
await def create_workflow(
    self,
    *,
    Steps: Sequence[WorkflowStepTypeDef],  # (1)
    Description: str = ...,
    OnExceptionSteps: Sequence[WorkflowStepTypeDef] = ...,  # (1)
    Tags: Sequence[TagTypeDef] = ...,  # (3)
) -> CreateWorkflowResponseTypeDef:  # (4)
    ...
  1. See WorkflowStepTypeDef
  2. See WorkflowStepTypeDef
  3. See TagTypeDef
  4. See CreateWorkflowResponseTypeDef
Usage example with kwargs
kwargs: CreateWorkflowRequestRequestTypeDef = {  # (1)
    "Steps": ...,
}

parent.create_workflow(**kwargs)
  1. See CreateWorkflowRequestRequestTypeDef

delete_access

Allows you to delete the access specified in the ServerID and ExternalID parameters.

Type annotations and code completion for session.client("transfer").delete_access method. boto3 documentation

Method definition
await def delete_access(
    self,
    *,
    ServerId: str,
    ExternalId: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeleteAccessRequestRequestTypeDef = {  # (1)
    "ServerId": ...,
    "ExternalId": ...,
}

parent.delete_access(**kwargs)
  1. See DeleteAccessRequestRequestTypeDef

delete_agreement

Delete the agreement that's specified in the provided AgreementId .

Type annotations and code completion for session.client("transfer").delete_agreement method. boto3 documentation

Method definition
await def delete_agreement(
    self,
    *,
    AgreementId: str,
    ServerId: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeleteAgreementRequestRequestTypeDef = {  # (1)
    "AgreementId": ...,
    "ServerId": ...,
}

parent.delete_agreement(**kwargs)
  1. See DeleteAgreementRequestRequestTypeDef

delete_certificate

Deletes the certificate that's specified in the CertificateId parameter.

Type annotations and code completion for session.client("transfer").delete_certificate method. boto3 documentation

Method definition
await def delete_certificate(
    self,
    *,
    CertificateId: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeleteCertificateRequestRequestTypeDef = {  # (1)
    "CertificateId": ...,
}

parent.delete_certificate(**kwargs)
  1. See DeleteCertificateRequestRequestTypeDef

delete_connector

Deletes the agreement that's specified in the provided ConnectorId .

Type annotations and code completion for session.client("transfer").delete_connector method. boto3 documentation

Method definition
await def delete_connector(
    self,
    *,
    ConnectorId: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeleteConnectorRequestRequestTypeDef = {  # (1)
    "ConnectorId": ...,
}

parent.delete_connector(**kwargs)
  1. See DeleteConnectorRequestRequestTypeDef

delete_profile

Deletes the profile that's specified in the ProfileId parameter.

Type annotations and code completion for session.client("transfer").delete_profile method. boto3 documentation

Method definition
await def delete_profile(
    self,
    *,
    ProfileId: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeleteProfileRequestRequestTypeDef = {  # (1)
    "ProfileId": ...,
}

parent.delete_profile(**kwargs)
  1. See DeleteProfileRequestRequestTypeDef

delete_server

Deletes the file transfer protocol-enabled server that you specify.

Type annotations and code completion for session.client("transfer").delete_server method. boto3 documentation

Method definition
await def delete_server(
    self,
    *,
    ServerId: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeleteServerRequestRequestTypeDef = {  # (1)
    "ServerId": ...,
}

parent.delete_server(**kwargs)
  1. See DeleteServerRequestRequestTypeDef

delete_ssh_public_key

Deletes a user's Secure Shell (SSH) public key.

Type annotations and code completion for session.client("transfer").delete_ssh_public_key method. boto3 documentation

Method definition
await def delete_ssh_public_key(
    self,
    *,
    ServerId: str,
    SshPublicKeyId: str,
    UserName: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeleteSshPublicKeyRequestRequestTypeDef = {  # (1)
    "ServerId": ...,
    "SshPublicKeyId": ...,
    "UserName": ...,
}

parent.delete_ssh_public_key(**kwargs)
  1. See DeleteSshPublicKeyRequestRequestTypeDef

delete_user

Deletes the user belonging to a file transfer protocol-enabled server you specify.

Type annotations and code completion for session.client("transfer").delete_user method. boto3 documentation

Method definition
await def delete_user(
    self,
    *,
    ServerId: str,
    UserName: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeleteUserRequestRequestTypeDef = {  # (1)
    "ServerId": ...,
    "UserName": ...,
}

parent.delete_user(**kwargs)
  1. See DeleteUserRequestRequestTypeDef

delete_workflow

Deletes the specified workflow.

Type annotations and code completion for session.client("transfer").delete_workflow method. boto3 documentation

Method definition
await def delete_workflow(
    self,
    *,
    WorkflowId: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeleteWorkflowRequestRequestTypeDef = {  # (1)
    "WorkflowId": ...,
}

parent.delete_workflow(**kwargs)
  1. See DeleteWorkflowRequestRequestTypeDef

describe_access

Describes the access that is assigned to the specific file transfer protocol- enabled server, as identified by its ServerId property and its ExternalId .

Type annotations and code completion for session.client("transfer").describe_access method. boto3 documentation

Method definition
await def describe_access(
    self,
    *,
    ServerId: str,
    ExternalId: str,
) -> DescribeAccessResponseTypeDef:  # (1)
    ...
  1. See DescribeAccessResponseTypeDef
Usage example with kwargs
kwargs: DescribeAccessRequestRequestTypeDef = {  # (1)
    "ServerId": ...,
    "ExternalId": ...,
}

parent.describe_access(**kwargs)
  1. See DescribeAccessRequestRequestTypeDef

describe_agreement

Describes the agreement that's identified by the AgreementId .

Type annotations and code completion for session.client("transfer").describe_agreement method. boto3 documentation

Method definition
await def describe_agreement(
    self,
    *,
    AgreementId: str,
    ServerId: str,
) -> DescribeAgreementResponseTypeDef:  # (1)
    ...
  1. See DescribeAgreementResponseTypeDef
Usage example with kwargs
kwargs: DescribeAgreementRequestRequestTypeDef = {  # (1)
    "AgreementId": ...,
    "ServerId": ...,
}

parent.describe_agreement(**kwargs)
  1. See DescribeAgreementRequestRequestTypeDef

describe_certificate

Describes the certificate that's identified by the CertificateId .

Type annotations and code completion for session.client("transfer").describe_certificate method. boto3 documentation

Method definition
await def describe_certificate(
    self,
    *,
    CertificateId: str,
) -> DescribeCertificateResponseTypeDef:  # (1)
    ...
  1. See DescribeCertificateResponseTypeDef
Usage example with kwargs
kwargs: DescribeCertificateRequestRequestTypeDef = {  # (1)
    "CertificateId": ...,
}

parent.describe_certificate(**kwargs)
  1. See DescribeCertificateRequestRequestTypeDef

describe_connector

Describes the connector that's identified by the ConnectorId. See also: AWS API Documentation.

Type annotations and code completion for session.client("transfer").describe_connector method. boto3 documentation

Method definition
await def describe_connector(
    self,
    *,
    ConnectorId: str,
) -> DescribeConnectorResponseTypeDef:  # (1)
    ...
  1. See DescribeConnectorResponseTypeDef
Usage example with kwargs
kwargs: DescribeConnectorRequestRequestTypeDef = {  # (1)
    "ConnectorId": ...,
}

parent.describe_connector(**kwargs)
  1. See DescribeConnectorRequestRequestTypeDef

describe_execution

You can use DescribeExecution to check the details of the execution of the specified workflow.

Type annotations and code completion for session.client("transfer").describe_execution method. boto3 documentation

Method definition
await def describe_execution(
    self,
    *,
    ExecutionId: str,
    WorkflowId: str,
) -> DescribeExecutionResponseTypeDef:  # (1)
    ...
  1. See DescribeExecutionResponseTypeDef
Usage example with kwargs
kwargs: DescribeExecutionRequestRequestTypeDef = {  # (1)
    "ExecutionId": ...,
    "WorkflowId": ...,
}

parent.describe_execution(**kwargs)
  1. See DescribeExecutionRequestRequestTypeDef

describe_profile

Returns the details of the profile that's specified by the ProfileId .

Type annotations and code completion for session.client("transfer").describe_profile method. boto3 documentation

Method definition
await def describe_profile(
    self,
    *,
    ProfileId: str,
) -> DescribeProfileResponseTypeDef:  # (1)
    ...
  1. See DescribeProfileResponseTypeDef
Usage example with kwargs
kwargs: DescribeProfileRequestRequestTypeDef = {  # (1)
    "ProfileId": ...,
}

parent.describe_profile(**kwargs)
  1. See DescribeProfileRequestRequestTypeDef

describe_security_policy

Describes the security policy that is attached to your file transfer protocol- enabled server.

Type annotations and code completion for session.client("transfer").describe_security_policy method. boto3 documentation

Method definition
await def describe_security_policy(
    self,
    *,
    SecurityPolicyName: str,
) -> DescribeSecurityPolicyResponseTypeDef:  # (1)
    ...
  1. See DescribeSecurityPolicyResponseTypeDef
Usage example with kwargs
kwargs: DescribeSecurityPolicyRequestRequestTypeDef = {  # (1)
    "SecurityPolicyName": ...,
}

parent.describe_security_policy(**kwargs)
  1. See DescribeSecurityPolicyRequestRequestTypeDef

describe_server

Describes a file transfer protocol-enabled server that you specify by passing the ServerId parameter.

Type annotations and code completion for session.client("transfer").describe_server method. boto3 documentation

Method definition
await def describe_server(
    self,
    *,
    ServerId: str,
) -> DescribeServerResponseTypeDef:  # (1)
    ...
  1. See DescribeServerResponseTypeDef
Usage example with kwargs
kwargs: DescribeServerRequestRequestTypeDef = {  # (1)
    "ServerId": ...,
}

parent.describe_server(**kwargs)
  1. See DescribeServerRequestRequestTypeDef

describe_user

Describes the user assigned to the specific file transfer protocol-enabled server, as identified by its ServerId property.

Type annotations and code completion for session.client("transfer").describe_user method. boto3 documentation

Method definition
await def describe_user(
    self,
    *,
    ServerId: str,
    UserName: str,
) -> DescribeUserResponseTypeDef:  # (1)
    ...
  1. See DescribeUserResponseTypeDef
Usage example with kwargs
kwargs: DescribeUserRequestRequestTypeDef = {  # (1)
    "ServerId": ...,
    "UserName": ...,
}

parent.describe_user(**kwargs)
  1. See DescribeUserRequestRequestTypeDef

describe_workflow

Describes the specified workflow.

Type annotations and code completion for session.client("transfer").describe_workflow method. boto3 documentation

Method definition
await def describe_workflow(
    self,
    *,
    WorkflowId: str,
) -> DescribeWorkflowResponseTypeDef:  # (1)
    ...
  1. See DescribeWorkflowResponseTypeDef
Usage example with kwargs
kwargs: DescribeWorkflowRequestRequestTypeDef = {  # (1)
    "WorkflowId": ...,
}

parent.describe_workflow(**kwargs)
  1. See DescribeWorkflowRequestRequestTypeDef

generate_presigned_url

Generate a presigned url given a client, its method, and arguments.

Type annotations and code completion for session.client("transfer").generate_presigned_url method. boto3 documentation

Method definition
await def generate_presigned_url(
    self,
    ClientMethod: str,
    Params: Mapping[str, Any] = ...,
    ExpiresIn: int = 3600,
    HttpMethod: str = ...,
) -> str:
    ...

import_certificate

Imports the signing and encryption certificates that you need to create local (AS2) profiles and partner profiles.

Type annotations and code completion for session.client("transfer").import_certificate method. boto3 documentation

Method definition
await def import_certificate(
    self,
    *,
    Usage: CertificateUsageTypeType,  # (1)
    Certificate: str,
    CertificateChain: str = ...,
    PrivateKey: str = ...,
    ActiveDate: Union[datetime, str] = ...,
    InactiveDate: Union[datetime, str] = ...,
    Description: str = ...,
    Tags: Sequence[TagTypeDef] = ...,  # (2)
) -> ImportCertificateResponseTypeDef:  # (3)
    ...
  1. See CertificateUsageTypeType
  2. See TagTypeDef
  3. See ImportCertificateResponseTypeDef
Usage example with kwargs
kwargs: ImportCertificateRequestRequestTypeDef = {  # (1)
    "Usage": ...,
    "Certificate": ...,
}

parent.import_certificate(**kwargs)
  1. See ImportCertificateRequestRequestTypeDef

import_ssh_public_key

Adds a Secure Shell (SSH) public key to a user account identified by a UserName value assigned to the specific file transfer protocol-enabled server, identified by ServerId .

Type annotations and code completion for session.client("transfer").import_ssh_public_key method. boto3 documentation

Method definition
await def import_ssh_public_key(
    self,
    *,
    ServerId: str,
    SshPublicKeyBody: str,
    UserName: str,
) -> ImportSshPublicKeyResponseTypeDef:  # (1)
    ...
  1. See ImportSshPublicKeyResponseTypeDef
Usage example with kwargs
kwargs: ImportSshPublicKeyRequestRequestTypeDef = {  # (1)
    "ServerId": ...,
    "SshPublicKeyBody": ...,
    "UserName": ...,
}

parent.import_ssh_public_key(**kwargs)
  1. See ImportSshPublicKeyRequestRequestTypeDef

list_accesses

Lists the details for all the accesses you have on your server.

Type annotations and code completion for session.client("transfer").list_accesses method. boto3 documentation

Method definition
await def list_accesses(
    self,
    *,
    ServerId: str,
    MaxResults: int = ...,
    NextToken: str = ...,
) -> ListAccessesResponseTypeDef:  # (1)
    ...
  1. See ListAccessesResponseTypeDef
Usage example with kwargs
kwargs: ListAccessesRequestRequestTypeDef = {  # (1)
    "ServerId": ...,
}

parent.list_accesses(**kwargs)
  1. See ListAccessesRequestRequestTypeDef

list_agreements

Returns a list of the agreements for the server that's identified by the ServerId that you supply.

Type annotations and code completion for session.client("transfer").list_agreements method. boto3 documentation

Method definition
await def list_agreements(
    self,
    *,
    ServerId: str,
    MaxResults: int = ...,
    NextToken: str = ...,
) -> ListAgreementsResponseTypeDef:  # (1)
    ...
  1. See ListAgreementsResponseTypeDef
Usage example with kwargs
kwargs: ListAgreementsRequestRequestTypeDef = {  # (1)
    "ServerId": ...,
}

parent.list_agreements(**kwargs)
  1. See ListAgreementsRequestRequestTypeDef

list_certificates

Returns a list of the current certificates that have been imported into Transfer Family.

Type annotations and code completion for session.client("transfer").list_certificates method. boto3 documentation

Method definition
await def list_certificates(
    self,
    *,
    MaxResults: int = ...,
    NextToken: str = ...,
) -> ListCertificatesResponseTypeDef:  # (1)
    ...
  1. See ListCertificatesResponseTypeDef
Usage example with kwargs
kwargs: ListCertificatesRequestRequestTypeDef = {  # (1)
    "MaxResults": ...,
}

parent.list_certificates(**kwargs)
  1. See ListCertificatesRequestRequestTypeDef

list_connectors

Lists the connectors for the specified Region.

Type annotations and code completion for session.client("transfer").list_connectors method. boto3 documentation

Method definition
await def list_connectors(
    self,
    *,
    MaxResults: int = ...,
    NextToken: str = ...,
) -> ListConnectorsResponseTypeDef:  # (1)
    ...
  1. See ListConnectorsResponseTypeDef
Usage example with kwargs
kwargs: ListConnectorsRequestRequestTypeDef = {  # (1)
    "MaxResults": ...,
}

parent.list_connectors(**kwargs)
  1. See ListConnectorsRequestRequestTypeDef

list_executions

Lists all executions for the specified workflow.

Type annotations and code completion for session.client("transfer").list_executions method. boto3 documentation

Method definition
await def list_executions(
    self,
    *,
    WorkflowId: str,
    MaxResults: int = ...,
    NextToken: str = ...,
) -> ListExecutionsResponseTypeDef:  # (1)
    ...
  1. See ListExecutionsResponseTypeDef
Usage example with kwargs
kwargs: ListExecutionsRequestRequestTypeDef = {  # (1)
    "WorkflowId": ...,
}

parent.list_executions(**kwargs)
  1. See ListExecutionsRequestRequestTypeDef

list_profiles

Returns a list of the profiles for your system.

Type annotations and code completion for session.client("transfer").list_profiles method. boto3 documentation

Method definition
await def list_profiles(
    self,
    *,
    MaxResults: int = ...,
    NextToken: str = ...,
    ProfileType: ProfileTypeType = ...,  # (1)
) -> ListProfilesResponseTypeDef:  # (2)
    ...
  1. See ProfileTypeType
  2. See ListProfilesResponseTypeDef
Usage example with kwargs
kwargs: ListProfilesRequestRequestTypeDef = {  # (1)
    "MaxResults": ...,
}

parent.list_profiles(**kwargs)
  1. See ListProfilesRequestRequestTypeDef

list_security_policies

Lists the security policies that are attached to your file transfer protocol- enabled servers.

Type annotations and code completion for session.client("transfer").list_security_policies method. boto3 documentation

Method definition
await def list_security_policies(
    self,
    *,
    MaxResults: int = ...,
    NextToken: str = ...,
) -> ListSecurityPoliciesResponseTypeDef:  # (1)
    ...
  1. See ListSecurityPoliciesResponseTypeDef
Usage example with kwargs
kwargs: ListSecurityPoliciesRequestRequestTypeDef = {  # (1)
    "MaxResults": ...,
}

parent.list_security_policies(**kwargs)
  1. See ListSecurityPoliciesRequestRequestTypeDef

list_servers

Lists the file transfer protocol-enabled servers that are associated with your Amazon Web Services account.

Type annotations and code completion for session.client("transfer").list_servers method. boto3 documentation

Method definition
await def list_servers(
    self,
    *,
    MaxResults: int = ...,
    NextToken: str = ...,
) -> ListServersResponseTypeDef:  # (1)
    ...
  1. See ListServersResponseTypeDef
Usage example with kwargs
kwargs: ListServersRequestRequestTypeDef = {  # (1)
    "MaxResults": ...,
}

parent.list_servers(**kwargs)
  1. See ListServersRequestRequestTypeDef

list_tags_for_resource

Lists all of the tags associated with the Amazon Resource Name (ARN) that you specify.

Type annotations and code completion for session.client("transfer").list_tags_for_resource method. boto3 documentation

Method definition
await def list_tags_for_resource(
    self,
    *,
    Arn: str,
    MaxResults: int = ...,
    NextToken: str = ...,
) -> ListTagsForResourceResponseTypeDef:  # (1)
    ...
  1. See ListTagsForResourceResponseTypeDef
Usage example with kwargs
kwargs: ListTagsForResourceRequestRequestTypeDef = {  # (1)
    "Arn": ...,
}

parent.list_tags_for_resource(**kwargs)
  1. See ListTagsForResourceRequestRequestTypeDef

list_users

Lists the users for a file transfer protocol-enabled server that you specify by passing the ServerId parameter.

Type annotations and code completion for session.client("transfer").list_users method. boto3 documentation

Method definition
await def list_users(
    self,
    *,
    ServerId: str,
    MaxResults: int = ...,
    NextToken: str = ...,
) -> ListUsersResponseTypeDef:  # (1)
    ...
  1. See ListUsersResponseTypeDef
Usage example with kwargs
kwargs: ListUsersRequestRequestTypeDef = {  # (1)
    "ServerId": ...,
}

parent.list_users(**kwargs)
  1. See ListUsersRequestRequestTypeDef

list_workflows

Lists all of your workflows.

Type annotations and code completion for session.client("transfer").list_workflows method. boto3 documentation

Method definition
await def list_workflows(
    self,
    *,
    MaxResults: int = ...,
    NextToken: str = ...,
) -> ListWorkflowsResponseTypeDef:  # (1)
    ...
  1. See ListWorkflowsResponseTypeDef
Usage example with kwargs
kwargs: ListWorkflowsRequestRequestTypeDef = {  # (1)
    "MaxResults": ...,
}

parent.list_workflows(**kwargs)
  1. See ListWorkflowsRequestRequestTypeDef

send_workflow_step_state

Sends a callback for asynchronous custom steps.

Type annotations and code completion for session.client("transfer").send_workflow_step_state method. boto3 documentation

Method definition
await def send_workflow_step_state(
    self,
    *,
    WorkflowId: str,
    ExecutionId: str,
    Token: str,
    Status: CustomStepStatusType,  # (1)
) -> Dict[str, Any]:
    ...
  1. See CustomStepStatusType
Usage example with kwargs
kwargs: SendWorkflowStepStateRequestRequestTypeDef = {  # (1)
    "WorkflowId": ...,
    "ExecutionId": ...,
    "Token": ...,
    "Status": ...,
}

parent.send_workflow_step_state(**kwargs)
  1. See SendWorkflowStepStateRequestRequestTypeDef

start_file_transfer

Begins an outbound file transfer.

Type annotations and code completion for session.client("transfer").start_file_transfer method. boto3 documentation

Method definition
await def start_file_transfer(
    self,
    *,
    ConnectorId: str,
    SendFilePaths: Sequence[str],
) -> StartFileTransferResponseTypeDef:  # (1)
    ...
  1. See StartFileTransferResponseTypeDef
Usage example with kwargs
kwargs: StartFileTransferRequestRequestTypeDef = {  # (1)
    "ConnectorId": ...,
    "SendFilePaths": ...,
}

parent.start_file_transfer(**kwargs)
  1. See StartFileTransferRequestRequestTypeDef

start_server

Changes the state of a file transfer protocol-enabled server from OFFLINE to ONLINE.

Type annotations and code completion for session.client("transfer").start_server method. boto3 documentation

Method definition
await def start_server(
    self,
    *,
    ServerId: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: StartServerRequestRequestTypeDef = {  # (1)
    "ServerId": ...,
}

parent.start_server(**kwargs)
  1. See StartServerRequestRequestTypeDef

stop_server

Changes the state of a file transfer protocol-enabled server from ONLINE to OFFLINE.

Type annotations and code completion for session.client("transfer").stop_server method. boto3 documentation

Method definition
await def stop_server(
    self,
    *,
    ServerId: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: StopServerRequestRequestTypeDef = {  # (1)
    "ServerId": ...,
}

parent.stop_server(**kwargs)
  1. See StopServerRequestRequestTypeDef

tag_resource

Attaches a key-value pair to a resource, as identified by its Amazon Resource Name (ARN).

Type annotations and code completion for session.client("transfer").tag_resource method. boto3 documentation

Method definition
await def tag_resource(
    self,
    *,
    Arn: str,
    Tags: Sequence[TagTypeDef],  # (1)
) -> EmptyResponseMetadataTypeDef:  # (2)
    ...
  1. See TagTypeDef
  2. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: TagResourceRequestRequestTypeDef = {  # (1)
    "Arn": ...,
    "Tags": ...,
}

parent.tag_resource(**kwargs)
  1. See TagResourceRequestRequestTypeDef

test_identity_provider

If the IdentityProviderType of a file transfer protocol-enabled server is AWS_DIRECTORY_SERVICE or API_Gateway , tests whether your identity provider is set up successfully.

Type annotations and code completion for session.client("transfer").test_identity_provider method. boto3 documentation

Method definition
await def test_identity_provider(
    self,
    *,
    ServerId: str,
    UserName: str,
    ServerProtocol: ProtocolType = ...,  # (1)
    SourceIp: str = ...,
    UserPassword: str = ...,
) -> TestIdentityProviderResponseTypeDef:  # (2)
    ...
  1. See ProtocolType
  2. See TestIdentityProviderResponseTypeDef
Usage example with kwargs
kwargs: TestIdentityProviderRequestRequestTypeDef = {  # (1)
    "ServerId": ...,
    "UserName": ...,
}

parent.test_identity_provider(**kwargs)
  1. See TestIdentityProviderRequestRequestTypeDef

untag_resource

Detaches a key-value pair from a resource, as identified by its Amazon Resource Name (ARN).

Type annotations and code completion for session.client("transfer").untag_resource method. boto3 documentation

Method definition
await def untag_resource(
    self,
    *,
    Arn: str,
    TagKeys: Sequence[str],
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: UntagResourceRequestRequestTypeDef = {  # (1)
    "Arn": ...,
    "TagKeys": ...,
}

parent.untag_resource(**kwargs)
  1. See UntagResourceRequestRequestTypeDef

update_access

Allows you to update parameters for the access specified in the ServerID and ExternalID parameters.

Type annotations and code completion for session.client("transfer").update_access method. boto3 documentation

Method definition
await def update_access(
    self,
    *,
    ServerId: str,
    ExternalId: str,
    HomeDirectory: str = ...,
    HomeDirectoryType: HomeDirectoryTypeType = ...,  # (1)
    HomeDirectoryMappings: Sequence[HomeDirectoryMapEntryTypeDef] = ...,  # (2)
    Policy: str = ...,
    PosixProfile: PosixProfileTypeDef = ...,  # (3)
    Role: str = ...,
) -> UpdateAccessResponseTypeDef:  # (4)
    ...
  1. See HomeDirectoryTypeType
  2. See HomeDirectoryMapEntryTypeDef
  3. See PosixProfileTypeDef
  4. See UpdateAccessResponseTypeDef
Usage example with kwargs
kwargs: UpdateAccessRequestRequestTypeDef = {  # (1)
    "ServerId": ...,
    "ExternalId": ...,
}

parent.update_access(**kwargs)
  1. See UpdateAccessRequestRequestTypeDef

update_agreement

Updates some of the parameters for an existing agreement.

Type annotations and code completion for session.client("transfer").update_agreement method. boto3 documentation

Method definition
await def update_agreement(
    self,
    *,
    AgreementId: str,
    ServerId: str,
    Description: str = ...,
    Status: AgreementStatusTypeType = ...,  # (1)
    LocalProfileId: str = ...,
    PartnerProfileId: str = ...,
    BaseDirectory: str = ...,
    AccessRole: str = ...,
) -> UpdateAgreementResponseTypeDef:  # (2)
    ...
  1. See AgreementStatusTypeType
  2. See UpdateAgreementResponseTypeDef
Usage example with kwargs
kwargs: UpdateAgreementRequestRequestTypeDef = {  # (1)
    "AgreementId": ...,
    "ServerId": ...,
}

parent.update_agreement(**kwargs)
  1. See UpdateAgreementRequestRequestTypeDef

update_certificate

Updates the active and inactive dates for a certificate.

Type annotations and code completion for session.client("transfer").update_certificate method. boto3 documentation

Method definition
await def update_certificate(
    self,
    *,
    CertificateId: str,
    ActiveDate: Union[datetime, str] = ...,
    InactiveDate: Union[datetime, str] = ...,
    Description: str = ...,
) -> UpdateCertificateResponseTypeDef:  # (1)
    ...
  1. See UpdateCertificateResponseTypeDef
Usage example with kwargs
kwargs: UpdateCertificateRequestRequestTypeDef = {  # (1)
    "CertificateId": ...,
}

parent.update_certificate(**kwargs)
  1. See UpdateCertificateRequestRequestTypeDef

update_connector

Updates some of the parameters for an existing connector.

Type annotations and code completion for session.client("transfer").update_connector method. boto3 documentation

Method definition
await def update_connector(
    self,
    *,
    ConnectorId: str,
    Url: str = ...,
    As2Config: As2ConnectorConfigTypeDef = ...,  # (1)
    AccessRole: str = ...,
    LoggingRole: str = ...,
) -> UpdateConnectorResponseTypeDef:  # (2)
    ...
  1. See As2ConnectorConfigTypeDef
  2. See UpdateConnectorResponseTypeDef
Usage example with kwargs
kwargs: UpdateConnectorRequestRequestTypeDef = {  # (1)
    "ConnectorId": ...,
}

parent.update_connector(**kwargs)
  1. See UpdateConnectorRequestRequestTypeDef

update_profile

Updates some of the parameters for an existing profile.

Type annotations and code completion for session.client("transfer").update_profile method. boto3 documentation

Method definition
await def update_profile(
    self,
    *,
    ProfileId: str,
    CertificateIds: Sequence[str] = ...,
) -> UpdateProfileResponseTypeDef:  # (1)
    ...
  1. See UpdateProfileResponseTypeDef
Usage example with kwargs
kwargs: UpdateProfileRequestRequestTypeDef = {  # (1)
    "ProfileId": ...,
}

parent.update_profile(**kwargs)
  1. See UpdateProfileRequestRequestTypeDef

update_server

Updates the file transfer protocol-enabled server's properties after that server has been created.

Type annotations and code completion for session.client("transfer").update_server method. boto3 documentation

Method definition
await def update_server(
    self,
    *,
    ServerId: str,
    Certificate: str = ...,
    ProtocolDetails: ProtocolDetailsTypeDef = ...,  # (1)
    EndpointDetails: EndpointDetailsTypeDef = ...,  # (2)
    EndpointType: EndpointTypeType = ...,  # (3)
    HostKey: str = ...,
    IdentityProviderDetails: IdentityProviderDetailsTypeDef = ...,  # (4)
    LoggingRole: str = ...,
    PostAuthenticationLoginBanner: str = ...,
    PreAuthenticationLoginBanner: str = ...,
    Protocols: Sequence[ProtocolType] = ...,  # (5)
    SecurityPolicyName: str = ...,
    WorkflowDetails: WorkflowDetailsTypeDef = ...,  # (6)
) -> UpdateServerResponseTypeDef:  # (7)
    ...
  1. See ProtocolDetailsTypeDef
  2. See EndpointDetailsTypeDef
  3. See EndpointTypeType
  4. See IdentityProviderDetailsTypeDef
  5. See ProtocolType
  6. See WorkflowDetailsTypeDef
  7. See UpdateServerResponseTypeDef
Usage example with kwargs
kwargs: UpdateServerRequestRequestTypeDef = {  # (1)
    "ServerId": ...,
}

parent.update_server(**kwargs)
  1. See UpdateServerRequestRequestTypeDef

update_user

Assigns new properties to a user.

Type annotations and code completion for session.client("transfer").update_user method. boto3 documentation

Method definition
await def update_user(
    self,
    *,
    ServerId: str,
    UserName: str,
    HomeDirectory: str = ...,
    HomeDirectoryType: HomeDirectoryTypeType = ...,  # (1)
    HomeDirectoryMappings: Sequence[HomeDirectoryMapEntryTypeDef] = ...,  # (2)
    Policy: str = ...,
    PosixProfile: PosixProfileTypeDef = ...,  # (3)
    Role: str = ...,
) -> UpdateUserResponseTypeDef:  # (4)
    ...
  1. See HomeDirectoryTypeType
  2. See HomeDirectoryMapEntryTypeDef
  3. See PosixProfileTypeDef
  4. See UpdateUserResponseTypeDef
Usage example with kwargs
kwargs: UpdateUserRequestRequestTypeDef = {  # (1)
    "ServerId": ...,
    "UserName": ...,
}

parent.update_user(**kwargs)
  1. See UpdateUserRequestRequestTypeDef

__aenter__

Type annotations and code completion for session.client("transfer").__aenter__ method. boto3 documentation

Method definition
await def __aenter__(
    self,
) -> TransferClient:
    ...

__aexit__

Type annotations and code completion for session.client("transfer").__aexit__ method. boto3 documentation

Method definition
await def __aexit__(
    self,
    exc_type: Any,
    exc_val: Any,
    exc_tb: Any,
) -> Any:
    ...

get_paginator

Type annotations and code completion for session.client("transfer").get_paginator method with overloads.

get_waiter

Type annotations and code completion for session.client("transfer").get_waiter method with overloads.