aws-sdk-customerprofiles 1.29.0 → 1.30.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f1dac31b90c040ce2c2a94d8392276a79ab6fb64c81174f1b59da8b3b3e505a7
4
- data.tar.gz: e64459d385eeebfb7577326a02663628552cf4e3e947da36aed2124aacf1185a
3
+ metadata.gz: a1e4f8972424b1e8d565dfaf78dea061c7e0f5b2d6ee6aba158e1cc31e7d4a37
4
+ data.tar.gz: 5f53c69f97e83f8694689464bd978c8e3adbcd77f420aa43c71c71544b48959c
5
5
  SHA512:
6
- metadata.gz: 53f75eafda9af2766ef5d47313a1d4ae85a87ebaa9030e07ee5926b6327dcce19950e0ecb173ddfd5002f0991fb0e632d300d3c9ec3384cfa6688961036aaa1a
7
- data.tar.gz: a53869bc502188ebd96e34796f3d8a072bd5f76e4013527c9470577ba08f1c33467edfc7e1d837d9219f5c8531ba512d007451bf80c355106290d50c5d754230
6
+ metadata.gz: fadc4b4c211a5c2be23bd34d0f77c1b65d04001281ebd25c255e51bcc5ef5521f3b8fd15706e7099689ad3267177313f2a8cf529df35b5575f6a115991f98109
7
+ data.tar.gz: 2db6b1fdf8bb41746506527b77b22fee9d5c10ebb8d96f7d4c1cdbd885cea0c1ca4ef03f19e966a4e14306892cdca274b2af2889b02d4cb2d788dd260c3c0d5c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.30.0 (2023-06-07)
5
+ ------------------
6
+
7
+ * Feature - This release introduces event stream related APIs.
8
+
4
9
  1.29.0 (2023-06-01)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.29.0
1
+ 1.30.0
@@ -676,6 +676,58 @@ module Aws::CustomerProfiles
676
676
  req.send_request(options)
677
677
  end
678
678
 
679
+ # Creates an event stream, which is a subscription to real-time events,
680
+ # such as when profiles are created and updated through Amazon Connect
681
+ # Customer Profiles.
682
+ #
683
+ # Each event stream can be associated with only one Kinesis Data Stream
684
+ # destination in the same region and Amazon Web Services account as the
685
+ # customer profiles domain
686
+ #
687
+ # @option params [required, String] :domain_name
688
+ # The unique name of the domain.
689
+ #
690
+ # @option params [required, String] :uri
691
+ # The StreamARN of the destination to deliver profile events to. For
692
+ # example, arn:aws:kinesis:region:account-id:stream/stream-name
693
+ #
694
+ # @option params [required, String] :event_stream_name
695
+ # The name of the event stream.
696
+ #
697
+ # @option params [Hash<String,String>] :tags
698
+ # The tags used to organize, track, or control access for this resource.
699
+ #
700
+ # @return [Types::CreateEventStreamResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
701
+ #
702
+ # * {Types::CreateEventStreamResponse#event_stream_arn #event_stream_arn} => String
703
+ # * {Types::CreateEventStreamResponse#tags #tags} => Hash&lt;String,String&gt;
704
+ #
705
+ # @example Request syntax with placeholder values
706
+ #
707
+ # resp = client.create_event_stream({
708
+ # domain_name: "name", # required
709
+ # uri: "string1To255", # required
710
+ # event_stream_name: "name", # required
711
+ # tags: {
712
+ # "TagKey" => "TagValue",
713
+ # },
714
+ # })
715
+ #
716
+ # @example Response structure
717
+ #
718
+ # resp.event_stream_arn #=> String
719
+ # resp.tags #=> Hash
720
+ # resp.tags["TagKey"] #=> String
721
+ #
722
+ # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/CreateEventStream AWS API Documentation
723
+ #
724
+ # @overload create_event_stream(params = {})
725
+ # @param [Hash] params ({})
726
+ def create_event_stream(params = {}, options = {})
727
+ req = build_request(:create_event_stream, params)
728
+ req.send_request(options)
729
+ end
730
+
679
731
  # Creates an integration workflow. An integration workflow is an async
680
732
  # process which ingests historic data and sets up an integration for
681
733
  # ongoing updates. The supported Amazon AppFlow sources are Salesforce,
@@ -1037,6 +1089,32 @@ module Aws::CustomerProfiles
1037
1089
  req.send_request(options)
1038
1090
  end
1039
1091
 
1092
+ # Disables and deletes the specified event stream.
1093
+ #
1094
+ # @option params [required, String] :domain_name
1095
+ # The unique name of the domain.
1096
+ #
1097
+ # @option params [required, String] :event_stream_name
1098
+ # The name of the event stream
1099
+ #
1100
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1101
+ #
1102
+ # @example Request syntax with placeholder values
1103
+ #
1104
+ # resp = client.delete_event_stream({
1105
+ # domain_name: "name", # required
1106
+ # event_stream_name: "name", # required
1107
+ # })
1108
+ #
1109
+ # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/DeleteEventStream AWS API Documentation
1110
+ #
1111
+ # @overload delete_event_stream(params = {})
1112
+ # @param [Hash] params ({})
1113
+ def delete_event_stream(params = {}, options = {})
1114
+ req = build_request(:delete_event_stream, params)
1115
+ req.send_request(options)
1116
+ end
1117
+
1040
1118
  # Removes an integration from a specific domain.
1041
1119
  #
1042
1120
  # @option params [required, String] :domain_name
@@ -1473,6 +1551,55 @@ module Aws::CustomerProfiles
1473
1551
  req.send_request(options)
1474
1552
  end
1475
1553
 
