Class: Aws::AppIntegrationsService::Types::CreateDataIntegrationRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-appintegrationsservice/lib/aws-sdk-appintegrationsservice/types.rb

Overview

Note:

When making an API call, you may pass CreateDataIntegrationRequest data as a hash:

{
  name: "Name", # required
  description: "Description",
  kms_key: "NonBlankString",
  source_uri: "NonBlankString",
  schedule_config: {
    first_execution_from: "NonBlankString",
    object: "Object",
    schedule_expression: "Schedule",
  },
  tags: {
    "TagKey" => "TagValue",
  },
  client_token: "IdempotencyToken",
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#client_tokenString

A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

A suitable default value is auto-generated. You should normally not need to pass this option.

Returns:

  • (String)

80
81
82
83
84
85
86
87
88
89
90
# File 'gems/aws-sdk-appintegrationsservice/lib/aws-sdk-appintegrationsservice/types.rb', line 80

class CreateDataIntegrationRequest < Struct.new(
  :name,
  :description,
  :kms_key,
  :source_uri,
  :schedule_config,
  :tags,
  :client_token)
  SENSITIVE = []
  include Aws::Structure
end

#descriptionString

A description of the DataIntegration.

Returns:

  • (String)

80
81
82
83
84
85
86
87
88
89
90
# File 'gems/aws-sdk-appintegrationsservice/lib/aws-sdk-appintegrationsservice/types.rb', line 80

class CreateDataIntegrationRequest < Struct.new(
  :name,
  :description,
  :kms_key,
  :source_uri,
  :schedule_config,
  :tags,
  :client_token)
  SENSITIVE = []
  include Aws::Structure
end

#kms_keyString

The KMS key for the DataIntegration.

Returns:

  • (String)

80
81
82
83
84
85
86
87
88
89
90
# File 'gems/aws-sdk-appintegrationsservice/lib/aws-sdk-appintegrationsservice/types.rb', line 80

class CreateDataIntegrationRequest < Struct.new(
  :name,
  :description,
  :kms_key,
  :source_uri,
  :schedule_config,
  :tags,
  :client_token)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the DataIntegration.

Returns:

  • (String)

80
81
82
83
84
85
86
87
88
89
90
# File 'gems/aws-sdk-appintegrationsservice/lib/aws-sdk-appintegrationsservice/types.rb', line 80

class CreateDataIntegrationRequest < Struct.new(
  :name,
  :description,
  :kms_key,
  :source_uri,
  :schedule_config,
  :tags,
  :client_token)
  SENSITIVE = []
  include Aws::Structure
end

#schedule_configTypes::ScheduleConfiguration

The name of the data and how often it should be pulled from the source.


80
81
82
83
84
85
86
87
88
89
90
# File 'gems/aws-sdk-appintegrationsservice/lib/aws-sdk-appintegrationsservice/types.rb', line 80

class CreateDataIntegrationRequest < Struct.new(
  :name,
  :description,
  :kms_key,
  :source_uri,
  :schedule_config,
  :tags,
  :client_token)
  SENSITIVE = []
  include Aws::Structure
end

#source_uriString

The URI of the data source.

Returns:

  • (String)

80
81
82
83
84
85
86
87
88
89
90
# File 'gems/aws-sdk-appintegrationsservice/lib/aws-sdk-appintegrationsservice/types.rb', line 80

class CreateDataIntegrationRequest < Struct.new(
  :name,
  :description,
  :kms_key,
  :source_uri,
  :schedule_config,
  :tags,
  :client_token)
  SENSITIVE = []
  include Aws::Structure
end

#tagsHash<String,String>

One or more tags.

Returns:

  • (Hash<String,String>)

80
81
82
83
84
85
86
87
88
89
90
# File 'gems/aws-sdk-appintegrationsservice/lib/aws-sdk-appintegrationsservice/types.rb', line 80

class CreateDataIntegrationRequest < Struct.new(
  :name,
  :description,
  :kms_key,
  :source_uri,
  :schedule_config,
  :tags,
  :client_token)
  SENSITIVE = []
  include Aws::Structure
end