Interface CreateConnectorRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<CreateConnectorRequest.Builder,CreateConnectorRequest>,SdkBuilder<CreateConnectorRequest.Builder,CreateConnectorRequest>,SdkPojo,SdkRequest.Builder,TransferRequest.Builder
- Enclosing class:
- CreateConnectorRequest
public static interface CreateConnectorRequest.Builder extends TransferRequest.Builder, SdkPojo, CopyableBuilder<CreateConnectorRequest.Builder,CreateConnectorRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description CreateConnectorRequest.BuilderaccessRole(String accessRole)Connectors are used to send files using either the AS2 or SFTP protocol.default CreateConnectorRequest.Builderas2Config(Consumer<As2ConnectorConfig.Builder> as2Config)A structure that contains the parameters for an AS2 connector object.CreateConnectorRequest.Builderas2Config(As2ConnectorConfig as2Config)A structure that contains the parameters for an AS2 connector object.CreateConnectorRequest.BuilderloggingRole(String loggingRole)The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role that allows a connector to turn on CloudWatch logging for Amazon S3 events.CreateConnectorRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)CreateConnectorRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)CreateConnectorRequest.BuildersecurityPolicyName(String securityPolicyName)Specifies the name of the security policy for the connector.default CreateConnectorRequest.BuildersftpConfig(Consumer<SftpConnectorConfig.Builder> sftpConfig)A structure that contains the parameters for an SFTP connector object.CreateConnectorRequest.BuildersftpConfig(SftpConnectorConfig sftpConfig)A structure that contains the parameters for an SFTP connector object.CreateConnectorRequest.Buildertags(Collection<Tag> tags)Key-value pairs that can be used to group and search for connectors.CreateConnectorRequest.Buildertags(Consumer<Tag.Builder>... tags)Key-value pairs that can be used to group and search for connectors.CreateConnectorRequest.Buildertags(Tag... tags)Key-value pairs that can be used to group and search for connectors.CreateConnectorRequest.Builderurl(String url)The URL of the partner's AS2 or SFTP endpoint.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.services.transfer.model.TransferRequest.Builder
build
-
-
-
-
Method Detail
-
url
CreateConnectorRequest.Builder url(String url)
The URL of the partner's AS2 or SFTP endpoint.
- Parameters:
url- The URL of the partner's AS2 or SFTP endpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
as2Config
CreateConnectorRequest.Builder as2Config(As2ConnectorConfig as2Config)
A structure that contains the parameters for an AS2 connector object.
- Parameters:
as2Config- A structure that contains the parameters for an AS2 connector object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
as2Config
default CreateConnectorRequest.Builder as2Config(Consumer<As2ConnectorConfig.Builder> as2Config)
A structure that contains the parameters for an AS2 connector object.
This is a convenience method that creates an instance of theAs2ConnectorConfig.Builderavoiding the need to create one manually viaAs2ConnectorConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toas2Config(As2ConnectorConfig).- Parameters:
as2Config- a consumer that will call methods onAs2ConnectorConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
as2Config(As2ConnectorConfig)
-
accessRole
CreateConnectorRequest.Builder accessRole(String accessRole)
Connectors are used to send files using either the AS2 or SFTP protocol. For the access role, provide the Amazon Resource Name (ARN) of the Identity and Access Management role to use.
For AS2 connectors
With AS2, you can send files by calling
StartFileTransferand specifying the file paths in the request parameter,SendFilePaths. We use the file’s parent directory (for example, for--send-file-paths /bucket/dir/file.txt, parent directory is/bucket/dir/) to temporarily store a processed AS2 message file, store the MDN when we receive them from the partner, and write a final JSON file containing relevant metadata of the transmission. So, theAccessRoleneeds to provide read and write access to the parent directory of the file location used in theStartFileTransferrequest. Additionally, you need to provide read and write access to the parent directory of the files that you intend to send withStartFileTransfer.If you are using Basic authentication for your AS2 connector, the access role requires the
secretsmanager:GetSecretValuepermission for the secret. If the secret is encrypted using a customer-managed key instead of the Amazon Web Services managed key in Secrets Manager, then the role also needs thekms:Decryptpermission for that key.For SFTP connectors
Make sure that the access role provides read and write access to the parent directory of the file location that's used in the
StartFileTransferrequest. Additionally, make sure that the role providessecretsmanager:GetSecretValuepermission to Secrets Manager.- Parameters:
accessRole- Connectors are used to send files using either the AS2 or SFTP protocol. For the access role, provide the Amazon Resource Name (ARN) of the Identity and Access Management role to use.For AS2 connectors
With AS2, you can send files by calling
StartFileTransferand specifying the file paths in the request parameter,SendFilePaths. We use the file’s parent directory (for example, for--send-file-paths /bucket/dir/file.txt, parent directory is/bucket/dir/) to temporarily store a processed AS2 message file, store the MDN when we receive them from the partner, and write a final JSON file containing relevant metadata of the transmission. So, theAccessRoleneeds to provide read and write access to the parent directory of the file location used in theStartFileTransferrequest. Additionally, you need to provide read and write access to the parent directory of the files that you intend to send withStartFileTransfer.If you are using Basic authentication for your AS2 connector, the access role requires the
secretsmanager:GetSecretValuepermission for the secret. If the secret is encrypted using a customer-managed key instead of the Amazon Web Services managed key in Secrets Manager, then the role also needs thekms:Decryptpermission for that key.For SFTP connectors
Make sure that the access role provides read and write access to the parent directory of the file location that's used in the
StartFileTransferrequest. Additionally, make sure that the role providessecretsmanager:GetSecretValuepermission to Secrets Manager.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
loggingRole
CreateConnectorRequest.Builder loggingRole(String loggingRole)
The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role that allows a connector to turn on CloudWatch logging for Amazon S3 events. When set, you can view connector activity in your CloudWatch logs.
- Parameters:
loggingRole- The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role that allows a connector to turn on CloudWatch logging for Amazon S3 events. When set, you can view connector activity in your CloudWatch logs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateConnectorRequest.Builder tags(Collection<Tag> tags)
Key-value pairs that can be used to group and search for connectors. Tags are metadata attached to connectors for any purpose.
- Parameters:
tags- Key-value pairs that can be used to group and search for connectors. Tags are metadata attached to connectors for any purpose.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateConnectorRequest.Builder tags(Tag... tags)
Key-value pairs that can be used to group and search for connectors. Tags are metadata attached to connectors for any purpose.
- Parameters:
tags- Key-value pairs that can be used to group and search for connectors. Tags are metadata attached to connectors for any purpose.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateConnectorRequest.Builder tags(Consumer<Tag.Builder>... tags)
Key-value pairs that can be used to group and search for connectors. Tags are metadata attached to connectors for any purpose.
This is a convenience method that creates an instance of theTag.Builderavoiding the need to create one manually viaTag.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tags(List.) - Parameters:
tags- a consumer that will call methods onTag.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tags(java.util.Collection)
-
sftpConfig
CreateConnectorRequest.Builder sftpConfig(SftpConnectorConfig sftpConfig)
A structure that contains the parameters for an SFTP connector object.
- Parameters:
sftpConfig- A structure that contains the parameters for an SFTP connector object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sftpConfig
default CreateConnectorRequest.Builder sftpConfig(Consumer<SftpConnectorConfig.Builder> sftpConfig)
A structure that contains the parameters for an SFTP connector object.
This is a convenience method that creates an instance of theSftpConnectorConfig.Builderavoiding the need to create one manually viaSftpConnectorConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tosftpConfig(SftpConnectorConfig).- Parameters:
sftpConfig- a consumer that will call methods onSftpConnectorConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
sftpConfig(SftpConnectorConfig)
-
securityPolicyName
CreateConnectorRequest.Builder securityPolicyName(String securityPolicyName)
Specifies the name of the security policy for the connector.
- Parameters:
securityPolicyName- Specifies the name of the security policy for the connector.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
CreateConnectorRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
CreateConnectorRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-