1554
+ # Returns information about the specified event stream in a specific
1555
+ # domain.
1556
+ #
1557
+ # @option params [required, String] :domain_name
1558
+ # The unique name of the domain.
1559
+ #
1560
+ # @option params [required, String] :event_stream_name
1561
+ # The name of the event stream provided during create operations.
1562
+ #
1563
+ # @return [Types::GetEventStreamResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1564
+ #
1565
+ # * {Types::GetEventStreamResponse#domain_name #domain_name} => String
1566
+ # * {Types::GetEventStreamResponse#event_stream_arn #event_stream_arn} => String
1567
+ # * {Types::GetEventStreamResponse#created_at #created_at} => Time
1568
+ # * {Types::GetEventStreamResponse#state #state} => String
1569
+ # * {Types::GetEventStreamResponse#stopped_since #stopped_since} => Time
1570
+ # * {Types::GetEventStreamResponse#destination_details #destination_details} => Types::EventStreamDestinationDetails
1571
+ # * {Types::GetEventStreamResponse#tags #tags} => Hash&lt;String,String&gt;
1572
+ #
1573
+ # @example Request syntax with placeholder values
1574
+ #
1575
+ # resp = client.get_event_stream({
1576
+ # domain_name: "name", # required
1577
+ # event_stream_name: "name", # required
1578
+ # })
1579
+ #
1580
+ # @example Response structure
1581
+ #
1582
+ # resp.domain_name #=> String
1583
+ # resp.event_stream_arn #=> String
1584
+ # resp.created_at #=> Time
1585
+ # resp.state #=> String, one of "RUNNING", "STOPPED"
1586
+ # resp.stopped_since #=> Time
1587
+ # resp.destination_details.uri #=> String
1588
+ # resp.destination_details.status #=> String, one of "HEALTHY", "UNHEALTHY"
1589
+ # resp.destination_details.unhealthy_since #=> Time
1590
+ # resp.destination_details.message #=> String
1591
+ # resp.tags #=> Hash
1592
+ # resp.tags["TagKey"] #=> String
1593
+ #
1594
+ # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/GetEventStream AWS API Documentation
1595
+ #
1596
+ # @overload get_event_stream(params = {})
1597
+ # @param [Hash] params ({})
1598
+ def get_event_stream(params = {}, options = {})
1599
+ req = build_request(:get_event_stream, params)
1600
+ req.send_request(options)
1601
+ end
1602
+
1476
1603
  # Returns information about an Identity Resolution Job in a specific
1477
1604
  # domain.
1478
1605
  #
@@ -2101,6 +2228,56 @@ module Aws::CustomerProfiles
2101
2228
  req.send_request(options)
2102
2229
  end
2103
2230
 
2231
+ # Returns a list of all the event streams in a specific domain.
2232
+ #
2233
+ # @option params [required, String] :domain_name
2234
+ # The unique name of the domain.
2235
+ #
2236
+ # @option params [String] :next_token
2237
+ # Identifies the next page of results to return.
2238
+ #
2239
+ # @option params [Integer] :max_results
2240
+ # The maximum number of objects returned per page.
2241
+ #
2242
+ # @return [Types::ListEventStreamsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2243
+ #
2244
+ # * {Types::ListEventStreamsResponse#items #items} => Array&lt;Types::EventStreamSummary&gt;
2245
+ # * {Types::ListEventStreamsResponse#next_token #next_token} => String
2246
+ #
2247
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2248
+ #
2249
+ # @example Request syntax with placeholder values
2250
+ #
2251
+ # resp = client.list_event_streams({
2252
+ # domain_name: "name", # required
2253
+ # next_token: "token",
2254
+ # max_results: 1,
2255
+ # })
2256
+ #
2257
+ # @example Response structure
2258
+ #
2259
+ # resp.items #=> Array
2260
+ # resp.items[0].domain_name #=> String
2261
+ # resp.items[0].event_stream_name #=> String
2262
+ # resp.items[0].event_stream_arn #=> String
2263
+ # resp.items[0].state #=> String, one of "RUNNING", "STOPPED"
2264
+ # resp.items[0].stopped_since #=> Time
2265
+ # resp.items[0].destination_summary.uri #=> String
2266
+ # resp.items[0].destination_summary.status #=> String, one of "HEALTHY", "UNHEALTHY"
2267
+ # resp.items[0].destination_summary.unhealthy_since #=> Time
2268
+ # resp.items[0].tags #=> Hash
2269
+ # resp.items[0].tags["TagKey"] #=> String
2270
+ # resp.next_token #=> String
2271
+ #
2272
+ # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/ListEventStreams AWS API Documentation
2273
+ #
2274
+ # @overload list_event_streams(params = {})
2275
+ # @param [Hash] params ({})
2276
+ def list_event_streams(params = {}, options = {})
2277
+ req = build_request(:list_event_streams, params)
2278
+ req.send_request(options)
2279
+ end
2280
+
2104
2281
  # Lists all of the Identity Resolution Jobs in your domain. The response
2105
2282
  # sorts the list by `JobStartTime`.
2106
2283
  #
@@ -3523,7 +3700,7 @@ module Aws::CustomerProfiles
3523
3700
  params: params,
3524
3701
  config: config)
3525
3702
  context[:gem_name] = 'aws-sdk-customerprofiles'
3526
- context[:gem_version] = '1.29.0'
3703
+ context[:gem_version] = '1.30.0'
3527
3704
  Seahorse::Client::Request.new(handlers, context)
3528
3705
  end
3529
3706
 
@@ -45,6 +45,8 @@ module Aws::CustomerProfiles
45
45
  CreateCalculatedAttributeDefinitionResponse = Shapes::StructureShape.new(name: 'CreateCalculatedAttributeDefinitionResponse')
46
46
  CreateDomainRequest = Shapes::StructureShape.new(name: 'CreateDomainRequest')
47
47
  CreateDomainResponse = Shapes::StructureShape.new(name: 'CreateDomainResponse')
48
+ CreateEventStreamRequest = Shapes::StructureShape.new(name: 'CreateEventStreamRequest')
49
+ CreateEventStreamResponse = Shapes::StructureShape.new(name: 'CreateEventStreamResponse')
48
50
  CreateIntegrationWorkflowRequest = Shapes::StructureShape.new(name: 'CreateIntegrationWorkflowRequest')
