Class: Aws::Pinpoint::Types::ImportJobRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-pinpoint/types.rb

Overview

Note:

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

{
  define_segment: false,
  external_id: "__string",
  format: "CSV", # accepts CSV, JSON
  register_endpoints: false,
  role_arn: "__string",
  s3_url: "__string",
  segment_id: "__string",
  segment_name: "__string",
}

Import job request.

Instance Attribute Summary collapse

Instance Attribute Details

#define_segmentBoolean

Sets whether the endpoints create a segment when they are imported.

Returns:

  • (Boolean)


6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
# File 'lib/aws-sdk-pinpoint/types.rb', line 6144

class ImportJobRequest < Struct.new(
  :define_segment,
  :external_id,
  :format,
  :register_endpoints,
  :role_arn,
  :s3_url,
  :segment_id,
  :segment_name)
  include Aws::Structure
end

#external_idString

(Deprecated) Your AWS account ID, which you assigned to the ExternalID key in an IAM trust policy. Used by Amazon Pinpoint to assume an IAM role. This requirement is removed, and external IDs are not recommended for IAM roles assumed by Amazon Pinpoint.

Returns:

  • (String)


6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
# File 'lib/aws-sdk-pinpoint/types.rb', line 6144

class ImportJobRequest < Struct.new(
  :define_segment,
  :external_id,
  :format,
  :register_endpoints,
  :role_arn,
  :s3_url,
  :segment_id,
  :segment_name)
  include Aws::Structure
end

#formatString

The format of the files that contain the endpoint definitions. Valid values: CSV, JSON

Returns:

  • (String)


6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
# File 'lib/aws-sdk-pinpoint/types.rb', line 6144

class ImportJobRequest < Struct.new(
  :define_segment,
  :external_id,
  :format,
  :register_endpoints,
  :role_arn,
  :s3_url,
  :segment_id,
  :segment_name)
  include Aws::Structure
end

#register_endpointsBoolean

Sets whether the endpoints are registered with Amazon Pinpoint when they are imported.

Returns:

  • (Boolean)


6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
# File 'lib/aws-sdk-pinpoint/types.rb', line 6144

class ImportJobRequest < Struct.new(
  :define_segment,
  :external_id,
  :format,
  :register_endpoints,
  :role_arn,
  :s3_url,
  :segment_id,
  :segment_name)
  include Aws::Structure
end

#role_arnString

The Amazon Resource Name (ARN) of an IAM role that grants Amazon Pinpoint access to the Amazon S3 location that contains the endpoints to import.

Returns:

  • (String)


6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
# File 'lib/aws-sdk-pinpoint/types.rb', line 6144

class ImportJobRequest < Struct.new(
  :define_segment,
  :external_id,
  :format,
  :register_endpoints,
  :role_arn,
  :s3_url,
  :segment_id,
  :segment_name)
  include Aws::Structure
end

#s3_urlString

The URL of the S3 bucket that contains the segment information to import. The location can be a folder or a single file. The URL should use the following format: s3://bucket-name/folder-name/file-name Amazon Pinpoint imports endpoints from this location and any subfolders it contains.

Returns:

  • (String)


6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
# File 'lib/aws-sdk-pinpoint/types.rb', line 6144

class ImportJobRequest < Struct.new(
  :define_segment,
  :external_id,
  :format,
  :register_endpoints,
  :role_arn,
  :s3_url,
  :segment_id,
  :segment_name)
  include Aws::Structure
end

#segment_idString

The ID of the segment to update if the import job is meant to update an existing segment.

Returns:

  • (String)


6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
# File 'lib/aws-sdk-pinpoint/types.rb', line 6144

class ImportJobRequest < Struct.new(
  :define_segment,
  :external_id,
  :format,
  :register_endpoints,
  :role_arn,
  :s3_url,
  :segment_id,
  :segment_name)
  include Aws::Structure
end

#segment_nameString

A custom name for the segment created by the import job. Use if DefineSegment is true.

Returns:

  • (String)


6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
# File 'lib/aws-sdk-pinpoint/types.rb', line 6144

class ImportJobRequest < Struct.new(
  :define_segment,
  :external_id,
  :format,
  :register_endpoints,
  :role_arn,
  :s3_url,
  :segment_id,
  :segment_name)
  include Aws::Structure
end