airbyte.SourceAmazonSqs
Explore with Pulumi AI
SourceAmazonSqs Resource
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.airbyte.SourceAmazonSqs;
import com.pulumi.airbyte.SourceAmazonSqsArgs;
import com.pulumi.airbyte.inputs.SourceAmazonSqsConfigurationArgs;
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 mySourceAmazonsqs = new SourceAmazonSqs("mySourceAmazonsqs", SourceAmazonSqsArgs.builder()
.configuration(SourceAmazonSqsConfigurationArgs.builder()
.access_key("xxxxxHRNxxx3TBxxxxxx")
.attributes_to_return("attr1,attr2")
.max_batch_size(5)
.max_wait_time(5)
.queue_url("https://sqs.eu-west-1.amazonaws.com/1234567890/my-example-queue")
.region("ap-southeast-2")
.secret_key("hu+qE5exxxxT6o/ZrKsxxxxxxBhxxXLexxxxxVKz")
.target("GetQueueAttributes")
.visibility_timeout(20)
.build())
.definitionId("838e1ff6-5ade-49bb-b0dc-2f1fb8c96dde")
.secretId("...my_secret_id...")
.workspaceId("d064f44a-5875-4cf2-8a32-a321d2eb3460")
.build());
}
}
resources:
mySourceAmazonsqs:
type: airbyte:SourceAmazonSqs
properties:
configuration:
access_key: xxxxxHRNxxx3TBxxxxxx
attributes_to_return: attr1,attr2
max_batch_size: 5
max_wait_time: 5
queue_url: https://sqs.eu-west-1.amazonaws.com/1234567890/my-example-queue
region: ap-southeast-2
secret_key: hu+qE5exxxxT6o/ZrKsxxxxxxBhxxXLexxxxxVKz
target: GetQueueAttributes
visibility_timeout: 20
definitionId: 838e1ff6-5ade-49bb-b0dc-2f1fb8c96dde
secretId: '...my_secret_id...'
workspaceId: d064f44a-5875-4cf2-8a32-a321d2eb3460
Create SourceAmazonSqs Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SourceAmazonSqs(name: string, args: SourceAmazonSqsArgs, opts?: CustomResourceOptions);
@overload
def SourceAmazonSqs(resource_name: str,
args: SourceAmazonSqsArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SourceAmazonSqs(resource_name: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[SourceAmazonSqsConfigurationArgs] = None,
workspace_id: Optional[str] = None,
definition_id: Optional[str] = None,
name: Optional[str] = None,
secret_id: Optional[str] = None)
func NewSourceAmazonSqs(ctx *Context, name string, args SourceAmazonSqsArgs, opts ...ResourceOption) (*SourceAmazonSqs, error)
public SourceAmazonSqs(string name, SourceAmazonSqsArgs args, CustomResourceOptions? opts = null)
public SourceAmazonSqs(String name, SourceAmazonSqsArgs args)
public SourceAmazonSqs(String name, SourceAmazonSqsArgs args, CustomResourceOptions options)
type: airbyte:SourceAmazonSqs
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 SourceAmazonSqsArgs
- 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 SourceAmazonSqsArgs
- 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 SourceAmazonSqsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SourceAmazonSqsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SourceAmazonSqsArgs
- 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 sourceAmazonSqsResource = new Airbyte.SourceAmazonSqs("sourceAmazonSqsResource", new()
{
Configuration = new Airbyte.Inputs.SourceAmazonSqsConfigurationArgs
{
AccessKey = "string",
QueueUrl = "string",
SecretKey = "string",
AttributesToReturn = "string",
MaxBatchSize = 0,
MaxWaitTime = 0,
Region = "string",
Target = "string",
VisibilityTimeout = 0,
},
WorkspaceId = "string",
DefinitionId = "string",
Name = "string",
SecretId = "string",
});
example, err := airbyte.NewSourceAmazonSqs(ctx, "sourceAmazonSqsResource", &airbyte.SourceAmazonSqsArgs{
Configuration: &.SourceAmazonSqsConfigurationArgs{
AccessKey: pulumi.String("string"),
QueueUrl: pulumi.String("string"),
SecretKey: pulumi.String("string"),
AttributesToReturn: pulumi.String("string"),
MaxBatchSize: pulumi.Float64(0),
MaxWaitTime: pulumi.Float64(0),
Region: pulumi.String("string"),
Target: pulumi.String("string"),
VisibilityTimeout: pulumi.Float64(0),
},
WorkspaceId: pulumi.String("string"),
DefinitionId: pulumi.String("string"),
Name: pulumi.String("string"),
SecretId: pulumi.String("string"),
})
var sourceAmazonSqsResource = new SourceAmazonSqs("sourceAmazonSqsResource", SourceAmazonSqsArgs.builder()
.configuration(SourceAmazonSqsConfigurationArgs.builder()
.accessKey("string")
.queueUrl("string")
.secretKey("string")
.attributesToReturn("string")
.maxBatchSize(0)
.maxWaitTime(0)
.region("string")
.target("string")
.visibilityTimeout(0)
.build())
.workspaceId("string")
.definitionId("string")
.name("string")
.secretId("string")
.build());
source_amazon_sqs_resource = airbyte.SourceAmazonSqs("sourceAmazonSqsResource",
configuration={
"access_key": "string",
"queue_url": "string",
"secret_key": "string",
"attributes_to_return": "string",
"max_batch_size": 0,
"max_wait_time": 0,
"region": "string",
"target": "string",
"visibility_timeout": 0,
},
workspace_id="string",
definition_id="string",
name="string",
secret_id="string")
const sourceAmazonSqsResource = new airbyte.SourceAmazonSqs("sourceAmazonSqsResource", {
configuration: {
accessKey: "string",
queueUrl: "string",
secretKey: "string",
attributesToReturn: "string",
maxBatchSize: 0,
maxWaitTime: 0,
region: "string",
target: "string",
visibilityTimeout: 0,
},
workspaceId: "string",
definitionId: "string",
name: "string",
secretId: "string",
});
type: airbyte:SourceAmazonSqs
properties:
configuration:
accessKey: string
attributesToReturn: string
maxBatchSize: 0
maxWaitTime: 0
queueUrl: string
region: string
secretKey: string
target: string
visibilityTimeout: 0
definitionId: string
name: string
secretId: string
workspaceId: string
SourceAmazonSqs Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The SourceAmazonSqs resource accepts the following input properties:
- Configuration
Source
Amazon Sqs Configuration - Workspace
Id string - Definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- Configuration
Source
Amazon Sqs Configuration Args - Workspace
Id string - Definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration
Source
Amazon Sqs Configuration - workspace
Id String - definition
Id String - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- secret
Id String - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration
Source
Amazon Sqs Configuration - workspace
Id string - definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name string
- Name of the source e.g. dev-mysql-instance.
- secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration
Source
Amazon Sqs Configuration Args - workspace_
id str - definition_
id str - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name str
- Name of the source e.g. dev-mysql-instance.
- secret_
id str - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration Property Map
- workspace
Id String - definition
Id String - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- secret
Id String - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
Outputs
All input properties are implicitly available as output properties. Additionally, the SourceAmazonSqs resource produces the following output properties:
- Created
At double - Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Allocation SourceAmazon Sqs Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- Source
Id string - Source
Type string
- Created
At float64 - Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Allocation SourceAmazon Sqs Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- Source
Id string - Source
Type string
- created
At Double - id String
- The provider-assigned unique ID for this managed resource.
- resource
Allocation SourceAmazon Sqs Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- source
Id String - source
Type String
- created
At number - id string
- The provider-assigned unique ID for this managed resource.
- resource
Allocation SourceAmazon Sqs Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- source
Id string - source
Type string
- created_
at float - id str
- The provider-assigned unique ID for this managed resource.
- resource_
allocation SourceAmazon Sqs Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- source_
id str - source_
type str
- created
At Number - id String
- The provider-assigned unique ID for this managed resource.
- resource
Allocation Property Map - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- source
Id String - source
Type String
Look up Existing SourceAmazonSqs Resource
Get an existing SourceAmazonSqs 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?: SourceAmazonSqsState, opts?: CustomResourceOptions): SourceAmazonSqs
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[SourceAmazonSqsConfigurationArgs] = None,
created_at: Optional[float] = None,
definition_id: Optional[str] = None,
name: Optional[str] = None,
resource_allocation: Optional[SourceAmazonSqsResourceAllocationArgs] = None,
secret_id: Optional[str] = None,
source_id: Optional[str] = None,
source_type: Optional[str] = None,
workspace_id: Optional[str] = None) -> SourceAmazonSqs
func GetSourceAmazonSqs(ctx *Context, name string, id IDInput, state *SourceAmazonSqsState, opts ...ResourceOption) (*SourceAmazonSqs, error)
public static SourceAmazonSqs Get(string name, Input<string> id, SourceAmazonSqsState? state, CustomResourceOptions? opts = null)
public static SourceAmazonSqs get(String name, Output<String> id, SourceAmazonSqsState state, CustomResourceOptions options)
resources: _: type: airbyte:SourceAmazonSqs get: id: ${id}
- 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.
- Configuration
Source
Amazon Sqs Configuration - Created
At double - Definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- Resource
Allocation SourceAmazon Sqs Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- Source
Id string - Source
Type string - Workspace
Id string
- Configuration
Source
Amazon Sqs Configuration Args - Created
At float64 - Definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- Resource
Allocation SourceAmazon Sqs Resource Allocation Args - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- Source
Id string - Source
Type string - Workspace
Id string
- configuration
Source
Amazon Sqs Configuration - created
At Double - definition
Id String - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- resource
Allocation SourceAmazon Sqs Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- secret
Id String - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source
Id String - source
Type String - workspace
Id String
- configuration
Source
Amazon Sqs Configuration - created
At number - definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name string
- Name of the source e.g. dev-mysql-instance.
- resource
Allocation SourceAmazon Sqs Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source
Id string - source
Type string - workspace
Id string
- configuration
Source
Amazon Sqs Configuration Args - created_
at float - definition_
id str - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name str
- Name of the source e.g. dev-mysql-instance.
- resource_
allocation SourceAmazon Sqs Resource Allocation Args - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- secret_
id str - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source_
id str - source_
type str - workspace_
id str
- configuration Property Map
- created
At Number - definition
Id String - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- resource
Allocation Property Map - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- secret
Id String - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source
Id String - source
Type String - workspace
Id String
Supporting Types
SourceAmazonSqsConfiguration, SourceAmazonSqsConfigurationArgs
- Access
Key string - The Access Key ID of the AWS IAM Role to use for pulling messages
- Queue
Url string - URL of the SQS Queue
- Secret
Key string - The Secret Key of the AWS IAM Role to use for pulling messages
- Attributes
To stringReturn - Comma separated list of Mesage Attribute names to return. Default: "All"
- Max
Batch doubleSize - Max amount of messages to get in one batch (10 max). Default: 10
- Max
Wait doubleTime - Max amount of time in seconds to wait for messages in a single poll (20 max). Default: 20
- Region string
- AWS Region of the SQS Queue. Default: "us-east-1"; must be one of ["af-south-1", "ap-east-1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "ap-south-1", "ap-south-2", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-southeast-4", "ca-central-1", "ca-west-1", "cn-north-1", "cn-northwest-1", "eu-central-1", "eu-central-2", "eu-north-1", "eu-south-1", "eu-south-2", "eu-west-1", "eu-west-2", "eu-west-3", "il-central-1", "me-central-1", "me-south-1", "sa-east-1", "us-east-1", "us-east-2", "us-gov-east-1", "us-gov-west-1", "us-west-1", "us-west-2"]
- Target string
- Note - Different targets have different attribute enum requirements, please refer actions sections in https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/Welcome.html. Default: "ReceiveMessage"; must be one of ["GetQueueAttributes", "ReceiveMessage"]
- Visibility
Timeout double - Modify the Visibility Timeout of the individual message from the Queue's default (seconds). Default: 20
- Access
Key string - The Access Key ID of the AWS IAM Role to use for pulling messages
- Queue
Url string - URL of the SQS Queue
- Secret
Key string - The Secret Key of the AWS IAM Role to use for pulling messages
- Attributes
To stringReturn - Comma separated list of Mesage Attribute names to return. Default: "All"
- Max
Batch float64Size - Max amount of messages to get in one batch (10 max). Default: 10
- Max
Wait float64Time - Max amount of time in seconds to wait for messages in a single poll (20 max). Default: 20
- Region string
- AWS Region of the SQS Queue. Default: "us-east-1"; must be one of ["af-south-1", "ap-east-1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "ap-south-1", "ap-south-2", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-southeast-4", "ca-central-1", "ca-west-1", "cn-north-1", "cn-northwest-1", "eu-central-1", "eu-central-2", "eu-north-1", "eu-south-1", "eu-south-2", "eu-west-1", "eu-west-2", "eu-west-3", "il-central-1", "me-central-1", "me-south-1", "sa-east-1", "us-east-1", "us-east-2", "us-gov-east-1", "us-gov-west-1", "us-west-1", "us-west-2"]
- Target string
- Note - Different targets have different attribute enum requirements, please refer actions sections in https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/Welcome.html. Default: "ReceiveMessage"; must be one of ["GetQueueAttributes", "ReceiveMessage"]
- Visibility
Timeout float64 - Modify the Visibility Timeout of the individual message from the Queue's default (seconds). Default: 20
- access
Key String - The Access Key ID of the AWS IAM Role to use for pulling messages
- queue
Url String - URL of the SQS Queue
- secret
Key String - The Secret Key of the AWS IAM Role to use for pulling messages
- attributes
To StringReturn - Comma separated list of Mesage Attribute names to return. Default: "All"
- max
Batch DoubleSize - Max amount of messages to get in one batch (10 max). Default: 10
- max
Wait DoubleTime - Max amount of time in seconds to wait for messages in a single poll (20 max). Default: 20
- region String
- AWS Region of the SQS Queue. Default: "us-east-1"; must be one of ["af-south-1", "ap-east-1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "ap-south-1", "ap-south-2", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-southeast-4", "ca-central-1", "ca-west-1", "cn-north-1", "cn-northwest-1", "eu-central-1", "eu-central-2", "eu-north-1", "eu-south-1", "eu-south-2", "eu-west-1", "eu-west-2", "eu-west-3", "il-central-1", "me-central-1", "me-south-1", "sa-east-1", "us-east-1", "us-east-2", "us-gov-east-1", "us-gov-west-1", "us-west-1", "us-west-2"]
- target String
- Note - Different targets have different attribute enum requirements, please refer actions sections in https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/Welcome.html. Default: "ReceiveMessage"; must be one of ["GetQueueAttributes", "ReceiveMessage"]
- visibility
Timeout Double - Modify the Visibility Timeout of the individual message from the Queue's default (seconds). Default: 20
- access
Key string - The Access Key ID of the AWS IAM Role to use for pulling messages
- queue
Url string - URL of the SQS Queue
- secret
Key string - The Secret Key of the AWS IAM Role to use for pulling messages
- attributes
To stringReturn - Comma separated list of Mesage Attribute names to return. Default: "All"
- max
Batch numberSize - Max amount of messages to get in one batch (10 max). Default: 10
- max
Wait numberTime - Max amount of time in seconds to wait for messages in a single poll (20 max). Default: 20
- region string
- AWS Region of the SQS Queue. Default: "us-east-1"; must be one of ["af-south-1", "ap-east-1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "ap-south-1", "ap-south-2", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-southeast-4", "ca-central-1", "ca-west-1", "cn-north-1", "cn-northwest-1", "eu-central-1", "eu-central-2", "eu-north-1", "eu-south-1", "eu-south-2", "eu-west-1", "eu-west-2", "eu-west-3", "il-central-1", "me-central-1", "me-south-1", "sa-east-1", "us-east-1", "us-east-2", "us-gov-east-1", "us-gov-west-1", "us-west-1", "us-west-2"]
- target string
- Note - Different targets have different attribute enum requirements, please refer actions sections in https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/Welcome.html. Default: "ReceiveMessage"; must be one of ["GetQueueAttributes", "ReceiveMessage"]
- visibility
Timeout number - Modify the Visibility Timeout of the individual message from the Queue's default (seconds). Default: 20
- access_
key str - The Access Key ID of the AWS IAM Role to use for pulling messages
- queue_
url str - URL of the SQS Queue
- secret_
key str - The Secret Key of the AWS IAM Role to use for pulling messages
- attributes_
to_ strreturn - Comma separated list of Mesage Attribute names to return. Default: "All"
- max_
batch_ floatsize - Max amount of messages to get in one batch (10 max). Default: 10
- max_
wait_ floattime - Max amount of time in seconds to wait for messages in a single poll (20 max). Default: 20
- region str
- AWS Region of the SQS Queue. Default: "us-east-1"; must be one of ["af-south-1", "ap-east-1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "ap-south-1", "ap-south-2", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-southeast-4", "ca-central-1", "ca-west-1", "cn-north-1", "cn-northwest-1", "eu-central-1", "eu-central-2", "eu-north-1", "eu-south-1", "eu-south-2", "eu-west-1", "eu-west-2", "eu-west-3", "il-central-1", "me-central-1", "me-south-1", "sa-east-1", "us-east-1", "us-east-2", "us-gov-east-1", "us-gov-west-1", "us-west-1", "us-west-2"]
- target str
- Note - Different targets have different attribute enum requirements, please refer actions sections in https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/Welcome.html. Default: "ReceiveMessage"; must be one of ["GetQueueAttributes", "ReceiveMessage"]
- visibility_
timeout float - Modify the Visibility Timeout of the individual message from the Queue's default (seconds). Default: 20
- access
Key String - The Access Key ID of the AWS IAM Role to use for pulling messages
- queue
Url String - URL of the SQS Queue
- secret
Key String - The Secret Key of the AWS IAM Role to use for pulling messages
- attributes
To StringReturn - Comma separated list of Mesage Attribute names to return. Default: "All"
- max
Batch NumberSize - Max amount of messages to get in one batch (10 max). Default: 10
- max
Wait NumberTime - Max amount of time in seconds to wait for messages in a single poll (20 max). Default: 20
- region String
- AWS Region of the SQS Queue. Default: "us-east-1"; must be one of ["af-south-1", "ap-east-1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "ap-south-1", "ap-south-2", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-southeast-4", "ca-central-1", "ca-west-1", "cn-north-1", "cn-northwest-1", "eu-central-1", "eu-central-2", "eu-north-1", "eu-south-1", "eu-south-2", "eu-west-1", "eu-west-2", "eu-west-3", "il-central-1", "me-central-1", "me-south-1", "sa-east-1", "us-east-1", "us-east-2", "us-gov-east-1", "us-gov-west-1", "us-west-1", "us-west-2"]
- target String
- Note - Different targets have different attribute enum requirements, please refer actions sections in https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/Welcome.html. Default: "ReceiveMessage"; must be one of ["GetQueueAttributes", "ReceiveMessage"]
- visibility
Timeout Number - Modify the Visibility Timeout of the individual message from the Queue's default (seconds). Default: 20
SourceAmazonSqsResourceAllocation, SourceAmazonSqsResourceAllocationArgs
- Default
Source
Amazon Sqs Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics List<SourceAmazon Sqs Resource Allocation Job Specific>
- Default
Source
Amazon Sqs Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics []SourceAmazon Sqs Resource Allocation Job Specific
- default_
Source
Amazon Sqs Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<SourceAmazon Sqs Resource Allocation Job Specific>
- default
Source
Amazon Sqs Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics SourceAmazon Sqs Resource Allocation Job Specific[]
- default
Source
Amazon Sqs Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job_
specifics Sequence[SourceAmazon Sqs Resource Allocation Job Specific]
- default Property Map
- optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<Property Map>
SourceAmazonSqsResourceAllocationDefault, SourceAmazonSqsResourceAllocationDefaultArgs
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
- cpu
Limit string - cpu
Request string - ephemeral
Storage stringLimit - ephemeral
Storage stringRequest - memory
Limit string - memory
Request string
- cpu_
limit str - cpu_
request str - ephemeral_
storage_ strlimit - ephemeral_
storage_ strrequest - memory_
limit str - memory_
request str
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
SourceAmazonSqsResourceAllocationJobSpecific, SourceAmazonSqsResourceAllocationJobSpecificArgs
- Job
Type string - enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- Resource
Requirements SourceAmazon Sqs Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Type string - enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- Resource
Requirements SourceAmazon Sqs Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- job
Type String - enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- resource
Requirements SourceAmazon Sqs Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- job
Type string - enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- resource
Requirements SourceAmazon Sqs Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- job_
type str - enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- resource_
requirements SourceAmazon Sqs Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- job
Type String - enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- resource
Requirements Property Map - optional resource requirements to run workers (blank for unbounded allocations)
SourceAmazonSqsResourceAllocationJobSpecificResourceRequirements, SourceAmazonSqsResourceAllocationJobSpecificResourceRequirementsArgs
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
- cpu
Limit string - cpu
Request string - ephemeral
Storage stringLimit - ephemeral
Storage stringRequest - memory
Limit string - memory
Request string
- cpu_
limit str - cpu_
request str - ephemeral_
storage_ strlimit - ephemeral_
storage_ strrequest - memory_
limit str - memory_
request str
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
Import
$ pulumi import airbyte:index/sourceAmazonSqs:SourceAmazonSqs my_airbyte_source_amazon_sqs ""
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- airbyte airbytehq/terraform-provider-airbyte
- License
- Notes
- This Pulumi package is based on the
airbyte
Terraform Provider.