49
51
  CreateIntegrationWorkflowResponse = Shapes::StructureShape.new(name: 'CreateIntegrationWorkflowResponse')
50
52
  CreateProfileRequest = Shapes::StructureShape.new(name: 'CreateProfileRequest')
@@ -56,6 +58,8 @@ module Aws::CustomerProfiles
56
58
  DeleteCalculatedAttributeDefinitionResponse = Shapes::StructureShape.new(name: 'DeleteCalculatedAttributeDefinitionResponse')
57
59
  DeleteDomainRequest = Shapes::StructureShape.new(name: 'DeleteDomainRequest')
58
60
  DeleteDomainResponse = Shapes::StructureShape.new(name: 'DeleteDomainResponse')
61
+ DeleteEventStreamRequest = Shapes::StructureShape.new(name: 'DeleteEventStreamRequest')
62
+ DeleteEventStreamResponse = Shapes::StructureShape.new(name: 'DeleteEventStreamResponse')
59
63
  DeleteIntegrationRequest = Shapes::StructureShape.new(name: 'DeleteIntegrationRequest')
60
64
  DeleteIntegrationResponse = Shapes::StructureShape.new(name: 'DeleteIntegrationResponse')
61
65
  DeleteProfileKeyRequest = Shapes::StructureShape.new(name: 'DeleteProfileKeyRequest')
@@ -69,10 +73,16 @@ module Aws::CustomerProfiles
69
73
  DeleteWorkflowRequest = Shapes::StructureShape.new(name: 'DeleteWorkflowRequest')
70
74
  DeleteWorkflowResponse = Shapes::StructureShape.new(name: 'DeleteWorkflowResponse')
71
75
  DestinationField = Shapes::StringShape.new(name: 'DestinationField')
76
+ DestinationSummary = Shapes::StructureShape.new(name: 'DestinationSummary')
72
77
  DomainList = Shapes::ListShape.new(name: 'DomainList')
73
78
  DomainStats = Shapes::StructureShape.new(name: 'DomainStats')
74
79
  Double = Shapes::FloatShape.new(name: 'Double')
75
80
  Double0To1 = Shapes::FloatShape.new(name: 'Double0To1')
81
+ EventStreamDestinationDetails = Shapes::StructureShape.new(name: 'EventStreamDestinationDetails')
82
+ EventStreamDestinationStatus = Shapes::StringShape.new(name: 'EventStreamDestinationStatus')
83
+ EventStreamState = Shapes::StringShape.new(name: 'EventStreamState')
84
+ EventStreamSummary = Shapes::StructureShape.new(name: 'EventStreamSummary')
85
+ EventStreamSummaryList = Shapes::ListShape.new(name: 'EventStreamSummaryList')
76
86
  ExportingConfig = Shapes::StructureShape.new(name: 'ExportingConfig')
77
87
  ExportingLocation = Shapes::StructureShape.new(name: 'ExportingLocation')
78
88
  FieldContentType = Shapes::StringShape.new(name: 'FieldContentType')
@@ -92,6 +102,8 @@ module Aws::CustomerProfiles
92
102
  GetCalculatedAttributeForProfileResponse = Shapes::StructureShape.new(name: 'GetCalculatedAttributeForProfileResponse')
93
103
  GetDomainRequest = Shapes::StructureShape.new(name: 'GetDomainRequest')
94
104
  GetDomainResponse = Shapes::StructureShape.new(name: 'GetDomainResponse')
105
+ GetEventStreamRequest = Shapes::StructureShape.new(name: 'GetEventStreamRequest')
106
+ GetEventStreamResponse = Shapes::StructureShape.new(name: 'GetEventStreamResponse')
95
107
  GetIdentityResolutionJobRequest = Shapes::StructureShape.new(name: 'GetIdentityResolutionJobRequest')
96
108
  GetIdentityResolutionJobResponse = Shapes::StructureShape.new(name: 'GetIdentityResolutionJobResponse')
97
109
  GetIntegrationRequest = Shapes::StructureShape.new(name: 'GetIntegrationRequest')
@@ -130,6 +142,8 @@ module Aws::CustomerProfiles
130
142
  ListDomainItem = Shapes::StructureShape.new(name: 'ListDomainItem')
131
143
  ListDomainsRequest = Shapes::StructureShape.new(name: 'ListDomainsRequest')
132
144
  ListDomainsResponse = Shapes::StructureShape.new(name: 'ListDomainsResponse')
145
+ ListEventStreamsRequest = Shapes::StructureShape.new(name: 'ListEventStreamsRequest')
146
+ ListEventStreamsResponse = Shapes::StructureShape.new(name: 'ListEventStreamsResponse')
133
147
  ListIdentityResolutionJobsRequest = Shapes::StructureShape.new(name: 'ListIdentityResolutionJobsRequest')
134
148
  ListIdentityResolutionJobsResponse = Shapes::StructureShape.new(name: 'ListIdentityResolutionJobsResponse')
135
149
  ListIntegrationItem = Shapes::StructureShape.new(name: 'ListIntegrationItem')
@@ -420,6 +434,16 @@ module Aws::CustomerProfiles
420
434
  CreateDomainResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
421
435
  CreateDomainResponse.struct_class = Types::CreateDomainResponse
422
436
 
437
+ CreateEventStreamRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: name, required: true, location: "uri", location_name: "DomainName"))
438
+ CreateEventStreamRequest.add_member(:uri, Shapes::ShapeRef.new(shape: string1To255, required: true, location_name: "Uri"))
439
+ CreateEventStreamRequest.add_member(:event_stream_name, Shapes::ShapeRef.new(shape: name, required: true, location: "uri", location_name: "EventStreamName"))
440
+ CreateEventStreamRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
441
+ CreateEventStreamRequest.struct_class = Types::CreateEventStreamRequest
442
+
443
+ CreateEventStreamResponse.add_member(:event_stream_arn, Shapes::ShapeRef.new(shape: string1To255, required: true, location_name: "EventStreamArn"))
444
+ CreateEventStreamResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
445
+ CreateEventStreamResponse.struct_class = Types::CreateEventStreamResponse
446
+
423
447
  CreateIntegrationWorkflowRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: name, required: true, location: "uri", location_name: "DomainName"))
