Try AWS Native preview for resources not in the classic version.
aws.transfer.Connector
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
Provides a AWS Transfer AS2 Connector resource.
Example Usage
Basic
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.transfer.Connector("example", {
accessRole: test.arn,
as2Config: {
compression: "DISABLED",
encryptionAlgorithm: "AWS128_CBC",
messageSubject: "For Connector",
localProfileId: local.profileId,
mdnResponse: "NONE",
mdnSigningAlgorithm: "NONE",
partnerProfileId: partner.profileId,
signingAlgorithm: "NONE",
},
url: "http://www.test.com",
});
import pulumi
import pulumi_aws as aws
example = aws.transfer.Connector("example",
access_role=test["arn"],
as2_config={
"compression": "DISABLED",
"encryptionAlgorithm": "AWS128_CBC",
"messageSubject": "For Connector",
"localProfileId": local["profileId"],
"mdnResponse": "NONE",
"mdnSigningAlgorithm": "NONE",
"partnerProfileId": partner["profileId"],
"signingAlgorithm": "NONE",
},
url="http://www.test.com")
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/transfer"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := transfer.NewConnector(ctx, "example", &transfer.ConnectorArgs{
AccessRole: pulumi.Any(test.Arn),
As2Config: &transfer.ConnectorAs2ConfigArgs{
Compression: pulumi.String("DISABLED"),
EncryptionAlgorithm: pulumi.String("AWS128_CBC"),
MessageSubject: pulumi.String("For Connector"),
LocalProfileId: pulumi.Any(local.ProfileId),
MdnResponse: pulumi.String("NONE"),
MdnSigningAlgorithm: pulumi.String("NONE"),
PartnerProfileId: pulumi.Any(partner.ProfileId),
SigningAlgorithm: pulumi.String("NONE"),
},
Url: pulumi.String("http://www.test.com"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Transfer.Connector("example", new()
{
AccessRole = test.Arn,
As2Config = new Aws.Transfer.Inputs.ConnectorAs2ConfigArgs
{
Compression = "DISABLED",
EncryptionAlgorithm = "AWS128_CBC",
MessageSubject = "For Connector",
LocalProfileId = local.ProfileId,
MdnResponse = "NONE",
MdnSigningAlgorithm = "NONE",
PartnerProfileId = partner.ProfileId,
SigningAlgorithm = "NONE",
},
Url = "http://www.test.com",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.transfer.Connector;
import com.pulumi.aws.transfer.ConnectorArgs;
import com.pulumi.aws.transfer.inputs.ConnectorAs2ConfigArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new Connector("example", ConnectorArgs.builder()
.accessRole(test.arn())
.as2Config(ConnectorAs2ConfigArgs.builder()
.compression("DISABLED")
.encryptionAlgorithm("AWS128_CBC")
.messageSubject("For Connector")
.localProfileId(local.profileId())
.mdnResponse("NONE")
.mdnSigningAlgorithm("NONE")
.partnerProfileId(partner.profileId())
.signingAlgorithm("NONE")
.build())
.url("http://www.test.com")
.build());
}
}
resources:
example:
type: aws:transfer:Connector
properties:
accessRole: ${test.arn}
as2Config:
compression: DISABLED
encryptionAlgorithm: AWS128_CBC
messageSubject: For Connector
localProfileId: ${local.profileId}
mdnResponse: NONE
mdnSigningAlgorithm: NONE
partnerProfileId: ${partner.profileId}
signingAlgorithm: NONE
url: http://www.test.com
SFTP Connector
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.transfer.Connector("example", {
accessRole: test.arn,
sftpConfig: {
trustedHostKeys: ["ssh-rsa AAAAB3NYourKeysHere"],
userSecretId: exampleAwsSecretsmanagerSecret.id,
},
url: "sftp://test.com",
});
import pulumi
import pulumi_aws as aws
example = aws.transfer.Connector("example",
access_role=test["arn"],
sftp_config={
"trustedHostKeys": ["ssh-rsa AAAAB3NYourKeysHere"],
"userSecretId": example_aws_secretsmanager_secret["id"],
},
url="sftp://test.com")
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/transfer"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := transfer.NewConnector(ctx, "example", &transfer.ConnectorArgs{
AccessRole: pulumi.Any(test.Arn),
SftpConfig: &transfer.ConnectorSftpConfigArgs{
TrustedHostKeys: pulumi.StringArray{
pulumi.String("ssh-rsa AAAAB3NYourKeysHere"),
},
UserSecretId: pulumi.Any(exampleAwsSecretsmanagerSecret.Id),
},
Url: pulumi.String("sftp://test.com"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Transfer.Connector("example", new()
{
AccessRole = test.Arn,
SftpConfig = new Aws.Transfer.Inputs.ConnectorSftpConfigArgs
{
TrustedHostKeys = new[]
{
"ssh-rsa AAAAB3NYourKeysHere",
},
UserSecretId = exampleAwsSecretsmanagerSecret.Id,
},
Url = "sftp://test.com",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.transfer.Connector;
import com.pulumi.aws.transfer.ConnectorArgs;
import com.pulumi.aws.transfer.inputs.ConnectorSftpConfigArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new Connector("example", ConnectorArgs.builder()
.accessRole(test.arn())
.sftpConfig(ConnectorSftpConfigArgs.builder()
.trustedHostKeys("ssh-rsa AAAAB3NYourKeysHere")
.userSecretId(exampleAwsSecretsmanagerSecret.id())
.build())
.url("sftp://test.com")
.build());
}
}
resources:
example:
type: aws:transfer:Connector
properties:
accessRole: ${test.arn}
sftpConfig:
trustedHostKeys:
- ssh-rsa AAAAB3NYourKeysHere
userSecretId: ${exampleAwsSecretsmanagerSecret.id}
url: sftp://test.com
Create Connector Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Connector(name: string, args: ConnectorArgs, opts?: CustomResourceOptions);
@overload
def Connector(resource_name: str,
args: ConnectorArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Connector(resource_name: str,
opts: Optional[ResourceOptions] = None,
access_role: Optional[str] = None,
url: Optional[str] = None,
as2_config: Optional[ConnectorAs2ConfigArgs] = None,
logging_role: Optional[str] = None,
security_policy_name: Optional[str] = None,
sftp_config: Optional[ConnectorSftpConfigArgs] = None,
tags: Optional[Mapping[str, str]] = None)
func NewConnector(ctx *Context, name string, args ConnectorArgs, opts ...ResourceOption) (*Connector, error)
public Connector(string name, ConnectorArgs args, CustomResourceOptions? opts = null)
public Connector(String name, ConnectorArgs args)
public Connector(String name, ConnectorArgs args, CustomResourceOptions options)
type: aws:transfer:Connector
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ConnectorArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ConnectorArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ConnectorArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ConnectorArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ConnectorArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var awsConnectorResource = new Aws.Transfer.Connector("awsConnectorResource", new()
{
AccessRole = "string",
Url = "string",
As2Config = new Aws.Transfer.Inputs.ConnectorAs2ConfigArgs
{
Compression = "string",
EncryptionAlgorithm = "string",
LocalProfileId = "string",
MdnResponse = "string",
PartnerProfileId = "string",
SigningAlgorithm = "string",
MdnSigningAlgorithm = "string",
MessageSubject = "string",
},
LoggingRole = "string",
SecurityPolicyName = "string",
SftpConfig = new Aws.Transfer.Inputs.ConnectorSftpConfigArgs
{
TrustedHostKeys = new[]
{
"string",
},
UserSecretId = "string",
},
Tags =
{
{ "string", "string" },
},
});
example, err := transfer.NewConnector(ctx, "awsConnectorResource", &transfer.ConnectorArgs{
AccessRole: pulumi.String("string"),
Url: pulumi.String("string"),
As2Config: &transfer.ConnectorAs2ConfigArgs{
Compression: pulumi.String("string"),
EncryptionAlgorithm: pulumi.String("string"),
LocalProfileId: pulumi.String("string"),
MdnResponse: pulumi.String("string"),
PartnerProfileId: pulumi.String("string"),
SigningAlgorithm: pulumi.String("string"),
MdnSigningAlgorithm: pulumi.String("string"),
MessageSubject: pulumi.String("string"),
},
LoggingRole: pulumi.String("string"),
SecurityPolicyName: pulumi.String("string"),
SftpConfig: &transfer.ConnectorSftpConfigArgs{
TrustedHostKeys: pulumi.StringArray{
pulumi.String("string"),
},
UserSecretId: pulumi.String("string"),
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var awsConnectorResource = new Connector("awsConnectorResource", ConnectorArgs.builder()
.accessRole("string")
.url("string")
.as2Config(ConnectorAs2ConfigArgs.builder()
.compression("string")
.encryptionAlgorithm("string")
.localProfileId("string")
.mdnResponse("string")
.partnerProfileId("string")
.signingAlgorithm("string")
.mdnSigningAlgorithm("string")
.messageSubject("string")
.build())
.loggingRole("string")
.securityPolicyName("string")
.sftpConfig(ConnectorSftpConfigArgs.builder()
.trustedHostKeys("string")
.userSecretId("string")
.build())
.tags(Map.of("string", "string"))
.build());
aws_connector_resource = aws.transfer.Connector("awsConnectorResource",
access_role="string",
url="string",
as2_config={
"compression": "string",
"encryptionAlgorithm": "string",
"localProfileId": "string",
"mdnResponse": "string",
"partnerProfileId": "string",
"signingAlgorithm": "string",
"mdnSigningAlgorithm": "string",
"messageSubject": "string",
},
logging_role="string",
security_policy_name="string",
sftp_config={
"trustedHostKeys": ["string"],
"userSecretId": "string",
},
tags={
"string": "string",
})
const awsConnectorResource = new aws.transfer.Connector("awsConnectorResource", {
accessRole: "string",
url: "string",
as2Config: {
compression: "string",
encryptionAlgorithm: "string",
localProfileId: "string",
mdnResponse: "string",
partnerProfileId: "string",
signingAlgorithm: "string",
mdnSigningAlgorithm: "string",
messageSubject: "string",
},
loggingRole: "string",
securityPolicyName: "string",
sftpConfig: {
trustedHostKeys: ["string"],
userSecretId: "string",
},
tags: {
string: "string",
},
});
type: aws:transfer:Connector
properties:
accessRole: string
as2Config:
compression: string
encryptionAlgorithm: string
localProfileId: string
mdnResponse: string
mdnSigningAlgorithm: string
messageSubject: string
partnerProfileId: string
signingAlgorithm: string
loggingRole: string
securityPolicyName: string
sftpConfig:
trustedHostKeys:
- string
userSecretId: string
tags:
string: string
url: string
Connector Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Connector resource accepts the following input properties:
- Access
Role string - The IAM Role which provides read and write access to the parent directory of the file location mentioned in the StartFileTransfer request.
- Url string
- The URL of the partners AS2 endpoint or SFTP endpoint.
- As2Config
Connector
As2Config - Either SFTP or AS2 is configured.The parameters to configure for the connector object. Fields documented below.
- Logging
Role string - The IAM Role which is required for allowing the connector to turn on CloudWatch logging for Amazon S3 events.
- Security
Policy stringName - Name of the security policy for the connector.
- Sftp
Config ConnectorSftp Config - Either SFTP or AS2 is configured.The parameters to configure for the connector object. Fields documented below.
- Dictionary<string, string>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- Access
Role string - The IAM Role which provides read and write access to the parent directory of the file location mentioned in the StartFileTransfer request.
- Url string
- The URL of the partners AS2 endpoint or SFTP endpoint.
- As2Config
Connector
As2Config Args - Either SFTP or AS2 is configured.The parameters to configure for the connector object. Fields documented below.
- Logging
Role string - The IAM Role which is required for allowing the connector to turn on CloudWatch logging for Amazon S3 events.
- Security
Policy stringName - Name of the security policy for the connector.
- Sftp
Config ConnectorSftp Config Args - Either SFTP or AS2 is configured.The parameters to configure for the connector object. Fields documented below.
- map[string]string
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- access
Role String - The IAM Role which provides read and write access to the parent directory of the file location mentioned in the StartFileTransfer request.
- url String
- The URL of the partners AS2 endpoint or SFTP endpoint.
- as2Config
Connector
As2Config - Either SFTP or AS2 is configured.The parameters to configure for the connector object. Fields documented below.
- logging
Role String - The IAM Role which is required for allowing the connector to turn on CloudWatch logging for Amazon S3 events.
- security
Policy StringName - Name of the security policy for the connector.
- sftp
Config ConnectorSftp Config - Either SFTP or AS2 is configured.The parameters to configure for the connector object. Fields documented below.
- Map<String,String>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- access
Role string - The IAM Role which provides read and write access to the parent directory of the file location mentioned in the StartFileTransfer request.
- url string
- The URL of the partners AS2 endpoint or SFTP endpoint.
- as2Config
Connector
As2Config - Either SFTP or AS2 is configured.The parameters to configure for the connector object. Fields documented below.
- logging
Role string - The IAM Role which is required for allowing the connector to turn on CloudWatch logging for Amazon S3 events.
- security
Policy stringName - Name of the security policy for the connector.
- sftp
Config ConnectorSftp Config - Either SFTP or AS2 is configured.The parameters to configure for the connector object. Fields documented below.
- {[key: string]: string}
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- access_
role str - The IAM Role which provides read and write access to the parent directory of the file location mentioned in the StartFileTransfer request.
- url str
- The URL of the partners AS2 endpoint or SFTP endpoint.
- as2_
config ConnectorAs2Config Args - Either SFTP or AS2 is configured.The parameters to configure for the connector object. Fields documented below.
- logging_
role str - The IAM Role which is required for allowing the connector to turn on CloudWatch logging for Amazon S3 events.
- security_
policy_ strname - Name of the security policy for the connector.
- sftp_
config ConnectorSftp Config Args - Either SFTP or AS2 is configured.The parameters to configure for the connector object. Fields documented below.
- Mapping[str, str]
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- access
Role String - The IAM Role which provides read and write access to the parent directory of the file location mentioned in the StartFileTransfer request.
- url String
- The URL of the partners AS2 endpoint or SFTP endpoint.
- as2Config Property Map
- Either SFTP or AS2 is configured.The parameters to configure for the connector object. Fields documented below.
- logging
Role String - The IAM Role which is required for allowing the connector to turn on CloudWatch logging for Amazon S3 events.
- security
Policy StringName - Name of the security policy for the connector.
- sftp
Config Property Map - Either SFTP or AS2 is configured.The parameters to configure for the connector object. Fields documented below.
- Map<String>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
Outputs
All input properties are implicitly available as output properties. Additionally, the Connector resource produces the following output properties:
- Arn string
- The ARN of the connector.
- Connector
Id string - The unique identifier for the AS2 profile or SFTP Profile.
- Id string
- The provider-assigned unique ID for this managed resource.
- Dictionary<string, string>
- Arn string
- The ARN of the connector.
- Connector
Id string - The unique identifier for the AS2 profile or SFTP Profile.
- Id string
- The provider-assigned unique ID for this managed resource.
- map[string]string
- arn String
- The ARN of the connector.
- connector
Id String - The unique identifier for the AS2 profile or SFTP Profile.
- id String
- The provider-assigned unique ID for this managed resource.
- Map<String,String>
- arn string
- The ARN of the connector.
- connector
Id string - The unique identifier for the AS2 profile or SFTP Profile.
- id string
- The provider-assigned unique ID for this managed resource.
- {[key: string]: string}
- arn str
- The ARN of the connector.
- connector_
id str - The unique identifier for the AS2 profile or SFTP Profile.
- id str
- The provider-assigned unique ID for this managed resource.
- Mapping[str, str]
- arn String
- The ARN of the connector.
- connector
Id String - The unique identifier for the AS2 profile or SFTP Profile.
- id String
- The provider-assigned unique ID for this managed resource.
- Map<String>
Look up Existing Connector Resource
Get an existing Connector resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ConnectorState, opts?: CustomResourceOptions): Connector
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
access_role: Optional[str] = None,
arn: Optional[str] = None,
as2_config: Optional[ConnectorAs2ConfigArgs] = None,
connector_id: Optional[str] = None,
logging_role: Optional[str] = None,
security_policy_name: Optional[str] = None,
sftp_config: Optional[ConnectorSftpConfigArgs] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None,
url: Optional[str] = None) -> Connector
func GetConnector(ctx *Context, name string, id IDInput, state *ConnectorState, opts ...ResourceOption) (*Connector, error)
public static Connector Get(string name, Input<string> id, ConnectorState? state, CustomResourceOptions? opts = null)
public static Connector get(String name, Output<String> id, ConnectorState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Access
Role string - The IAM Role which provides read and write access to the parent directory of the file location mentioned in the StartFileTransfer request.
- Arn string
- The ARN of the connector.
- As2Config
Connector
As2Config - Either SFTP or AS2 is configured.The parameters to configure for the connector object. Fields documented below.
- Connector
Id string - The unique identifier for the AS2 profile or SFTP Profile.
- Logging
Role string - The IAM Role which is required for allowing the connector to turn on CloudWatch logging for Amazon S3 events.
- Security
Policy stringName - Name of the security policy for the connector.
- Sftp
Config ConnectorSftp Config - Either SFTP or AS2 is configured.The parameters to configure for the connector object. Fields documented below.
- Dictionary<string, string>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Dictionary<string, string>
- Url string
- The URL of the partners AS2 endpoint or SFTP endpoint.
- Access
Role string - The IAM Role which provides read and write access to the parent directory of the file location mentioned in the StartFileTransfer request.
- Arn string
- The ARN of the connector.
- As2Config
Connector
As2Config Args - Either SFTP or AS2 is configured.The parameters to configure for the connector object. Fields documented below.
- Connector
Id string - The unique identifier for the AS2 profile or SFTP Profile.
- Logging
Role string - The IAM Role which is required for allowing the connector to turn on CloudWatch logging for Amazon S3 events.
- Security
Policy stringName - Name of the security policy for the connector.
- Sftp
Config ConnectorSftp Config Args - Either SFTP or AS2 is configured.The parameters to configure for the connector object. Fields documented below.
- map[string]string
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - map[string]string
- Url string
- The URL of the partners AS2 endpoint or SFTP endpoint.
- access
Role String - The IAM Role which provides read and write access to the parent directory of the file location mentioned in the StartFileTransfer request.
- arn String
- The ARN of the connector.
- as2Config
Connector
As2Config - Either SFTP or AS2 is configured.The parameters to configure for the connector object. Fields documented below.
- connector
Id String - The unique identifier for the AS2 profile or SFTP Profile.
- logging
Role String - The IAM Role which is required for allowing the connector to turn on CloudWatch logging for Amazon S3 events.
- security
Policy StringName - Name of the security policy for the connector.
- sftp
Config ConnectorSftp Config - Either SFTP or AS2 is configured.The parameters to configure for the connector object. Fields documented below.
- Map<String,String>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String,String>
- url String
- The URL of the partners AS2 endpoint or SFTP endpoint.
- access
Role string - The IAM Role which provides read and write access to the parent directory of the file location mentioned in the StartFileTransfer request.
- arn string
- The ARN of the connector.
- as2Config
Connector
As2Config - Either SFTP or AS2 is configured.The parameters to configure for the connector object. Fields documented below.
- connector
Id string - The unique identifier for the AS2 profile or SFTP Profile.
- logging
Role string - The IAM Role which is required for allowing the connector to turn on CloudWatch logging for Amazon S3 events.
- security
Policy stringName - Name of the security policy for the connector.
- sftp
Config ConnectorSftp Config - Either SFTP or AS2 is configured.The parameters to configure for the connector object. Fields documented below.
- {[key: string]: string}
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - {[key: string]: string}
- url string
- The URL of the partners AS2 endpoint or SFTP endpoint.
- access_
role str - The IAM Role which provides read and write access to the parent directory of the file location mentioned in the StartFileTransfer request.
- arn str
- The ARN of the connector.
- as2_
config ConnectorAs2Config Args - Either SFTP or AS2 is configured.The parameters to configure for the connector object. Fields documented below.
- connector_
id str - The unique identifier for the AS2 profile or SFTP Profile.
- logging_
role str - The IAM Role which is required for allowing the connector to turn on CloudWatch logging for Amazon S3 events.
- security_
policy_ strname - Name of the security policy for the connector.
- sftp_
config ConnectorSftp Config Args - Either SFTP or AS2 is configured.The parameters to configure for the connector object. Fields documented below.
- Mapping[str, str]
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Mapping[str, str]
- url str
- The URL of the partners AS2 endpoint or SFTP endpoint.
- access
Role String - The IAM Role which provides read and write access to the parent directory of the file location mentioned in the StartFileTransfer request.
- arn String
- The ARN of the connector.
- as2Config Property Map
- Either SFTP or AS2 is configured.The parameters to configure for the connector object. Fields documented below.
- connector
Id String - The unique identifier for the AS2 profile or SFTP Profile.
- logging
Role String - The IAM Role which is required for allowing the connector to turn on CloudWatch logging for Amazon S3 events.
- security
Policy StringName - Name of the security policy for the connector.
- sftp
Config Property Map - Either SFTP or AS2 is configured.The parameters to configure for the connector object. Fields documented below.
- Map<String>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String>
- url String
- The URL of the partners AS2 endpoint or SFTP endpoint.
Supporting Types
ConnectorAs2Config, ConnectorAs2ConfigArgs
- Compression string
- Encryption
Algorithm string - Local
Profile stringId - Mdn
Response string - Partner
Profile stringId - Signing
Algorithm string - Mdn
Signing stringAlgorithm - Message
Subject string
- Compression string
- Encryption
Algorithm string - Local
Profile stringId - Mdn
Response string - Partner
Profile stringId - Signing
Algorithm string - Mdn
Signing stringAlgorithm - Message
Subject string
- compression String
- encryption
Algorithm String - local
Profile StringId - mdn
Response String - partner
Profile StringId - signing
Algorithm String - mdn
Signing StringAlgorithm - message
Subject String
- compression string
- encryption
Algorithm string - local
Profile stringId - mdn
Response string - partner
Profile stringId - signing
Algorithm string - mdn
Signing stringAlgorithm - message
Subject string
- compression String
- encryption
Algorithm String - local
Profile StringId - mdn
Response String - partner
Profile StringId - signing
Algorithm String - mdn
Signing StringAlgorithm - message
Subject String
ConnectorSftpConfig, ConnectorSftpConfigArgs
- Trusted
Host List<string>Keys - User
Secret stringId
- Trusted
Host []stringKeys - User
Secret stringId
- trusted
Host List<String>Keys - user
Secret StringId
- trusted
Host string[]Keys - user
Secret stringId
- trusted_
host_ Sequence[str]keys - user_
secret_ strid
- trusted
Host List<String>Keys - user
Secret StringId
Import
Using pulumi import
, import Transfer AS2 Connector using the connector_id
. For example:
$ pulumi import aws:transfer/connector:Connector example c-4221a88afd5f4362a
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aws
Terraform Provider.
Try AWS Native preview for resources not in the classic version.