424
448
  CreateIntegrationWorkflowRequest.add_member(:workflow_type, Shapes::ShapeRef.new(shape: WorkflowType, required: true, location_name: "WorkflowType"))
425
449
  CreateIntegrationWorkflowRequest.add_member(:integration_config, Shapes::ShapeRef.new(shape: IntegrationConfig, required: true, location_name: "IntegrationConfig"))
@@ -473,6 +497,12 @@ module Aws::CustomerProfiles
473
497
  DeleteDomainResponse.add_member(:message, Shapes::ShapeRef.new(shape: message, required: true, location_name: "Message"))
474
498
  DeleteDomainResponse.struct_class = Types::DeleteDomainResponse
475
499
 
500
+ DeleteEventStreamRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: name, required: true, location: "uri", location_name: "DomainName"))
501
+ DeleteEventStreamRequest.add_member(:event_stream_name, Shapes::ShapeRef.new(shape: name, required: true, location: "uri", location_name: "EventStreamName"))
502
+ DeleteEventStreamRequest.struct_class = Types::DeleteEventStreamRequest
503
+
504
+ DeleteEventStreamResponse.struct_class = Types::DeleteEventStreamResponse
505
+
476
506
  DeleteIntegrationRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: name, required: true, location: "uri", location_name: "DomainName"))
477
507
  DeleteIntegrationRequest.add_member(:uri, Shapes::ShapeRef.new(shape: string1To255, required: true, location_name: "Uri"))
478
508
  DeleteIntegrationRequest.struct_class = Types::DeleteIntegrationRequest
@@ -518,6 +548,11 @@ module Aws::CustomerProfiles
518
548
 
519
549
  DeleteWorkflowResponse.struct_class = Types::DeleteWorkflowResponse
520
550
 
551
+ DestinationSummary.add_member(:uri, Shapes::ShapeRef.new(shape: string1To255, required: true, location_name: "Uri"))
552
+ DestinationSummary.add_member(:status, Shapes::ShapeRef.new(shape: EventStreamDestinationStatus, required: true, location_name: "Status"))
553
+ DestinationSummary.add_member(:unhealthy_since, Shapes::ShapeRef.new(shape: timestamp, location_name: "UnhealthySince"))
554
+ DestinationSummary.struct_class = Types::DestinationSummary
555
+
521
556
  DomainList.member = Shapes::ShapeRef.new(shape: ListDomainItem)
522
557
 
523
558
  DomainStats.add_member(:profile_count, Shapes::ShapeRef.new(shape: long, location_name: "ProfileCount"))
@@ -526,6 +561,23 @@ module Aws::CustomerProfiles
526
561
  DomainStats.add_member(:total_size, Shapes::ShapeRef.new(shape: long, location_name: "TotalSize"))
527
562
  DomainStats.struct_class = Types::DomainStats
528
563
 
564
+ EventStreamDestinationDetails.add_member(:uri, Shapes::ShapeRef.new(shape: string1To255, required: true, location_name: "Uri"))
565
+ EventStreamDestinationDetails.add_member(:status, Shapes::ShapeRef.new(shape: EventStreamDestinationStatus, required: true, location_name: "Status"))
566
+ EventStreamDestinationDetails.add_member(:unhealthy_since, Shapes::ShapeRef.new(shape: timestamp, location_name: "UnhealthySince"))
567
+ EventStreamDestinationDetails.add_member(:message, Shapes::ShapeRef.new(shape: string1To1000, location_name: "Message"))
568
+ EventStreamDestinationDetails.struct_class = Types::EventStreamDestinationDetails
569
+
570
+ EventStreamSummary.add_member(:domain_name, Shapes::ShapeRef.new(shape: name, required: true, location_name: "DomainName"))
571
+ EventStreamSummary.add_member(:event_stream_name, Shapes::ShapeRef.new(shape: name, required: true, location_name: "EventStreamName"))
572
+ EventStreamSummary.add_member(:event_stream_arn, Shapes::ShapeRef.new(shape: string1To255, required: true, location_name: "EventStreamArn"))
573
+ EventStreamSummary.add_member(:state, Shapes::ShapeRef.new(shape: EventStreamState, required: true, location_name: "State"))
574
+ EventStreamSummary.add_member(:stopped_since, Shapes::ShapeRef.new(shape: timestamp, location_name: "StoppedSince"))
575
+ EventStreamSummary.add_member(:destination_summary, Shapes::ShapeRef.new(shape: DestinationSummary, location_name: "DestinationSummary"))
576
+ EventStreamSummary.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
577
+ EventStreamSummary.struct_class = Types::EventStreamSummary
578
+
579
+ EventStreamSummaryList.member = Shapes::ShapeRef.new(shape: EventStreamSummary)
580
+
529
581
  ExportingConfig.add_member(:s3_exporting, Shapes::ShapeRef.new(shape: S3ExportingConfig, location_name: "S3Exporting"))
530
582
  ExportingConfig.struct_class = Types::ExportingConfig
531
583
 
@@ -624,6 +676,19 @@ module Aws::CustomerProfiles
624
676
  GetDomainResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
625
677
  GetDomainResponse.struct_class = Types::GetDomainResponse
626
678
 
679
+ GetEventStreamRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: name, required: true, location: "uri", location_name: "DomainName"))
680
+ GetEventStreamRequest.add_member(:event_stream_name, Shapes::ShapeRef.new(shape: name, required: true, location: "uri", location_name: "EventStreamName"))
681
+ GetEventStreamRequest.struct_class = Types::GetEventStreamRequest
682
+
683
+ GetEventStreamResponse.add_member(:domain_name, Shapes::ShapeRef.new(shape: name, required: true, location_name: "DomainName"))
684
+ GetEventStreamResponse.add_member(:event_stream_arn, Shapes::ShapeRef.new(shape: string1To255, required: true, location_name: "EventStreamArn"))
685
+ GetEventStreamResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: timestamp, required: true, location_name: "CreatedAt"))
686
+ GetEventStreamResponse.add_member(:state, Shapes::ShapeRef.new(shape: EventStreamState, required: true, location_name: "State"))
687
+ GetEventStreamResponse.add_member(:stopped_since, Shapes::ShapeRef.new(shape: timestamp, location_name: "StoppedSince"))
688
+ GetEventStreamResponse.add_member(:destination_details, Shapes::ShapeRef.new(shape: EventStreamDestinationDetails, required: true, location_name: "DestinationDetails"))
689
+ GetEventStreamResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
690
+ GetEventStreamResponse.struct_class = Types::GetEventStreamResponse
691
+
627
692
  GetIdentityResolutionJobRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: name, required: true, location: "uri", location_name: "DomainName"))
628
693
  GetIdentityResolutionJobRequest.add_member(:job_id, Shapes::ShapeRef.new(shape: uuid, required: true, location: "uri", location_name: "JobId"))
629
694
  GetIdentityResolutionJobRequest.struct_class = Types::GetIdentityResolutionJobRequest
@@ -815,6 +880,15 @@ module Aws::CustomerProfiles
815
880
  ListDomainsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: token, location_name: "NextToken"))
816
881
  ListDomainsResponse.struct_class = Types::ListDomainsResponse
817
882
 
883
+ ListEventStreamsRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: name, required: true, location: "uri", location_name: "DomainName"))
884
+ ListEventStreamsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: token, location: "querystring", location_name: "next-token"))
885
+ ListEventStreamsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: maxSize100, location: "querystring", location_name: "max-results"))
886
+ ListEventStreamsRequest.struct_class = Types::ListEventStreamsRequest
887
+
888
+ ListEventStreamsResponse.add_member(:items, Shapes::ShapeRef.new(shape: EventStreamSummaryList, location_name: "Items"))
889
+ ListEventStreamsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: token, location_name: "NextToken"))
890
+ ListEventStreamsResponse.struct_class = Types::ListEventStreamsResponse
891
+
818
892
  ListIdentityResolutionJobsRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: name, required: true, location: "uri", location_name: "DomainName"))
819
893
  ListIdentityResolutionJobsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: token, location: "querystring", location_name: "next-token"))
820
894
  ListIdentityResolutionJobsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: maxSize100, location: "querystring", location_name: "max-results"))
@@ -1334,6 +1408,19 @@ module Aws::CustomerProfiles
1334
1408
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1335
1409
  end)
1336
1410
 
1411
+ api.add_operation(:create_event_stream, Seahorse::Model::Operation.new.tap do |o|
1412
+ o.name = "CreateEventStream"
1413
+ o.http_method = "POST"
1414
+ o.http_request_uri = "/domains/{DomainName}/event-streams/{EventStreamName}"
1415
+ o.input = Shapes::ShapeRef.new(shape: CreateEventStreamRequest)
1416
+ o.output = Shapes::ShapeRef.new(shape: CreateEventStreamResponse)
1417
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
1418
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1419
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1420
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1421
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1422
+ end)
1423
+
1337
1424
  api.add_operation(:create_integration_workflow, Seahorse::Model::Operation.new.tap do |o|
1338
1425
  o.name = "CreateIntegrationWorkflow"
1339
1426
  o.http_method = "POST"
@@ -1386,6 +1473,19 @@ module Aws::CustomerProfiles
1386
1473
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1387
1474
  end)
1388
1475
 
1476
+ api.add_operation(:delete_event_stream, Seahorse::Model::Operation.new.tap do |o|
1477
+ o.name = "DeleteEventStream"
1478
+ o.http_method = "DELETE"
1479
+ o.http_request_uri = "/domains/{DomainName}/event-streams/{EventStreamName}"
1480
+ o.input = Shapes::ShapeRef.new(shape: DeleteEventStreamRequest)
1481
+ o.output = Shapes::ShapeRef.new(shape: DeleteEventStreamResponse)
1482
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
1483
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1484
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1485
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1486
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1487
+ end)
1488
+
1389
1489
  api.add_operation(:delete_integration, Seahorse::Model::Operation.new.tap do |o|
1390
1490
  o.name = "DeleteIntegration"
1391
1491
  o.http_method = "POST"
@@ -1516,6 +1616,19 @@ module Aws::CustomerProfiles
1516
1616
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1517
1617
  end)
1518
1618
 
1619
+ api.add_operation(:get_event_stream, Seahorse::Model::Operation.new.tap do |o|
1620
+ o.name = "GetEventStream"
1621
+ o.http_method = "GET"
1622
+ o.http_request_uri = "/domains/{DomainName}/event-streams/{EventStreamName}"
1623
+ o.input = Shapes::ShapeRef.new(shape: GetEventStreamRequest)
1624
+ o.output = Shapes::ShapeRef.new(shape: GetEventStreamResponse)
1625
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
1626
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1627
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1628
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1629
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1630
+ end)
1631
+
1519
1632
  api.add_operation(:get_identity_resolution_job, Seahorse::Model::Operation.new.tap do |o|
1520
1633
  o.name = "GetIdentityResolutionJob"
1521
1634
  o.http_method = "GET"
@@ -1659,6 +1772,25 @@ module Aws::CustomerProfiles
1659
1772
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1660
1773
  end)
1661
1774
 
1775
+ api.add_operation(:list_event_streams, Seahorse::Model::Operation.new.tap do |o|
1776
+ o.name = "ListEventStreams"
1777
+ o.http_method = "GET"
1778
+ o.http_request_uri = "/domains/{DomainName}/event-streams"
1779
+ o.input = Shapes::ShapeRef.new(shape: ListEventStreamsRequest)
1780
+ o.output = Shapes::ShapeRef.new(shape: ListEventStreamsResponse)
1781
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
1782
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1783
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1784
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1785
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1786
+ o[:pager] = Aws::Pager.new(
1787
+ limit_key: "max_results",
1788
+ tokens: {
1789
+ "next_token" => "next_token"
1790
+ }
1791
+ )
1792
+ end)
1793
+
1662
1794
  api.add_operation(:list_identity_resolution_jobs, Seahorse::Model::Operation.new.tap do |o|
1663
1795
  o.name = "ListIdentityResolutionJobs"
1664
1796
  o.http_method = "GET"
@@ -53,6 +53,20 @@ module Aws::CustomerProfiles
53
53
  end
54
54
  end
55
55
 
56
+ class CreateEventStream
57
+ def self.build(context)
58
+ unless context.config.regional_endpoint
59
+ endpoint = context.config.endpoint.to_s
60
+ end
61
+ Aws::CustomerProfiles::EndpointParameters.new(
62
+ region: context.config.region,
63
+ use_dual_stack: context.config.use_dualstack_endpoint,
64
+ use_fips: context.config.use_fips_endpoint,
65
+ endpoint: endpoint,
66
+ )
67
+ end
68
+ end
69
+
56
70
  class CreateIntegrationWorkflow
57
71
  def self.build(context)
58
72
  unless context.config.regional_endpoint
@@ -109,6 +123,20 @@ module Aws::CustomerProfiles
109
123
  end
110
124
  end
111
125
 
126
+ class DeleteEventStream
127
+ def self.build(context)
128
+ unless context.config.regional_endpoint
129
+ endpoint = context.config.endpoint.to_s
130
+ end
131
+ Aws::CustomerProfiles::EndpointParameters.new(
132
+ region: context.config.region,
133
+ use_dual_stack: context.config.use_dualstack_endpoint,
134
+ use_fips: context.config.use_fips_endpoint,
135
+ endpoint: endpoint,
136
+ )
137
+ end
138
+ end
139
+
112
140
  class DeleteIntegration
113
141
  def self.build(context)
114
142
  unless context.config.regional_endpoint
@@ -249,6 +277,20 @@ module Aws::CustomerProfiles
249
277
  end
250
278
  end
251
279
 
280
+ class GetEventStream
281
+ def self.build(context)
282
+ unless context.config.regional_endpoint
283
+ endpoint = context.config.endpoint.to_s
284
+ end
285
+ Aws::CustomerProfiles::EndpointParameters.new(
286
+ region: context.config.region,
287
+ use_dual_stack: context.config.use_dualstack_endpoint,
288
+ use_fips: context.config.use_fips_endpoint,
289
+ endpoint: endpoint,
290
+ )
291
+ end
292
+ end
293
+
252
294
  class GetIdentityResolutionJob
253
295
  def self.build(context)
254
296
  unless context.config.regional_endpoint
@@ -403,6 +445,20 @@ module Aws::CustomerProfiles
403
445
  end
404
446
  end
405
447
 
448
+ class ListEventStreams
449
+ def self.build(context)
450
+ unless context.config.regional_endpoint
451
+ endpoint = context.config.endpoint.to_s
452
+ end
453
+ Aws::CustomerProfiles::EndpointParameters.new(
454
+ region: context.config.region,
455
+ use_dual_stack: context.config.use_dualstack_endpoint,
456
+ use_fips: context.config.use_fips_endpoint,
457
+ endpoint: endpoint,
458
+ )
459
+ end
460
+ end
461
+
406
462
  class ListIdentityResolutionJobs
407
463
  def self.build(context)
408
464
  unless context.config.regional_endpoint
@@ -62,6 +62,8 @@ module Aws::CustomerProfiles
62
62
  Aws::CustomerProfiles::Endpoints::CreateCalculatedAttributeDefinition.build(context)
63
63
  when :create_domain
64
64
  Aws::CustomerProfiles::Endpoints::CreateDomain.build(context)
65
+ when :create_event_stream
66
+ Aws::CustomerProfiles::Endpoints::CreateEventStream.build(context)
65
67
  when :create_integration_workflow
66
68
  Aws::CustomerProfiles::Endpoints::CreateIntegrationWorkflow.build(context)
67
69
  when :create_profile
@@ -70,6 +72,8 @@ module Aws::CustomerProfiles
70
72
  Aws::CustomerProfiles::Endpoints::DeleteCalculatedAttributeDefinition.build(context)
71
73
  when :delete_domain
72
74
  Aws::CustomerProfiles::Endpoints::DeleteDomain.build(context)
75
+ when :delete_event_stream
76
+ Aws::CustomerProfiles::Endpoints::DeleteEventStream.build(context)
73
77
  when :delete_integration
74
78
  Aws::CustomerProfiles::Endpoints::DeleteIntegration.build(context)
75
79
  when :delete_profile
@@ -90,6 +94,8 @@ module Aws::CustomerProfiles
90
94
  Aws::CustomerProfiles::Endpoints::GetCalculatedAttributeForProfile.build(context)
91
95
  when :get_domain
92
96
  Aws::CustomerProfiles::Endpoints::GetDomain.build(context)
97
+ when :get_event_stream
98
+ Aws::CustomerProfiles::Endpoints::GetEventStream.build(context)
93
99
  when :get_identity_resolution_job
94
100
  Aws::CustomerProfiles::Endpoints::GetIdentityResolutionJob.build(context)
95
101
  when :get_integration
@@ -112,6 +118,8 @@ module Aws::CustomerProfiles
112
118
  Aws::CustomerProfiles::Endpoints::ListCalculatedAttributesForProfile.build(context)
113
119
  when :list_domains
114
120
  Aws::CustomerProfiles::Endpoints::ListDomains.build(context)
121
+ when :list_event_streams
122
+ Aws::CustomerProfiles::Endpoints::ListEventStreams.build(context)
115
123
  when :list_identity_resolution_jobs
116
124
  Aws::CustomerProfiles::Endpoints::ListIdentityResolutionJobs.build(context)
117
125
  when :list_integrations
@@ -737,6 +737,53 @@ module Aws::CustomerProfiles
737
737
  include Aws::Structure
738
738
  end
739
739
 
740
+ # @!attribute [rw] domain_name
741
+ # The unique name of the domain.
742
+ # @return [String]
743
+ #
744
+ # @!attribute [rw] uri
745
+ # The StreamARN of the destination to deliver profile events to. For
746
+ # example, arn:aws:kinesis:region:account-id:stream/stream-name
747
+ # @return [String]
748
+ #
749
+ # @!attribute [rw] event_stream_name
750
+ # The name of the event stream.
751
+ # @return [String]
752
+ #
753
+ # @!attribute [rw] tags
754
+ # The tags used to organize, track, or control access for this
755
+ # resource.
756
+ # @return [Hash<String,String>]
757
+ #
758
+ # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/CreateEventStreamRequest AWS API Documentation
759
+ #
760
+ class CreateEventStreamRequest < Struct.new(
761
+ :domain_name,
762
+ :uri,
763
+ :event_stream_name,
764
+ :tags)
765
+ SENSITIVE = []
766
+ include Aws::Structure
767
+ end
768
+
769
+ # @!attribute [rw] event_stream_arn
770
+ # A unique identifier for the event stream.
771
+ # @return [String]
772
+ #
773
+ # @!attribute [rw] tags
774
+ # The tags used to organize, track, or control access for this
775
+ # resource.
776
+ # @return [Hash<String,String>]
777
+ #
778
+ # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/CreateEventStreamResponse AWS API Documentation
779
+ #
780
+ class CreateEventStreamResponse < Struct.new(
781
+ :event_stream_arn,
782
+ :tags)
783
+ SENSITIVE = []
784
+ include Aws::Structure
785
+ end
786
+
740
787
  # @!attribute [rw] domain_name
741
788
  # The unique name of the domain.
742
789
  # @return [String]
@@ -982,6 +1029,27 @@ module Aws::CustomerProfiles
982
1029
  include Aws::Structure
983
1030
  end
984
1031
 
1032
+ # @!attribute [rw] domain_name
1033
+ # The unique name of the domain.
1034
+ # @return [String]
1035
+ #
1036
+ # @!attribute [rw] event_stream_name
1037
+ # The name of the event stream
1038
+ # @return [String]
1039
+ #
1040
+ # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/DeleteEventStreamRequest AWS API Documentation
1041
+ #
1042
+ class DeleteEventStreamRequest < Struct.new(
1043
+ :domain_name,
1044
+ :event_stream_name)
1045
+ SENSITIVE = []
1046
+ include Aws::Structure
1047
+ end
1048
+
1049
+ # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/DeleteEventStreamResponse AWS API Documentation
1050
+ #
1051
+ class DeleteEventStreamResponse < Aws::EmptyStructure; end
1052
+
985
1053
  # @!attribute [rw] domain_name
986
1054
  # The unique name of the domain.
987
1055
  # @return [String]
@@ -1169,6 +1237,32 @@ module Aws::CustomerProfiles
1169
1237
  #
1170
1238
  class DeleteWorkflowResponse < Aws::EmptyStructure; end
1171
1239
 
1240
+ # Summary information about the Kinesis data stream
1241
+ #
1242
+ # @!attribute [rw] uri
1243
+ # The StreamARN of the destination to deliver profile events to. For
1244
+ # example, arn:aws:kinesis:region:account-id:stream/stream-name.
1245
+ # @return [String]
1246
+ #
1247
+ # @!attribute [rw] status
1248
+ # The status of enabling the Kinesis stream as a destination for
1249
+ # export.
1250
+ # @return [String]
1251
+ #
1252
+ # @!attribute [rw] unhealthy_since
1253
+ # The timestamp when the status last changed to `UNHEALHY`.
1254
+ # @return [Time]
1255
+ #
1256
+ # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/DestinationSummary AWS API Documentation
1257
+ #
1258
+ class DestinationSummary < Struct.new(
1259
+ :uri,
1260
+ :status,
1261
+ :unhealthy_since)
1262
+ SENSITIVE = []
1263
+ include Aws::Structure
1264
+ end
1265
+
1172
1266
  # Usage-specific statistics about the domain.
1173
1267
  #
1174
1268
  # @!attribute [rw] profile_count
@@ -1201,6 +1295,83 @@ module Aws::CustomerProfiles
1201
1295
  include Aws::Structure
1202
1296
  end
1203
1297
 
1298
+ # Details of the destination being used for the EventStream.
1299
+ #
1300
+ # @!attribute [rw] uri
1301
+ # The StreamARN of the destination to deliver profile events to. For
1302
+ # example, arn:aws:kinesis:region:account-id:stream/stream-name.
1303
+ # @return [String]
1304
+ #
1305
+ # @!attribute [rw] status
1306
+ # The status of enabling the Kinesis stream as a destination for
1307
+ # export.
1308
+ # @return [String]
1309
+ #
1310
+ # @!attribute [rw] unhealthy_since
1311
+ # The timestamp when the status last changed to `UNHEALHY`.
1312
+ # @return [Time]
1313
+ #
1314
+ # @!attribute [rw] message
1315
+ # The human-readable string that corresponds to the error or success
1316
+ # while enabling the streaming destination.
1317
+ # @return [String]
1318
+ #
1319
+ # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/EventStreamDestinationDetails AWS API Documentation
1320
+ #
1321
+ class EventStreamDestinationDetails < Struct.new(
1322
+ :uri,
1323
+ :status,
1324
+ :unhealthy_since,
1325
+ :message)
1326
+ SENSITIVE = []
1327
+ include Aws::Structure
1328
+ end
1329
+
1330
+ # An instance of EventStream in a list of EventStreams.
1331
+ #
1332
+ # @!attribute [rw] domain_name
1333
+ # The unique name of the domain.
1334
+ # @return [String]
1335
+ #
1336
+ # @!attribute [rw] event_stream_name
1337
+ # The name of the event stream.
1338
+ # @return [String]
1339
+ #
1340
+ # @!attribute [rw] event_stream_arn
1341
+ # A unique identifier for the event stream.
1342
+ # @return [String]
1343
+ #
1344
+ # @!attribute [rw] state
1345
+ # The operational state of destination stream for export.
1346
+ # @return [String]
1347
+ #
1348
+ # @!attribute [rw] stopped_since
1349
+ # The timestamp when the `State` changed to `STOPPED`.
1350
+ # @return [Time]
1351
+ #
1352
+ # @!attribute [rw] destination_summary
1353
+ # Summary information about the Kinesis data stream.
1354
+ # @return [Types::DestinationSummary]
1355
+ #
1356
+ # @!attribute [rw] tags
1357
+ # The tags used to organize, track, or control access for this
1358
+ # resource.
1359
+ # @return [Hash<String,String>]
1360
+ #
1361
+ # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/EventStreamSummary AWS API Documentation
1362
+ #
1363
+ class EventStreamSummary < Struct.new(
1364
+ :domain_name,
1365
+ :event_stream_name,
1366
+ :event_stream_arn,
1367
+ :state,
1368
+ :stopped_since,
1369
+ :destination_summary,
1370
+ :tags)
1371
+ SENSITIVE = []
1372
+ include Aws::Structure
1373
+ end
1374
+
1204
1375
  # Configuration information about the S3 bucket where Identity
1205
1376
  # Resolution Jobs writes result files.
1206
1377
  #
@@ -1693,6 +1864,66 @@ module Aws::CustomerProfiles
1693
1864
  include Aws::Structure
1694
1865
  end
1695
1866
 
1867
+ # @!attribute [rw] domain_name
1868
+ # The unique name of the domain.
1869
+ # @return [String]
1870
+ #
1871
+ # @!attribute [rw] event_stream_name
1872
+ # The name of the event stream provided during create operations.
1873
+ # @return [String]
1874
+ #
1875
+ # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/GetEventStreamRequest AWS API Documentation
1876
+ #
1877
+ class GetEventStreamRequest < Struct.new(
1878
+ :domain_name,
1879
+ :event_stream_name)
1880
+ SENSITIVE = []
1881
+ include Aws::Structure
1882
+ end
1883
+
1884
+ # @!attribute [rw] domain_name
1885
+ # The unique name of the domain.
1886
+ # @return [String]
1887
+ #
1888
+ # @!attribute [rw] event_stream_arn
1889
+ # A unique identifier for the event stream.
1890
+ # @return [String]
1891
+ #
1892
+ # @!attribute [rw] created_at
1893
+ # The timestamp of when the export was created.
1894
+ # @return [Time]
1895
+ #
1896
+ # @!attribute [rw] state
1897
+ # The operational state of destination stream for export.
1898
+ # @return [String]
1899
+ #
1900
+ # @!attribute [rw] stopped_since
1901
+ # The timestamp when the `State` changed to `STOPPED`.
1902
+ # @return [Time]
1903
+ #
1904
+ # @!attribute [rw] destination_details
1905
+ # Details regarding the Kinesis stream.
1906
+ # @return [Types::EventStreamDestinationDetails]
1907
+ #
1908
+ # @!attribute [rw] tags
1909
+ # The tags used to organize, track, or control access for this
1910
+ # resource.
1911
+ # @return [Hash<String,String>]
1912
+ #
1913
+ # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/GetEventStreamResponse AWS API Documentation
1914
+ #
1915
+ class GetEventStreamResponse < Struct.new(
1916
+ :domain_name,
1917
+ :event_stream_arn,
1918
+ :created_at,
1919
+ :state,
1920
+ :stopped_since,
1921
+ :destination_details,
1922
+ :tags)
1923
+ SENSITIVE = []
1924
+ include Aws::Structure
1925
+ end
1926
+
1696
1927
  # @!attribute [rw] domain_name
1697
1928
  # The unique name of the domain.
1698
1929
  # @return [String]
@@ -2634,6 +2865,45 @@ module Aws::CustomerProfiles
2634
2865
  include Aws::Structure
2635
2866
  end
2636
2867
 
2868
+ # @!attribute [rw] domain_name
2869
+ # The unique name of the domain.
2870
+ # @return [String]
2871
+ #
2872
+ # @!attribute [rw] next_token
2873
+ # Identifies the next page of results to return.
2874
+ # @return [String]
2875
+ #
2876
+ # @!attribute [rw] max_results
2877
+ # The maximum number of objects returned per page.
2878
+ # @return [Integer]
2879
+ #
2880
+ # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/ListEventStreamsRequest AWS API Documentation
2881
+ #
2882
+ class ListEventStreamsRequest < Struct.new(
2883
+ :domain_name,
2884
+ :next_token,
2885
+ :max_results)
2886
+ SENSITIVE = []
2887
+ include Aws::Structure
2888
+ end
2889
+
2890
+ # @!attribute [rw] items
2891
+ # Contains summary information about an EventStream.
2892
+ # @return [Array<Types::EventStreamSummary>]
2893
+ #
2894
+ # @!attribute [rw] next_token
2895
+ # Identifies the next page of results to return.
2896
+ # @return [String]
2897
+ #
2898
+ # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/ListEventStreamsResponse AWS API Documentation
2899
+ #
2900
+ class ListEventStreamsResponse < Struct.new(
2901
+ :items,
2902
+ :next_token)
2903
+ SENSITIVE = []
2904
+ include Aws::Structure
2905
+ end
2906
+
2637
2907
  # @!attribute [rw] domain_name
2638
2908
  # The unique name of the domain.
2639
2909
  # @return [String]
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-customerprofiles/customizations'
52
52
  # @!group service
53
53
  module Aws::CustomerProfiles
54
54
 
55
- GEM_VERSION = '1.29.0'
55
+ GEM_VERSION = '1.30.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-customerprofiles
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.29.0
4
+ version: 1.30.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-06-01 00:00:00.000000000 Z
11
+ date: 2023-06-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core