diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9b8b106ff88..36b3f560fbc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,14 @@
+Release v1.38.7 (2021-03-26)
+===
+
+### Service Client Updates
+* `service/customer-profiles`: Updates service API and documentation
+* `service/eventbridge`: Updates service API and documentation
+* `service/events`: Updates service API and documentation
+ * Add support for SageMaker Model Builder Pipelines Targets to EventBridge
+* `service/iotwireless`: Updates service API and documentation
+* `service/transcribe`: Updates service API and documentation
+
Release v1.38.6 (2021-03-25)
===
diff --git a/CHANGELOG_PENDING.md b/CHANGELOG_PENDING.md
index eca8f3ba1d6..8a1927a39ca 100644
--- a/CHANGELOG_PENDING.md
+++ b/CHANGELOG_PENDING.md
@@ -3,4 +3,3 @@
### SDK Enhancements
### SDK Bugs
-
diff --git a/aws/endpoints/defaults.go b/aws/endpoints/defaults.go
index ee958ece47c..d138454cf47 100644
--- a/aws/endpoints/defaults.go
+++ b/aws/endpoints/defaults.go
@@ -983,6 +983,7 @@ var awsPartition = partition{
"ap-east-1": endpoint{},
"ap-northeast-1": endpoint{},
"ap-northeast-2": endpoint{},
+ "ap-northeast-3": endpoint{},
"ap-south-1": endpoint{},
"ap-southeast-1": endpoint{},
"ap-southeast-2": endpoint{},
@@ -8117,6 +8118,27 @@ var awsusgovPartition = partition{
"us-gov-west-1": endpoint{},
},
},
+ "api.detective": service{
+ Defaults: endpoint{
+ Protocols: []string{"https"},
+ },
+ Endpoints: endpoints{
+ "us-gov-east-1": endpoint{},
+ "us-gov-east-1-fips": endpoint{
+ Hostname: "api.detective-fips.us-gov-east-1.amazonaws.com",
+ CredentialScope: credentialScope{
+ Region: "us-gov-east-1",
+ },
+ },
+ "us-gov-west-1": endpoint{},
+ "us-gov-west-1-fips": endpoint{
+ Hostname: "api.detective-fips.us-gov-west-1.amazonaws.com",
+ CredentialScope: credentialScope{
+ Region: "us-gov-west-1",
+ },
+ },
+ },
+ },
"api.ecr": service{
Endpoints: endpoints{
diff --git a/aws/version.go b/aws/version.go
index 7092e4a5192..5b7ae3b1560 100644
--- a/aws/version.go
+++ b/aws/version.go
@@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"
// SDKVersion is the version of this SDK
-const SDKVersion = "1.38.6"
+const SDKVersion = "1.38.7"
diff --git a/models/apis/customer-profiles/2020-08-15/api-2.json b/models/apis/customer-profiles/2020-08-15/api-2.json
index a60d1842823..23200bc720f 100644
--- a/models/apis/customer-profiles/2020-08-15/api-2.json
+++ b/models/apis/customer-profiles/2020-08-15/api-2.json
@@ -525,6 +525,32 @@
"error":{"httpStatusCode":400},
"exception":true
},
+ "BucketName":{
+ "type":"string",
+ "max":63,
+ "min":3,
+ "pattern":"\\S+"
+ },
+ "BucketPrefix":{
+ "type":"string",
+ "max":512,
+ "pattern":".*"
+ },
+ "ConnectorOperator":{
+ "type":"structure",
+ "members":{
+ "Marketo":{"shape":"MarketoConnectorOperator"},
+ "S3":{"shape":"S3ConnectorOperator"},
+ "Salesforce":{"shape":"SalesforceConnectorOperator"},
+ "ServiceNow":{"shape":"ServiceNowConnectorOperator"},
+ "Zendesk":{"shape":"ZendeskConnectorOperator"}
+ }
+ },
+ "ConnectorProfileName":{
+ "type":"string",
+ "max":256,
+ "pattern":"[\\w/!@#+=.-]+"
+ },
"CreateDomainRequest":{
"type":"structure",
"required":[
@@ -600,6 +626,19 @@
"ProfileId":{"shape":"uuid"}
}
},
+ "DataPullMode":{
+ "type":"string",
+ "enum":[
+ "Incremental",
+ "Complete"
+ ]
+ },
+ "Date":{"type":"timestamp"},
+ "DatetimeTypeFieldName":{
+ "type":"string",
+ "max":256,
+ "pattern":".*"
+ },
"DeleteDomainRequest":{
"type":"structure",
"required":["DomainName"],
@@ -737,6 +776,11 @@
"Message":{"shape":"message"}
}
},
+ "DestinationField":{
+ "type":"string",
+ "max":256,
+ "pattern":".*"
+ },
"DomainList":{
"type":"list",
"member":{"shape":"ListDomainItem"}
@@ -769,6 +813,34 @@
"type":"list",
"member":{"shape":"name"}
},
+ "FlowDefinition":{
+ "type":"structure",
+ "required":[
+ "FlowName",
+ "KmsArn",
+ "SourceFlowConfig",
+ "Tasks",
+ "TriggerConfig"
+ ],
+ "members":{
+ "Description":{"shape":"FlowDescription"},
+ "FlowName":{"shape":"FlowName"},
+ "KmsArn":{"shape":"KmsArn"},
+ "SourceFlowConfig":{"shape":"SourceFlowConfig"},
+ "Tasks":{"shape":"Tasks"},
+ "TriggerConfig":{"shape":"TriggerConfig"}
+ }
+ },
+ "FlowDescription":{
+ "type":"string",
+ "max":2048,
+ "pattern":"[\\w!@#\\-.?,\\s]*"
+ },
+ "FlowName":{
+ "type":"string",
+ "max":256,
+ "pattern":"[a-zA-Z0-9][\\w!@#.-]+"
+ },
"Gender":{
"type":"string",
"enum":[
@@ -900,6 +972,12 @@
"Keys":{"shape":"KeyMap"}
}
},
+ "IncrementalPullConfig":{
+ "type":"structure",
+ "members":{
+ "DatetimeTypeFieldName":{"shape":"DatetimeTypeFieldName"}
+ }
+ },
"IntegrationList":{
"type":"list",
"member":{"shape":"ListIntegrationItem"}
@@ -918,6 +996,12 @@
"key":{"shape":"name"},
"value":{"shape":"ObjectTypeKeyList"}
},
+ "KmsArn":{
+ "type":"string",
+ "max":2048,
+ "min":20,
+ "pattern":"arn:aws:kms:.*:[0-9]+:.*"
+ },
"ListAccountIntegrationsRequest":{
"type":"structure",
"required":["Uri"],
@@ -1155,6 +1239,39 @@
"tags":{"shape":"TagMap"}
}
},
+ "MarketoConnectorOperator":{
+ "type":"string",
+ "enum":[
+ "PROJECTION",
+ "LESS_THAN",
+ "GREATER_THAN",
+ "BETWEEN",
+ "ADDITION",
+ "MULTIPLICATION",
+ "DIVISION",
+ "SUBTRACTION",
+ "MASK_ALL",
+ "MASK_FIRST_N",
+ "MASK_LAST_N",
+ "VALIDATE_NON_NULL",
+ "VALIDATE_NON_ZERO",
+ "VALIDATE_NON_NEGATIVE",
+ "VALIDATE_NUMERIC",
+ "NO_OP"
+ ]
+ },
+ "MarketoSourceProperties":{
+ "type":"structure",
+ "required":["Object"],
+ "members":{
+ "Object":{"shape":"Object"}
+ }
+ },
+ "Object":{
+ "type":"string",
+ "max":512,
+ "pattern":"\\S+"
+ },
"ObjectTypeField":{
"type":"structure",
"members":{
@@ -1174,6 +1291,25 @@
"type":"list",
"member":{"shape":"ObjectTypeKey"}
},
+ "OperatorPropertiesKeys":{
+ "type":"string",
+ "enum":[
+ "VALUE",
+ "VALUES",
+ "DATA_TYPE",
+ "UPPER_BOUND",
+ "LOWER_BOUND",
+ "SOURCE_DATA_TYPE",
+ "DESTINATION_DATA_TYPE",
+ "VALIDATION_ACTION",
+ "MASK_VALUE",
+ "MASK_LENGTH",
+ "TRUNCATE_LENGTH",
+ "MATH_OPERATION_FIELDS_ORDER",
+ "CONCAT_FORMAT",
+ "SUBFIELD_CATEGORY_MAP"
+ ]
+ },
"PartyType":{
"type":"string",
"enum":[
@@ -1225,11 +1361,15 @@
"type":"list",
"member":{"shape":"ListProfileObjectTypeTemplateItem"}
},
+ "Property":{
+ "type":"string",
+ "max":2048,
+ "pattern":".+"
+ },
"PutIntegrationRequest":{
"type":"structure",
"required":[
"DomainName",
- "Uri",
"ObjectTypeName"
],
"members":{
@@ -1240,7 +1380,8 @@
},
"Uri":{"shape":"string1To255"},
"ObjectTypeName":{"shape":"typeName"},
- "Tags":{"shape":"TagMap"}
+ "Tags":{"shape":"TagMap"},
+ "FlowDefinition":{"shape":"FlowDefinition"}
}
},
"PutIntegrationResponse":{
@@ -1340,6 +1481,100 @@
"error":{"httpStatusCode":404},
"exception":true
},
+ "S3ConnectorOperator":{
+ "type":"string",
+ "enum":[
+ "PROJECTION",
+ "LESS_THAN",
+ "GREATER_THAN",
+ "BETWEEN",
+ "LESS_THAN_OR_EQUAL_TO",
+ "GREATER_THAN_OR_EQUAL_TO",
+ "EQUAL_TO",
+ "NOT_EQUAL_TO",
+ "ADDITION",
+ "MULTIPLICATION",
+ "DIVISION",
+ "SUBTRACTION",
+ "MASK_ALL",
+ "MASK_FIRST_N",
+ "MASK_LAST_N",
+ "VALIDATE_NON_NULL",
+ "VALIDATE_NON_ZERO",
+ "VALIDATE_NON_NEGATIVE",
+ "VALIDATE_NUMERIC",
+ "NO_OP"
+ ]
+ },
+ "S3SourceProperties":{
+ "type":"structure",
+ "required":["BucketName"],
+ "members":{
+ "BucketName":{"shape":"BucketName"},
+ "BucketPrefix":{"shape":"BucketPrefix"}
+ }
+ },
+ "SalesforceConnectorOperator":{
+ "type":"string",
+ "enum":[
+ "PROJECTION",
+ "LESS_THAN",
+ "CONTAINS",
+ "GREATER_THAN",
+ "BETWEEN",
+ "LESS_THAN_OR_EQUAL_TO",
+ "GREATER_THAN_OR_EQUAL_TO",
+ "EQUAL_TO",
+ "NOT_EQUAL_TO",
+ "ADDITION",
+ "MULTIPLICATION",
+ "DIVISION",
+ "SUBTRACTION",
+ "MASK_ALL",
+ "MASK_FIRST_N",
+ "MASK_LAST_N",
+ "VALIDATE_NON_NULL",
+ "VALIDATE_NON_ZERO",
+ "VALIDATE_NON_NEGATIVE",
+ "VALIDATE_NUMERIC",
+ "NO_OP"
+ ]
+ },
+ "SalesforceSourceProperties":{
+ "type":"structure",
+ "required":["Object"],
+ "members":{
+ "Object":{"shape":"Object"},
+ "EnableDynamicFieldUpdate":{"shape":"boolean"},
+ "IncludeDeletedRecords":{"shape":"boolean"}
+ }
+ },
+ "ScheduleExpression":{
+ "type":"string",
+ "max":256,
+ "pattern":".*"
+ },
+ "ScheduleOffset":{
+ "type":"long",
+ "max":36000,
+ "min":0
+ },
+ "ScheduledTriggerProperties":{
+ "type":"structure",
+ "required":["ScheduleExpression"],
+ "members":{
+ "ScheduleExpression":{"shape":"ScheduleExpression"},
+ "DataPullMode":{"shape":"DataPullMode"},
+ "ScheduleStartTime":{"shape":"Date"},
+ "ScheduleEndTime":{"shape":"Date"},
+ "Timezone":{"shape":"Timezone"},
+ "ScheduleOffset":{
+ "shape":"ScheduleOffset",
+ "box":true
+ },
+ "FirstExecutionFrom":{"shape":"Date"}
+ }
+ },
"SearchProfilesRequest":{
"type":"structure",
"required":[
@@ -1374,6 +1609,76 @@
"NextToken":{"shape":"token"}
}
},
+ "ServiceNowConnectorOperator":{
+ "type":"string",
+ "enum":[
+ "PROJECTION",
+ "CONTAINS",
+ "LESS_THAN",
+ "GREATER_THAN",
+ "BETWEEN",
+ "LESS_THAN_OR_EQUAL_TO",
+ "GREATER_THAN_OR_EQUAL_TO",
+ "EQUAL_TO",
+ "NOT_EQUAL_TO",
+ "ADDITION",
+ "MULTIPLICATION",
+ "DIVISION",
+ "SUBTRACTION",
+ "MASK_ALL",
+ "MASK_FIRST_N",
+ "MASK_LAST_N",
+ "VALIDATE_NON_NULL",
+ "VALIDATE_NON_ZERO",
+ "VALIDATE_NON_NEGATIVE",
+ "VALIDATE_NUMERIC",
+ "NO_OP"
+ ]
+ },
+ "ServiceNowSourceProperties":{
+ "type":"structure",
+ "required":["Object"],
+ "members":{
+ "Object":{"shape":"Object"}
+ }
+ },
+ "SourceConnectorProperties":{
+ "type":"structure",
+ "members":{
+ "Marketo":{"shape":"MarketoSourceProperties"},
+ "S3":{"shape":"S3SourceProperties"},
+ "Salesforce":{"shape":"SalesforceSourceProperties"},
+ "ServiceNow":{"shape":"ServiceNowSourceProperties"},
+ "Zendesk":{"shape":"ZendeskSourceProperties"}
+ }
+ },
+ "SourceConnectorType":{
+ "type":"string",
+ "enum":[
+ "Salesforce",
+ "Marketo",
+ "Zendesk",
+ "Servicenow",
+ "S3"
+ ]
+ },
+ "SourceFields":{
+ "type":"list",
+ "member":{"shape":"stringTo2048"}
+ },
+ "SourceFlowConfig":{
+ "type":"structure",
+ "required":[
+ "ConnectorType",
+ "SourceConnectorProperties"
+ ],
+ "members":{
+ "ConnectorProfileName":{"shape":"ConnectorProfileName"},
+ "ConnectorType":{"shape":"SourceConnectorType"},
+ "IncrementalPullConfig":{"shape":"IncrementalPullConfig"},
+ "SourceConnectorProperties":{"shape":"SourceConnectorProperties"}
+ }
+ },
"StandardIdentifier":{
"type":"string",
"enum":[
@@ -1436,6 +1741,41 @@
"type":"string",
"max":256
},
+ "Task":{
+ "type":"structure",
+ "required":[
+ "SourceFields",
+ "TaskType"
+ ],
+ "members":{
+ "ConnectorOperator":{"shape":"ConnectorOperator"},
+ "DestinationField":{"shape":"DestinationField"},
+ "SourceFields":{"shape":"SourceFields"},
+ "TaskProperties":{"shape":"TaskPropertiesMap"},
+ "TaskType":{"shape":"TaskType"}
+ }
+ },
+ "TaskPropertiesMap":{
+ "type":"map",
+ "key":{"shape":"OperatorPropertiesKeys"},
+ "value":{"shape":"Property"}
+ },
+ "TaskType":{
+ "type":"string",
+ "enum":[
+ "Arithmetic",
+ "Filter",
+ "Map",
+ "Mask",
+ "Merge",
+ "Truncate",
+ "Validate"
+ ]
+ },
+ "Tasks":{
+ "type":"list",
+ "member":{"shape":"Task"}
+ },
"ThrottlingException":{
"type":"structure",
"members":{
@@ -1444,6 +1784,33 @@
"error":{"httpStatusCode":429},
"exception":true
},
+ "Timezone":{
+ "type":"string",
+ "max":256,
+ "pattern":".*"
+ },
+ "TriggerConfig":{
+ "type":"structure",
+ "required":["TriggerType"],
+ "members":{
+ "TriggerType":{"shape":"TriggerType"},
+ "TriggerProperties":{"shape":"TriggerProperties"}
+ }
+ },
+ "TriggerProperties":{
+ "type":"structure",
+ "members":{
+ "Scheduled":{"shape":"ScheduledTriggerProperties"}
+ }
+ },
+ "TriggerType":{
+ "type":"string",
+ "enum":[
+ "Scheduled",
+ "Event",
+ "OnDemand"
+ ]
+ },
"UntagResourceRequest":{
"type":"structure",
"required":[
@@ -1563,6 +1930,32 @@
"ProfileId":{"shape":"uuid"}
}
},
+ "ZendeskConnectorOperator":{
+ "type":"string",
+ "enum":[
+ "PROJECTION",
+ "GREATER_THAN",
+ "ADDITION",
+ "MULTIPLICATION",
+ "DIVISION",
+ "SUBTRACTION",
+ "MASK_ALL",
+ "MASK_FIRST_N",
+ "MASK_LAST_N",
+ "VALIDATE_NON_NULL",
+ "VALIDATE_NON_ZERO",
+ "VALIDATE_NON_NEGATIVE",
+ "VALIDATE_NUMERIC",
+ "NO_OP"
+ ]
+ },
+ "ZendeskSourceProperties":{
+ "type":"structure",
+ "required":["Object"],
+ "members":{
+ "Object":{"shape":"Object"}
+ }
+ },
"boolean":{"type":"boolean"},
"encryptionKey":{
"type":"string",
@@ -1610,6 +2003,11 @@
"max":255,
"min":1
},
+ "stringTo2048":{
+ "type":"string",
+ "max":2048,
+ "pattern":".*"
+ },
"stringifiedJson":{
"type":"string",
"max":256000,
diff --git a/models/apis/customer-profiles/2020-08-15/docs-2.json b/models/apis/customer-profiles/2020-08-15/docs-2.json
index 3440e2fe771..5027facbc13 100644
--- a/models/apis/customer-profiles/2020-08-15/docs-2.json
+++ b/models/apis/customer-profiles/2020-08-15/docs-2.json
@@ -122,6 +122,30 @@
"refs": {
}
},
+ "BucketName": {
+ "base": null,
+ "refs": {
+ "S3SourceProperties$BucketName": null
+ }
+ },
+ "BucketPrefix": {
+ "base": null,
+ "refs": {
+ "S3SourceProperties$BucketPrefix": null
+ }
+ },
+ "ConnectorOperator": {
+ "base": null,
+ "refs": {
+ "Task$ConnectorOperator": null
+ }
+ },
+ "ConnectorProfileName": {
+ "base": null,
+ "refs": {
+ "SourceFlowConfig$ConnectorProfileName": null
+ }
+ },
"CreateDomainRequest": {
"base": null,
"refs": {
@@ -142,6 +166,26 @@
"refs": {
}
},
+ "DataPullMode": {
+ "base": null,
+ "refs": {
+ "ScheduledTriggerProperties$DataPullMode": null
+ }
+ },
+ "Date": {
+ "base": null,
+ "refs": {
+ "ScheduledTriggerProperties$ScheduleStartTime": null,
+ "ScheduledTriggerProperties$ScheduleEndTime": null,
+ "ScheduledTriggerProperties$FirstExecutionFrom": null
+ }
+ },
+ "DatetimeTypeFieldName": {
+ "base": null,
+ "refs": {
+ "IncrementalPullConfig$DatetimeTypeFieldName": null
+ }
+ },
"DeleteDomainRequest": {
"base": null,
"refs": {
@@ -202,6 +246,12 @@
"refs": {
}
},
+ "DestinationField": {
+ "base": null,
+ "refs": {
+ "Task$DestinationField": null
+ }
+ },
"DomainList": {
"base": null,
"refs": {
@@ -235,6 +285,24 @@
"ObjectTypeKey$FieldNames": "
The reference for the key name of the fields map.
"
}
},
+ "FlowDefinition": {
+ "base": null,
+ "refs": {
+ "PutIntegrationRequest$FlowDefinition": null
+ }
+ },
+ "FlowDescription": {
+ "base": null,
+ "refs": {
+ "FlowDefinition$Description": null
+ }
+ },
+ "FlowName": {
+ "base": null,
+ "refs": {
+ "FlowDefinition$FlowName": null
+ }
+ },
"Gender": {
"base": null,
"refs": {
@@ -283,6 +351,12 @@
"refs": {
}
},
+ "IncrementalPullConfig": {
+ "base": null,
+ "refs": {
+ "SourceFlowConfig$IncrementalPullConfig": null
+ }
+ },
"IntegrationList": {
"base": null,
"refs": {
@@ -304,6 +378,12 @@
"PutProfileObjectTypeResponse$Keys": "A list of unique keys that can be used to map data to the profile.
"
}
},
+ "KmsArn": {
+ "base": null,
+ "refs": {
+ "FlowDefinition$KmsArn": null
+ }
+ },
"ListAccountIntegrationsRequest": {
"base": null,
"refs": {
@@ -404,6 +484,27 @@
"refs": {
}
},
+ "MarketoConnectorOperator": {
+ "base": null,
+ "refs": {
+ "ConnectorOperator$Marketo": null
+ }
+ },
+ "MarketoSourceProperties": {
+ "base": null,
+ "refs": {
+ "SourceConnectorProperties$Marketo": null
+ }
+ },
+ "Object": {
+ "base": null,
+ "refs": {
+ "MarketoSourceProperties$Object": null,
+ "SalesforceSourceProperties$Object": null,
+ "ServiceNowSourceProperties$Object": null,
+ "ZendeskSourceProperties$Object": null
+ }
+ },
"ObjectTypeField": {
"base": "Represents a field in a ProfileObjectType.
",
"refs": {
@@ -422,6 +523,12 @@
"KeyMap$value": null
}
},
+ "OperatorPropertiesKeys": {
+ "base": null,
+ "refs": {
+ "TaskPropertiesMap$key": null
+ }
+ },
"PartyType": {
"base": null,
"refs": {
@@ -460,6 +567,12 @@
"ListProfileObjectTypeTemplatesResponse$Items": "The list of ListProfileObjectType template instances.
"
}
},
+ "Property": {
+ "base": null,
+ "refs": {
+ "TaskPropertiesMap$value": null
+ }
+ },
"PutIntegrationRequest": {
"base": null,
"refs": {
@@ -495,6 +608,48 @@
"refs": {
}
},
+ "S3ConnectorOperator": {
+ "base": null,
+ "refs": {
+ "ConnectorOperator$S3": null
+ }
+ },
+ "S3SourceProperties": {
+ "base": null,
+ "refs": {
+ "SourceConnectorProperties$S3": null
+ }
+ },
+ "SalesforceConnectorOperator": {
+ "base": null,
+ "refs": {
+ "ConnectorOperator$Salesforce": null
+ }
+ },
+ "SalesforceSourceProperties": {
+ "base": null,
+ "refs": {
+ "SourceConnectorProperties$Salesforce": null
+ }
+ },
+ "ScheduleExpression": {
+ "base": null,
+ "refs": {
+ "ScheduledTriggerProperties$ScheduleExpression": null
+ }
+ },
+ "ScheduleOffset": {
+ "base": null,
+ "refs": {
+ "ScheduledTriggerProperties$ScheduleOffset": null
+ }
+ },
+ "ScheduledTriggerProperties": {
+ "base": null,
+ "refs": {
+ "TriggerProperties$Scheduled": null
+ }
+ },
"SearchProfilesRequest": {
"base": null,
"refs": {
@@ -505,6 +660,42 @@
"refs": {
}
},
+ "ServiceNowConnectorOperator": {
+ "base": null,
+ "refs": {
+ "ConnectorOperator$ServiceNow": null
+ }
+ },
+ "ServiceNowSourceProperties": {
+ "base": null,
+ "refs": {
+ "SourceConnectorProperties$ServiceNow": null
+ }
+ },
+ "SourceConnectorProperties": {
+ "base": null,
+ "refs": {
+ "SourceFlowConfig$SourceConnectorProperties": null
+ }
+ },
+ "SourceConnectorType": {
+ "base": null,
+ "refs": {
+ "SourceFlowConfig$ConnectorType": null
+ }
+ },
+ "SourceFields": {
+ "base": null,
+ "refs": {
+ "Task$SourceFields": null
+ }
+ },
+ "SourceFlowConfig": {
+ "base": null,
+ "refs": {
+ "FlowDefinition$SourceFlowConfig": null
+ }
+ },
"StandardIdentifier": {
"base": null,
"refs": {
@@ -575,11 +766,59 @@
"TagMap$value": null
}
},
+ "Task": {
+ "base": null,
+ "refs": {
+ "Tasks$member": null
+ }
+ },
+ "TaskPropertiesMap": {
+ "base": null,
+ "refs": {
+ "Task$TaskProperties": null
+ }
+ },
+ "TaskType": {
+ "base": null,
+ "refs": {
+ "Task$TaskType": null
+ }
+ },
+ "Tasks": {
+ "base": null,
+ "refs": {
+ "FlowDefinition$Tasks": null
+ }
+ },
"ThrottlingException": {
"base": "You exceeded the maximum number of requests.
",
"refs": {
}
},
+ "Timezone": {
+ "base": null,
+ "refs": {
+ "ScheduledTriggerProperties$Timezone": null
+ }
+ },
+ "TriggerConfig": {
+ "base": null,
+ "refs": {
+ "FlowDefinition$TriggerConfig": null
+ }
+ },
+ "TriggerProperties": {
+ "base": null,
+ "refs": {
+ "TriggerConfig$TriggerProperties": null
+ }
+ },
+ "TriggerType": {
+ "base": null,
+ "refs": {
+ "TriggerConfig$TriggerType": null
+ }
+ },
"UntagResourceRequest": {
"base": null,
"refs": {
@@ -625,13 +864,27 @@
"refs": {
}
},
+ "ZendeskConnectorOperator": {
+ "base": null,
+ "refs": {
+ "ConnectorOperator$Zendesk": null
+ }
+ },
+ "ZendeskSourceProperties": {
+ "base": null,
+ "refs": {
+ "SourceConnectorProperties$Zendesk": null
+ }
+ },
"boolean": {
"base": null,
"refs": {
"GetProfileObjectTypeResponse$AllowProfileCreation": "Indicates whether a profile should be created when data is received if one doesn’t exist for an object of this type. The default is FALSE
. If the AllowProfileCreation flag is set to FALSE
, then the service tries to fetch a standard profile and associate this object with the profile. If it is set to TRUE
, and if no match is found, then the service creates a new standard profile.
",
"GetProfileObjectTypeTemplateResponse$AllowProfileCreation": "Indicates whether a profile should be created when data is received if one doesn’t exist for an object of this type. The default is FALSE
. If the AllowProfileCreation flag is set to FALSE
, then the service tries to fetch a standard profile and associate this object with the profile. If it is set to TRUE
, and if no match is found, then the service creates a new standard profile.
",
"PutProfileObjectTypeRequest$AllowProfileCreation": "Indicates whether a profile should be created when data is received if one doesn’t exist for an object of this type. The default is FALSE
. If the AllowProfileCreation flag is set to FALSE
, then the service tries to fetch a standard profile and associate this object with the profile. If it is set to TRUE
, and if no match is found, then the service creates a new standard profile.
",
- "PutProfileObjectTypeResponse$AllowProfileCreation": "Indicates whether a profile should be created when data is received if one doesn’t exist for an object of this type. The default is FALSE
. If the AllowProfileCreation flag is set to FALSE
, then the service tries to fetch a standard profile and associate this object with the profile. If it is set to TRUE
, and if no match is found, then the service creates a new standard profile.
"
+ "PutProfileObjectTypeResponse$AllowProfileCreation": "Indicates whether a profile should be created when data is received if one doesn’t exist for an object of this type. The default is FALSE
. If the AllowProfileCreation flag is set to FALSE
, then the service tries to fetch a standard profile and associate this object with the profile. If it is set to TRUE
, and if no match is found, then the service creates a new standard profile.
",
+ "SalesforceSourceProperties$EnableDynamicFieldUpdate": null,
+ "SalesforceSourceProperties$IncludeDeletedRecords": null
}
},
"encryptionKey": {
@@ -813,6 +1066,12 @@
"requestValueList$member": null
}
},
+ "stringTo2048": {
+ "base": null,
+ "refs": {
+ "SourceFields$member": null
+ }
+ },
"stringifiedJson": {
"base": null,
"refs": {
diff --git a/models/apis/eventbridge/2015-10-07/api-2.json b/models/apis/eventbridge/2015-10-07/api-2.json
index 4e60aaafa1c..d9322693352 100644
--- a/models/apis/eventbridge/2015-10-07/api-2.json
+++ b/models/apis/eventbridge/2015-10-07/api-2.json
@@ -2423,6 +2423,39 @@
"max":5,
"min":1
},
+ "SageMakerPipelineParameter":{
+ "type":"structure",
+ "required":[
+ "Name",
+ "Value"
+ ],
+ "members":{
+ "Name":{"shape":"SageMakerPipelineParameterName"},
+ "Value":{"shape":"SageMakerPipelineParameterValue"}
+ }
+ },
+ "SageMakerPipelineParameterList":{
+ "type":"list",
+ "member":{"shape":"SageMakerPipelineParameter"},
+ "max":200,
+ "min":0
+ },
+ "SageMakerPipelineParameterName":{
+ "type":"string",
+ "max":256,
+ "min":1,
+ "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9])*$"
+ },
+ "SageMakerPipelineParameterValue":{
+ "type":"string",
+ "max":1024
+ },
+ "SageMakerPipelineParameters":{
+ "type":"structure",
+ "members":{
+ "PipelineParameterList":{"shape":"SageMakerPipelineParameterList"}
+ }
+ },
"ScheduleExpression":{
"type":"string",
"max":256
@@ -2552,6 +2585,7 @@
"SqsParameters":{"shape":"SqsParameters"},
"HttpParameters":{"shape":"HttpParameters"},
"RedshiftDataParameters":{"shape":"RedshiftDataParameters"},
+ "SageMakerPipelineParameters":{"shape":"SageMakerPipelineParameters"},
"DeadLetterConfig":{"shape":"DeadLetterConfig"},
"RetryPolicy":{"shape":"RetryPolicy"}
}
diff --git a/models/apis/eventbridge/2015-10-07/docs-2.json b/models/apis/eventbridge/2015-10-07/docs-2.json
index 240fd2a200c..dde0423caa2 100644
--- a/models/apis/eventbridge/2015-10-07/docs-2.json
+++ b/models/apis/eventbridge/2015-10-07/docs-2.json
@@ -43,7 +43,7 @@
"PutPartnerEvents": "This is used by SaaS partners to write events to a customer's partner event bus. AWS customers do not use this operation.
",
"PutPermission": "Running PutPermission
permits the specified AWS account or AWS organization to put events to the specified event bus. Amazon EventBridge (CloudWatch Events) rules in your account are triggered by these events arriving to an event bus in your account.
For another account to send events to your account, that external account must have an EventBridge rule with your account's event bus as a target.
To enable multiple AWS accounts to put events to your event bus, run PutPermission
once for each of these accounts. Or, if all the accounts are members of the same AWS organization, you can run PutPermission
once specifying Principal
as \"*\" and specifying the AWS organization ID in Condition
, to grant permissions to all accounts in that organization.
If you grant permissions using an organization, then accounts in that organization must specify a RoleArn
with proper permissions when they use PutTarget
to add your account's event bus as a target. For more information, see Sending and Receiving Events Between AWS Accounts in the Amazon EventBridge User Guide.
The permission policy on the default event bus cannot exceed 10 KB in size.
",
"PutRule": "Creates or updates the specified rule. Rules are enabled by default, or based on value of the state. You can disable a rule using DisableRule.
A single rule watches for events from a single event bus. Events generated by AWS services go to your account's default event bus. Events generated by SaaS partner services or applications go to the matching partner event bus. If you have custom applications or services, you can specify whether their events go to your default event bus or a custom event bus that you have created. For more information, see CreateEventBus.
If you are updating an existing rule, the rule is replaced with what you specify in this PutRule
command. If you omit arguments in PutRule
, the old values for those arguments are not kept. Instead, they are replaced with null values.
When you create or update a rule, incoming events might not immediately start matching to new or updated rules. Allow a short period of time for changes to take effect.
A rule must contain at least an EventPattern or ScheduleExpression. Rules with EventPatterns are triggered when a matching event is observed. Rules with ScheduleExpressions self-trigger based on the given schedule. A rule can have both an EventPattern and a ScheduleExpression, in which case the rule triggers on matching events as well as on a schedule.
When you initially create a rule, you can optionally assign one or more tags to the rule. Tags can help you organize and categorize your resources. You can also use them to scope user permissions, by granting a user permission to access or change only rules with certain tag values. To use the PutRule
operation and assign tags, you must have both the events:PutRule
and events:TagResource
permissions.
If you are updating an existing rule, any tags you specify in the PutRule
operation are ignored. To update the tags of an existing rule, use TagResource and UntagResource.
Most services in AWS treat : or / as the same character in Amazon Resource Names (ARNs). However, EventBridge uses an exact match in event patterns and rules. Be sure to use the correct ARN characters when creating event patterns so that they match the ARN syntax in the event you want to match.
In EventBridge, it is possible to create rules that lead to infinite loops, where a rule is fired repeatedly. For example, a rule might detect that ACLs have changed on an S3 bucket, and trigger software to change them to the desired state. If the rule is not written carefully, the subsequent change to the ACLs fires the rule again, creating an infinite loop.
To prevent this, write the rules so that the triggered actions do not re-fire the same rule. For example, your rule could fire only if ACLs are found to be in a bad state, instead of after any change.
An infinite loop can quickly cause higher than expected charges. We recommend that you use budgeting, which alerts you when charges exceed your specified limit. For more information, see Managing Your Costs with Budgets.
",
- "PutTargets": "Adds the specified targets to the specified rule, or updates the targets if they are already associated with the rule.
Targets are the resources that are invoked when a rule is triggered.
You can configure the following as targets for Events:
-
EC2 instances
-
SSM Run Command
-
SSM Automation
-
AWS Lambda functions
-
Data streams in Amazon Kinesis Data Streams
-
Data delivery streams in Amazon Kinesis Data Firehose
-
Amazon ECS tasks
-
AWS Step Functions state machines
-
AWS Batch jobs
-
AWS CodeBuild projects
-
Pipelines in AWS CodePipeline
-
Amazon Inspector assessment templates
-
Amazon SNS topics
-
Amazon SQS queues, including FIFO queues
-
The default event bus of another AWS account
-
Amazon API Gateway REST APIs
-
Redshift Clusters to invoke Data API ExecuteStatement on
-
Custom/SaaS HTTPS APIs via EventBridge API Destinations
Creating rules with built-in targets is supported only in the AWS Management Console. The built-in targets are EC2 CreateSnapshot API call
, EC2 RebootInstances API call
, EC2 StopInstances API call
, and EC2 TerminateInstances API call
.
For some target types, PutTargets
provides target-specific parameters. If the target is a Kinesis data stream, you can optionally specify which shard the event goes to by using the KinesisParameters
argument. To invoke a command on multiple EC2 instances with one rule, you can use the RunCommandParameters
field.
To be able to make API calls against the resources that you own, Amazon EventBridge (CloudWatch Events) needs the appropriate permissions. For AWS Lambda and Amazon SNS resources, EventBridge relies on resource-based policies. For EC2 instances, Kinesis data streams, AWS Step Functions state machines and API Gateway REST APIs, EventBridge relies on IAM roles that you specify in the RoleARN
argument in PutTargets
. For more information, see Authentication and Access Control in the Amazon EventBridge User Guide.
If another AWS account is in the same region and has granted you permission (using PutPermission
), you can send events to that account. Set that account's event bus as a target of the rules in your account. To send the matched events to the other account, specify that account's event bus as the Arn
value when you run PutTargets
. If your account sends events to another account, your account is charged for each sent event. Each event sent to another account is charged as a custom event. The account receiving the event is not charged. For more information, see Amazon EventBridge (CloudWatch Events) Pricing.
Input
, InputPath
, and InputTransformer
are not available with PutTarget
if the target is an event bus of a different AWS account.
If you are setting the event bus of another account as the target, and that account granted permission to your account through an organization instead of directly by the account ID, then you must specify a RoleArn
with proper permissions in the Target
structure. For more information, see Sending and Receiving Events Between AWS Accounts in the Amazon EventBridge User Guide.
For more information about enabling cross-account events, see PutPermission.
Input, InputPath, and InputTransformer are mutually exclusive and optional parameters of a target. When a rule is triggered due to a matched event:
-
If none of the following arguments are specified for a target, then the entire event is passed to the target in JSON format (unless the target is Amazon EC2 Run Command or Amazon ECS task, in which case nothing from the event is passed to the target).
-
If Input is specified in the form of valid JSON, then the matched event is overridden with this constant.
-
If InputPath is specified in the form of JSONPath (for example, $.detail
), then only the part of the event specified in the path is passed to the target (for example, only the detail part of the event is passed).
-
If InputTransformer is specified, then one or more specified JSONPaths are extracted from the event and used as values in a template that you specify as the input to the target.
When you specify InputPath
or InputTransformer
, you must use JSON dot notation, not bracket notation.
When you add targets to a rule and the associated rule triggers soon after, new or updated targets might not be immediately invoked. Allow a short period of time for changes to take effect.
This action can partially fail if too many requests are made at the same time. If that happens, FailedEntryCount
is non-zero in the response and each entry in FailedEntries
provides the ID of the failed target and the error code.
",
+ "PutTargets": "Adds the specified targets to the specified rule, or updates the targets if they are already associated with the rule.
Targets are the resources that are invoked when a rule is triggered.
You can configure the following as targets for Events:
-
EC2 instances
-
SSM Run Command
-
SSM Automation
-
AWS Lambda functions
-
Data streams in Amazon Kinesis Data Streams
-
Data delivery streams in Amazon Kinesis Data Firehose
-
Amazon ECS tasks
-
AWS Step Functions state machines
-
AWS Batch jobs
-
AWS CodeBuild projects
-
Pipelines in AWS CodePipeline
-
Amazon Inspector assessment templates
-
Amazon SNS topics
-
Amazon SQS queues, including FIFO queues
-
The default event bus of another AWS account
-
Amazon API Gateway REST APIs
-
Redshift Clusters to invoke Data API ExecuteStatement on
-
Custom/SaaS HTTPS APIs via EventBridge API Destinations
-
Amazon SageMaker Model Building Pipelines
Creating rules with built-in targets is supported only in the AWS Management Console. The built-in targets are EC2 CreateSnapshot API call
, EC2 RebootInstances API call
, EC2 StopInstances API call
, and EC2 TerminateInstances API call
.
For some target types, PutTargets
provides target-specific parameters. If the target is a Kinesis data stream, you can optionally specify which shard the event goes to by using the KinesisParameters
argument. To invoke a command on multiple EC2 instances with one rule, you can use the RunCommandParameters
field.
To be able to make API calls against the resources that you own, Amazon EventBridge (CloudWatch Events) needs the appropriate permissions. For AWS Lambda and Amazon SNS resources, EventBridge relies on resource-based policies. For EC2 instances, Kinesis data streams, AWS Step Functions state machines and API Gateway REST APIs, EventBridge relies on IAM roles that you specify in the RoleARN
argument in PutTargets
. For more information, see Authentication and Access Control in the Amazon EventBridge User Guide.
If another AWS account is in the same region and has granted you permission (using PutPermission
), you can send events to that account. Set that account's event bus as a target of the rules in your account. To send the matched events to the other account, specify that account's event bus as the Arn
value when you run PutTargets
. If your account sends events to another account, your account is charged for each sent event. Each event sent to another account is charged as a custom event. The account receiving the event is not charged. For more information, see Amazon EventBridge (CloudWatch Events) Pricing.
Input
, InputPath
, and InputTransformer
are not available with PutTarget
if the target is an event bus of a different AWS account.
If you are setting the event bus of another account as the target, and that account granted permission to your account through an organization instead of directly by the account ID, then you must specify a RoleArn
with proper permissions in the Target
structure. For more information, see Sending and Receiving Events Between AWS Accounts in the Amazon EventBridge User Guide.
For more information about enabling cross-account events, see PutPermission.
Input, InputPath, and InputTransformer are mutually exclusive and optional parameters of a target. When a rule is triggered due to a matched event:
-
If none of the following arguments are specified for a target, then the entire event is passed to the target in JSON format (unless the target is Amazon EC2 Run Command or Amazon ECS task, in which case nothing from the event is passed to the target).
-
If Input is specified in the form of valid JSON, then the matched event is overridden with this constant.
-
If InputPath is specified in the form of JSONPath (for example, $.detail
), then only the part of the event specified in the path is passed to the target (for example, only the detail part of the event is passed).
-
If InputTransformer is specified, then one or more specified JSONPaths are extracted from the event and used as values in a template that you specify as the input to the target.
When you specify InputPath
or InputTransformer
, you must use JSON dot notation, not bracket notation.
When you add targets to a rule and the associated rule triggers soon after, new or updated targets might not be immediately invoked. Allow a short period of time for changes to take effect.
This action can partially fail if too many requests are made at the same time. If that happens, FailedEntryCount
is non-zero in the response and each entry in FailedEntries
provides the ID of the failed target and the error code.
",
"RemovePermission": "Revokes the permission of another AWS account to be able to put events to the specified event bus. Specify the account to revoke by the StatementId
value that you associated with the account when you granted it permission with PutPermission
. You can find the StatementId
by using DescribeEventBus.
",
"RemoveTargets": "Removes the specified targets from the specified rule. When the rule is triggered, those targets are no longer be invoked.
When you remove a target, when the associated rule triggers, removed targets might continue to be invoked. Allow a short period of time for changes to take effect.
This action can partially fail if too many requests are made at the same time. If that happens, FailedEntryCount
is non-zero in the response and each entry in FailedEntries
provides the ID of the failed target and the error code.
",
"StartReplay": "Starts the specified replay. Events are not necessarily replayed in the exact same order that they were added to the archive. A replay processes events to replay based on the time in the event, and replays them using 1 minute intervals. If you specify an EventStartTime
and an EventEndTime
that covers a 20 minute time range, the events are replayed from the first minute of that 20 minute range first. Then the events from the second minute are replayed. You can use DescribeReplay
to determine the progress of a replay. The value returned for EventLastReplayedTime
indicates the time within the specified time range associated with the last event replayed.
",
@@ -1613,6 +1613,36 @@
"RunCommandParameters$RunCommandTargets": "Currently, we support including only one RunCommandTarget block, which specifies either an array of InstanceIds or a tag.
"
}
},
+ "SageMakerPipelineParameter": {
+ "base": "Name/Value pair of a parameter to start execution of a SageMaker Model Building Pipeline.
",
+ "refs": {
+ "SageMakerPipelineParameterList$member": null
+ }
+ },
+ "SageMakerPipelineParameterList": {
+ "base": null,
+ "refs": {
+ "SageMakerPipelineParameters$PipelineParameterList": "List of Parameter names and values for SageMaker Model Building Pipeline execution.
"
+ }
+ },
+ "SageMakerPipelineParameterName": {
+ "base": null,
+ "refs": {
+ "SageMakerPipelineParameter$Name": "Name of parameter to start execution of a SageMaker Model Building Pipeline.
"
+ }
+ },
+ "SageMakerPipelineParameterValue": {
+ "base": null,
+ "refs": {
+ "SageMakerPipelineParameter$Value": "Value of parameter to start execution of a SageMaker Model Building Pipeline.
"
+ }
+ },
+ "SageMakerPipelineParameters": {
+ "base": "These are custom parameters to use when the target is a SageMaker Model Building Pipeline that starts based on EventBridge events.
",
+ "refs": {
+ "Target$SageMakerPipelineParameters": "Contains the SageMaker Model Building Pipeline parameters to start execution of a SageMaker Model Building Pipeline.
If you specify a SageMaker Model Building Pipeline as a target, you can use this to specify parameters to start a pipeline execution based on EventBridge events.
"
+ }
+ },
"ScheduleExpression": {
"base": null,
"refs": {
diff --git a/models/apis/events/2015-10-07/api-2.json b/models/apis/events/2015-10-07/api-2.json
index be0988ab32b..6a834319cf0 100644
--- a/models/apis/events/2015-10-07/api-2.json
+++ b/models/apis/events/2015-10-07/api-2.json
@@ -2423,6 +2423,39 @@
"max":5,
"min":1
},
+ "SageMakerPipelineParameter":{
+ "type":"structure",
+ "required":[
+ "Name",
+ "Value"
+ ],
+ "members":{
+ "Name":{"shape":"SageMakerPipelineParameterName"},
+ "Value":{"shape":"SageMakerPipelineParameterValue"}
+ }
+ },
+ "SageMakerPipelineParameterList":{
+ "type":"list",
+ "member":{"shape":"SageMakerPipelineParameter"},
+ "max":200,
+ "min":0
+ },
+ "SageMakerPipelineParameterName":{
+ "type":"string",
+ "max":256,
+ "min":1,
+ "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9])*$"
+ },
+ "SageMakerPipelineParameterValue":{
+ "type":"string",
+ "max":1024
+ },
+ "SageMakerPipelineParameters":{
+ "type":"structure",
+ "members":{
+ "PipelineParameterList":{"shape":"SageMakerPipelineParameterList"}
+ }
+ },
"ScheduleExpression":{
"type":"string",
"max":256
@@ -2552,6 +2585,7 @@
"SqsParameters":{"shape":"SqsParameters"},
"HttpParameters":{"shape":"HttpParameters"},
"RedshiftDataParameters":{"shape":"RedshiftDataParameters"},
+ "SageMakerPipelineParameters":{"shape":"SageMakerPipelineParameters"},
"DeadLetterConfig":{"shape":"DeadLetterConfig"},
"RetryPolicy":{"shape":"RetryPolicy"}
}
diff --git a/models/apis/events/2015-10-07/docs-2.json b/models/apis/events/2015-10-07/docs-2.json
index 240fd2a200c..dde0423caa2 100644
--- a/models/apis/events/2015-10-07/docs-2.json
+++ b/models/apis/events/2015-10-07/docs-2.json
@@ -43,7 +43,7 @@
"PutPartnerEvents": "This is used by SaaS partners to write events to a customer's partner event bus. AWS customers do not use this operation.
",
"PutPermission": "Running PutPermission
permits the specified AWS account or AWS organization to put events to the specified event bus. Amazon EventBridge (CloudWatch Events) rules in your account are triggered by these events arriving to an event bus in your account.
For another account to send events to your account, that external account must have an EventBridge rule with your account's event bus as a target.
To enable multiple AWS accounts to put events to your event bus, run PutPermission
once for each of these accounts. Or, if all the accounts are members of the same AWS organization, you can run PutPermission
once specifying Principal
as \"*\" and specifying the AWS organization ID in Condition
, to grant permissions to all accounts in that organization.
If you grant permissions using an organization, then accounts in that organization must specify a RoleArn
with proper permissions when they use PutTarget
to add your account's event bus as a target. For more information, see Sending and Receiving Events Between AWS Accounts in the Amazon EventBridge User Guide.
The permission policy on the default event bus cannot exceed 10 KB in size.
",
"PutRule": "Creates or updates the specified rule. Rules are enabled by default, or based on value of the state. You can disable a rule using DisableRule.
A single rule watches for events from a single event bus. Events generated by AWS services go to your account's default event bus. Events generated by SaaS partner services or applications go to the matching partner event bus. If you have custom applications or services, you can specify whether their events go to your default event bus or a custom event bus that you have created. For more information, see CreateEventBus.
If you are updating an existing rule, the rule is replaced with what you specify in this PutRule
command. If you omit arguments in PutRule
, the old values for those arguments are not kept. Instead, they are replaced with null values.
When you create or update a rule, incoming events might not immediately start matching to new or updated rules. Allow a short period of time for changes to take effect.
A rule must contain at least an EventPattern or ScheduleExpression. Rules with EventPatterns are triggered when a matching event is observed. Rules with ScheduleExpressions self-trigger based on the given schedule. A rule can have both an EventPattern and a ScheduleExpression, in which case the rule triggers on matching events as well as on a schedule.
When you initially create a rule, you can optionally assign one or more tags to the rule. Tags can help you organize and categorize your resources. You can also use them to scope user permissions, by granting a user permission to access or change only rules with certain tag values. To use the PutRule
operation and assign tags, you must have both the events:PutRule
and events:TagResource
permissions.
If you are updating an existing rule, any tags you specify in the PutRule
operation are ignored. To update the tags of an existing rule, use TagResource and UntagResource.
Most services in AWS treat : or / as the same character in Amazon Resource Names (ARNs). However, EventBridge uses an exact match in event patterns and rules. Be sure to use the correct ARN characters when creating event patterns so that they match the ARN syntax in the event you want to match.
In EventBridge, it is possible to create rules that lead to infinite loops, where a rule is fired repeatedly. For example, a rule might detect that ACLs have changed on an S3 bucket, and trigger software to change them to the desired state. If the rule is not written carefully, the subsequent change to the ACLs fires the rule again, creating an infinite loop.
To prevent this, write the rules so that the triggered actions do not re-fire the same rule. For example, your rule could fire only if ACLs are found to be in a bad state, instead of after any change.
An infinite loop can quickly cause higher than expected charges. We recommend that you use budgeting, which alerts you when charges exceed your specified limit. For more information, see Managing Your Costs with Budgets.
",
- "PutTargets": "Adds the specified targets to the specified rule, or updates the targets if they are already associated with the rule.
Targets are the resources that are invoked when a rule is triggered.
You can configure the following as targets for Events:
-
EC2 instances
-
SSM Run Command
-
SSM Automation
-
AWS Lambda functions
-
Data streams in Amazon Kinesis Data Streams
-
Data delivery streams in Amazon Kinesis Data Firehose
-
Amazon ECS tasks
-
AWS Step Functions state machines
-
AWS Batch jobs
-
AWS CodeBuild projects
-
Pipelines in AWS CodePipeline
-
Amazon Inspector assessment templates
-
Amazon SNS topics
-
Amazon SQS queues, including FIFO queues
-
The default event bus of another AWS account
-
Amazon API Gateway REST APIs
-
Redshift Clusters to invoke Data API ExecuteStatement on
-
Custom/SaaS HTTPS APIs via EventBridge API Destinations
Creating rules with built-in targets is supported only in the AWS Management Console. The built-in targets are EC2 CreateSnapshot API call
, EC2 RebootInstances API call
, EC2 StopInstances API call
, and EC2 TerminateInstances API call
.
For some target types, PutTargets
provides target-specific parameters. If the target is a Kinesis data stream, you can optionally specify which shard the event goes to by using the KinesisParameters
argument. To invoke a command on multiple EC2 instances with one rule, you can use the RunCommandParameters
field.
To be able to make API calls against the resources that you own, Amazon EventBridge (CloudWatch Events) needs the appropriate permissions. For AWS Lambda and Amazon SNS resources, EventBridge relies on resource-based policies. For EC2 instances, Kinesis data streams, AWS Step Functions state machines and API Gateway REST APIs, EventBridge relies on IAM roles that you specify in the RoleARN
argument in PutTargets
. For more information, see Authentication and Access Control in the Amazon EventBridge User Guide.
If another AWS account is in the same region and has granted you permission (using PutPermission
), you can send events to that account. Set that account's event bus as a target of the rules in your account. To send the matched events to the other account, specify that account's event bus as the Arn
value when you run PutTargets
. If your account sends events to another account, your account is charged for each sent event. Each event sent to another account is charged as a custom event. The account receiving the event is not charged. For more information, see Amazon EventBridge (CloudWatch Events) Pricing.
Input
, InputPath
, and InputTransformer
are not available with PutTarget
if the target is an event bus of a different AWS account.
If you are setting the event bus of another account as the target, and that account granted permission to your account through an organization instead of directly by the account ID, then you must specify a RoleArn
with proper permissions in the Target
structure. For more information, see Sending and Receiving Events Between AWS Accounts in the Amazon EventBridge User Guide.
For more information about enabling cross-account events, see PutPermission.
Input, InputPath, and InputTransformer are mutually exclusive and optional parameters of a target. When a rule is triggered due to a matched event:
-
If none of the following arguments are specified for a target, then the entire event is passed to the target in JSON format (unless the target is Amazon EC2 Run Command or Amazon ECS task, in which case nothing from the event is passed to the target).
-
If Input is specified in the form of valid JSON, then the matched event is overridden with this constant.
-
If InputPath is specified in the form of JSONPath (for example, $.detail
), then only the part of the event specified in the path is passed to the target (for example, only the detail part of the event is passed).
-
If InputTransformer is specified, then one or more specified JSONPaths are extracted from the event and used as values in a template that you specify as the input to the target.
When you specify InputPath
or InputTransformer
, you must use JSON dot notation, not bracket notation.
When you add targets to a rule and the associated rule triggers soon after, new or updated targets might not be immediately invoked. Allow a short period of time for changes to take effect.
This action can partially fail if too many requests are made at the same time. If that happens, FailedEntryCount
is non-zero in the response and each entry in FailedEntries
provides the ID of the failed target and the error code.
",
+ "PutTargets": "Adds the specified targets to the specified rule, or updates the targets if they are already associated with the rule.
Targets are the resources that are invoked when a rule is triggered.
You can configure the following as targets for Events:
-
EC2 instances
-
SSM Run Command
-
SSM Automation
-
AWS Lambda functions
-
Data streams in Amazon Kinesis Data Streams
-
Data delivery streams in Amazon Kinesis Data Firehose
-
Amazon ECS tasks
-
AWS Step Functions state machines
-
AWS Batch jobs
-
AWS CodeBuild projects
-
Pipelines in AWS CodePipeline
-
Amazon Inspector assessment templates
-
Amazon SNS topics
-
Amazon SQS queues, including FIFO queues
-
The default event bus of another AWS account
-
Amazon API Gateway REST APIs
-
Redshift Clusters to invoke Data API ExecuteStatement on
-
Custom/SaaS HTTPS APIs via EventBridge API Destinations
-
Amazon SageMaker Model Building Pipelines
Creating rules with built-in targets is supported only in the AWS Management Console. The built-in targets are EC2 CreateSnapshot API call
, EC2 RebootInstances API call
, EC2 StopInstances API call
, and EC2 TerminateInstances API call
.
For some target types, PutTargets
provides target-specific parameters. If the target is a Kinesis data stream, you can optionally specify which shard the event goes to by using the KinesisParameters
argument. To invoke a command on multiple EC2 instances with one rule, you can use the RunCommandParameters
field.
To be able to make API calls against the resources that you own, Amazon EventBridge (CloudWatch Events) needs the appropriate permissions. For AWS Lambda and Amazon SNS resources, EventBridge relies on resource-based policies. For EC2 instances, Kinesis data streams, AWS Step Functions state machines and API Gateway REST APIs, EventBridge relies on IAM roles that you specify in the RoleARN
argument in PutTargets
. For more information, see Authentication and Access Control in the Amazon EventBridge User Guide.
If another AWS account is in the same region and has granted you permission (using PutPermission
), you can send events to that account. Set that account's event bus as a target of the rules in your account. To send the matched events to the other account, specify that account's event bus as the Arn
value when you run PutTargets
. If your account sends events to another account, your account is charged for each sent event. Each event sent to another account is charged as a custom event. The account receiving the event is not charged. For more information, see Amazon EventBridge (CloudWatch Events) Pricing.
Input
, InputPath
, and InputTransformer
are not available with PutTarget
if the target is an event bus of a different AWS account.
If you are setting the event bus of another account as the target, and that account granted permission to your account through an organization instead of directly by the account ID, then you must specify a RoleArn
with proper permissions in the Target
structure. For more information, see Sending and Receiving Events Between AWS Accounts in the Amazon EventBridge User Guide.
For more information about enabling cross-account events, see PutPermission.
Input, InputPath, and InputTransformer are mutually exclusive and optional parameters of a target. When a rule is triggered due to a matched event:
-
If none of the following arguments are specified for a target, then the entire event is passed to the target in JSON format (unless the target is Amazon EC2 Run Command or Amazon ECS task, in which case nothing from the event is passed to the target).
-
If Input is specified in the form of valid JSON, then the matched event is overridden with this constant.
-
If InputPath is specified in the form of JSONPath (for example, $.detail
), then only the part of the event specified in the path is passed to the target (for example, only the detail part of the event is passed).
-
If InputTransformer is specified, then one or more specified JSONPaths are extracted from the event and used as values in a template that you specify as the input to the target.
When you specify InputPath
or InputTransformer
, you must use JSON dot notation, not bracket notation.
When you add targets to a rule and the associated rule triggers soon after, new or updated targets might not be immediately invoked. Allow a short period of time for changes to take effect.
This action can partially fail if too many requests are made at the same time. If that happens, FailedEntryCount
is non-zero in the response and each entry in FailedEntries
provides the ID of the failed target and the error code.
",
"RemovePermission": "Revokes the permission of another AWS account to be able to put events to the specified event bus. Specify the account to revoke by the StatementId
value that you associated with the account when you granted it permission with PutPermission
. You can find the StatementId
by using DescribeEventBus.
",
"RemoveTargets": "Removes the specified targets from the specified rule. When the rule is triggered, those targets are no longer be invoked.
When you remove a target, when the associated rule triggers, removed targets might continue to be invoked. Allow a short period of time for changes to take effect.
This action can partially fail if too many requests are made at the same time. If that happens, FailedEntryCount
is non-zero in the response and each entry in FailedEntries
provides the ID of the failed target and the error code.
",
"StartReplay": "Starts the specified replay. Events are not necessarily replayed in the exact same order that they were added to the archive. A replay processes events to replay based on the time in the event, and replays them using 1 minute intervals. If you specify an EventStartTime
and an EventEndTime
that covers a 20 minute time range, the events are replayed from the first minute of that 20 minute range first. Then the events from the second minute are replayed. You can use DescribeReplay
to determine the progress of a replay. The value returned for EventLastReplayedTime
indicates the time within the specified time range associated with the last event replayed.
",
@@ -1613,6 +1613,36 @@
"RunCommandParameters$RunCommandTargets": "Currently, we support including only one RunCommandTarget block, which specifies either an array of InstanceIds or a tag.
"
}
},
+ "SageMakerPipelineParameter": {
+ "base": "Name/Value pair of a parameter to start execution of a SageMaker Model Building Pipeline.
",
+ "refs": {
+ "SageMakerPipelineParameterList$member": null
+ }
+ },
+ "SageMakerPipelineParameterList": {
+ "base": null,
+ "refs": {
+ "SageMakerPipelineParameters$PipelineParameterList": "List of Parameter names and values for SageMaker Model Building Pipeline execution.
"
+ }
+ },
+ "SageMakerPipelineParameterName": {
+ "base": null,
+ "refs": {
+ "SageMakerPipelineParameter$Name": "Name of parameter to start execution of a SageMaker Model Building Pipeline.
"
+ }
+ },
+ "SageMakerPipelineParameterValue": {
+ "base": null,
+ "refs": {
+ "SageMakerPipelineParameter$Value": "Value of parameter to start execution of a SageMaker Model Building Pipeline.
"
+ }
+ },
+ "SageMakerPipelineParameters": {
+ "base": "These are custom parameters to use when the target is a SageMaker Model Building Pipeline that starts based on EventBridge events.
",
+ "refs": {
+ "Target$SageMakerPipelineParameters": "Contains the SageMaker Model Building Pipeline parameters to start execution of a SageMaker Model Building Pipeline.
If you specify a SageMaker Model Building Pipeline as a target, you can use this to specify parameters to start a pipeline execution based on EventBridge events.
"
+ }
+ },
"ScheduleExpression": {
"base": null,
"refs": {
diff --git a/models/apis/iotwireless/2020-11-22/api-2.json b/models/apis/iotwireless/2020-11-22/api-2.json
index d831e252596..a0ca26ac7b8 100644
--- a/models/apis/iotwireless/2020-11-22/api-2.json
+++ b/models/apis/iotwireless/2020-11-22/api-2.json
@@ -1115,7 +1115,8 @@
"shape":"ClientRequestToken",
"idempotencyToken":true
},
- "LoRaWAN":{"shape":"LoRaWANDevice"}
+ "LoRaWAN":{"shape":"LoRaWANDevice"},
+ "Tags":{"shape":"TagList"}
}
},
"CreateWirelessDeviceResponse":{
diff --git a/models/apis/iotwireless/2020-11-22/docs-2.json b/models/apis/iotwireless/2020-11-22/docs-2.json
index 9cd43ba0f68..16639cf472a 100644
--- a/models/apis/iotwireless/2020-11-22/docs-2.json
+++ b/models/apis/iotwireless/2020-11-22/docs-2.json
@@ -96,7 +96,7 @@
"AmazonResourceName": {
"base": null,
"refs": {
- "ListTagsForResourceRequest$ResourceArn": "The ARN of the resource for which to list tags.
",
+ "ListTagsForResourceRequest$ResourceArn": "The ARN of the resource for which you want to list tags.
",
"TagResourceRequest$ResourceArn": "The ARN of the resource to add tags to.
",
"TooManyTagsException$ResourceName": null,
"UntagResourceRequest$ResourceArn": "The ARN of the resource to remove tags from.
"
@@ -1405,14 +1405,15 @@
"TagList": {
"base": null,
"refs": {
- "AssociateAwsAccountWithPartnerAccountRequest$Tags": "The tags attached to the specified resource. Tags are metadata that can be used to manage a resource
",
- "CreateDestinationRequest$Tags": "The tags to attach to the new destination. Tags are metadata that can be used to manage a resource.
",
- "CreateDeviceProfileRequest$Tags": "The tags to attach to the new device profile Tags are metadata that can be used to manage a resource.
",
- "CreateServiceProfileRequest$Tags": "The tags to attach to the new service profile. Tags are metadata that can be used to manage a resource.
",
- "CreateWirelessGatewayRequest$Tags": "The tags to attach to the new wireless gateway. Tags are metadata that can be used to manage a resource.
",
- "CreateWirelessGatewayTaskDefinitionRequest$Tags": "The tags attached to the specified resource. Tags are metadata that can be used to manage a resource
",
- "ListTagsForResourceResponse$Tags": "The tags attached to the specified resource. Tags are metadata that can be used to manage a resource
",
- "TagResourceRequest$Tags": "Adds to or modifies the tags of the given resource. Tags are metadata that can be used to manage a resource.
"
+ "AssociateAwsAccountWithPartnerAccountRequest$Tags": "The tags to attach to the specified resource. Tags are metadata that you can use to manage a resource.
",
+ "CreateDestinationRequest$Tags": "The tags to attach to the new destination. Tags are metadata that you can use to manage a resource.
",
+ "CreateDeviceProfileRequest$Tags": "The tags to attach to the new device profile. Tags are metadata that you can use to manage a resource.
",
+ "CreateServiceProfileRequest$Tags": "The tags to attach to the new service profile. Tags are metadata that you can use to manage a resource.
",
+ "CreateWirelessDeviceRequest$Tags": "The tags to attach to the new wireless device. Tags are metadata that you can use to manage a resource.
",
+ "CreateWirelessGatewayRequest$Tags": "The tags to attach to the new wireless gateway. Tags are metadata that you can use to manage a resource.
",
+ "CreateWirelessGatewayTaskDefinitionRequest$Tags": "The tags to attach to the specified resource. Tags are metadata that you can use to manage a resource.
",
+ "ListTagsForResourceResponse$Tags": "The tags to attach to the specified resource. Tags are metadata that you can use to manage a resource.
",
+ "TagResourceRequest$Tags": "Adds to or modifies the tags of the given resource. Tags are metadata that you can use to manage a resource.
"
}
},
"TagResourceRequest": {
diff --git a/models/apis/transcribe/2017-10-26/api-2.json b/models/apis/transcribe/2017-10-26/api-2.json
index e68d2687e8c..1e0da404786 100644
--- a/models/apis/transcribe/2017-10-26/api-2.json
+++ b/models/apis/transcribe/2017-10-26/api-2.json
@@ -1277,7 +1277,8 @@
"type":"string",
"enum":[
"remove",
- "mask"
+ "mask",
+ "tag"
]
},
"VocabularyFilterName":{
diff --git a/models/apis/transcribe/2017-10-26/docs-2.json b/models/apis/transcribe/2017-10-26/docs-2.json
index 86da1d7e105..4927823f52e 100644
--- a/models/apis/transcribe/2017-10-26/docs-2.json
+++ b/models/apis/transcribe/2017-10-26/docs-2.json
@@ -763,7 +763,7 @@
"VocabularyFilterMethod": {
"base": null,
"refs": {
- "Settings$VocabularyFilterMethod": "Set to mask
to remove filtered text from the transcript and replace it with three asterisks (\"***\") as placeholder text. Set to remove
to remove filtered text from the transcript without using placeholder text.
"
+ "Settings$VocabularyFilterMethod": "Set to mask
to remove filtered text from the transcript and replace it with three asterisks (\"***\") as placeholder text. Set to remove
to remove filtered text from the transcript without using placeholder text. Set to tag
to mark the word in the transcription output that matches the vocabulary filter. When you set the filter method to tag
, the words matching your vocabulary filter are not masked or removed.
"
}
},
"VocabularyFilterName": {
diff --git a/models/endpoints/endpoints.json b/models/endpoints/endpoints.json
index 37423fd99fe..5f6079dcecb 100644
--- a/models/endpoints/endpoints.json
+++ b/models/endpoints/endpoints.json
@@ -866,6 +866,7 @@
"ap-east-1" : { },
"ap-northeast-1" : { },
"ap-northeast-2" : { },
+ "ap-northeast-3" : { },
"ap-south-1" : { },
"ap-southeast-1" : { },
"ap-southeast-2" : { },
@@ -7773,6 +7774,27 @@
"us-gov-west-1" : { }
}
},
+ "api.detective" : {
+ "defaults" : {
+ "protocols" : [ "https" ]
+ },
+ "endpoints" : {
+ "us-gov-east-1" : { },
+ "us-gov-east-1-fips" : {
+ "credentialScope" : {
+ "region" : "us-gov-east-1"
+ },
+ "hostname" : "api.detective-fips.us-gov-east-1.amazonaws.com"
+ },
+ "us-gov-west-1" : { },
+ "us-gov-west-1-fips" : {
+ "credentialScope" : {
+ "region" : "us-gov-west-1"
+ },
+ "hostname" : "api.detective-fips.us-gov-west-1.amazonaws.com"
+ }
+ }
+ },
"api.ecr" : {
"endpoints" : {
"fips-dkr-us-gov-east-1" : {
diff --git a/service/cloudwatchevents/api.go b/service/cloudwatchevents/api.go
index f96c6f453cc..9a905f445a1 100644
--- a/service/cloudwatchevents/api.go
+++ b/service/cloudwatchevents/api.go
@@ -3799,6 +3799,8 @@ func (c *CloudWatchEvents) PutTargetsRequest(input *PutTargetsInput) (req *reque
//
// * Custom/SaaS HTTPS APIs via EventBridge API Destinations
//
+// * Amazon SageMaker Model Building Pipelines
+//
// Creating rules with built-in targets is supported only in the AWS Management
// Console. The built-in targets are EC2 CreateSnapshot API call, EC2 RebootInstances
// API call, EC2 StopInstances API call, and EC2 TerminateInstances API call.
@@ -12619,6 +12621,109 @@ func (s *RunCommandTarget) SetValues(v []*string) *RunCommandTarget {
return s
}
+// Name/Value pair of a parameter to start execution of a SageMaker Model Building
+// Pipeline.
+type SageMakerPipelineParameter struct {
+ _ struct{} `type:"structure"`
+
+ // Name of parameter to start execution of a SageMaker Model Building Pipeline.
+ //
+ // Name is a required field
+ Name *string `min:"1" type:"string" required:"true"`
+
+ // Value of parameter to start execution of a SageMaker Model Building Pipeline.
+ //
+ // Value is a required field
+ Value *string `type:"string" required:"true"`
+}
+
+// String returns the string representation
+func (s SageMakerPipelineParameter) String() string {
+ return awsutil.Prettify(s)
+}
+
+// GoString returns the string representation
+func (s SageMakerPipelineParameter) GoString() string {
+ return s.String()
+}
+
+// Validate inspects the fields of the type to determine if they are valid.
+func (s *SageMakerPipelineParameter) Validate() error {
+ invalidParams := request.ErrInvalidParams{Context: "SageMakerPipelineParameter"}
+ if s.Name == nil {
+ invalidParams.Add(request.NewErrParamRequired("Name"))
+ }
+ if s.Name != nil && len(*s.Name) < 1 {
+ invalidParams.Add(request.NewErrParamMinLen("Name", 1))
+ }
+ if s.Value == nil {
+ invalidParams.Add(request.NewErrParamRequired("Value"))
+ }
+
+ if invalidParams.Len() > 0 {
+ return invalidParams
+ }
+ return nil
+}
+
+// SetName sets the Name field's value.
+func (s *SageMakerPipelineParameter) SetName(v string) *SageMakerPipelineParameter {
+ s.Name = &v
+ return s
+}
+
+// SetValue sets the Value field's value.
+func (s *SageMakerPipelineParameter) SetValue(v string) *SageMakerPipelineParameter {
+ s.Value = &v
+ return s
+}
+
+// These are custom parameters to use when the target is a SageMaker Model Building
+// Pipeline that starts based on EventBridge events.
+type SageMakerPipelineParameters struct {
+ _ struct{} `type:"structure"`
+
+ // List of Parameter names and values for SageMaker Model Building Pipeline
+ // execution.
+ PipelineParameterList []*SageMakerPipelineParameter `type:"list"`
+}
+
+// String returns the string representation
+func (s SageMakerPipelineParameters) String() string {
+ return awsutil.Prettify(s)
+}
+
+// GoString returns the string representation
+func (s SageMakerPipelineParameters) GoString() string {
+ return s.String()
+}
+
+// Validate inspects the fields of the type to determine if they are valid.
+func (s *SageMakerPipelineParameters) Validate() error {
+ invalidParams := request.ErrInvalidParams{Context: "SageMakerPipelineParameters"}
+ if s.PipelineParameterList != nil {
+ for i, v := range s.PipelineParameterList {
+ if v == nil {
+ continue
+ }
+ if err := v.Validate(); err != nil {
+ invalidParams.AddNested(fmt.Sprintf("%s[%v]", "PipelineParameterList", i), err.(request.ErrInvalidParams))
+ }
+ }
+ }
+
+ if invalidParams.Len() > 0 {
+ return invalidParams
+ }
+ return nil
+}
+
+// SetPipelineParameterList sets the PipelineParameterList field's value.
+func (s *SageMakerPipelineParameters) SetPipelineParameterList(v []*SageMakerPipelineParameter) *SageMakerPipelineParameters {
+ s.PipelineParameterList = v
+ return s
+}
+
// This structure includes the custom parameter to be used when the target is
// an SQS FIFO queue.
type SqsParameters struct {
@@ -13036,6 +13141,14 @@ type Target struct {
// Parameters used when you are using the rule to invoke Amazon EC2 Run Command.
RunCommandParameters *RunCommandParameters `type:"structure"`
+ // Contains the SageMaker Model Building Pipeline parameters to start execution
+ // of a SageMaker Model Building Pipeline.
+ //
+ // If you specify a SageMaker Model Building Pipeline as a target, you can use
+ // this to specify parameters to start a pipeline execution based on EventBridge
+ // events.
+ SageMakerPipelineParameters *SageMakerPipelineParameters `type:"structure"`
+
// Contains the message group ID to use when the target is a FIFO queue.
//
// If you specify an SQS FIFO queue as a target, the queue must have content-based
@@ -13111,6 +13224,11 @@ func (s *Target) Validate() error {
invalidParams.AddNested("RunCommandParameters", err.(request.ErrInvalidParams))
}
}
+ if s.SageMakerPipelineParameters != nil {
+ if err := s.SageMakerPipelineParameters.Validate(); err != nil {
+ invalidParams.AddNested("SageMakerPipelineParameters", err.(request.ErrInvalidParams))
+ }
+ }
if invalidParams.Len() > 0 {
return invalidParams
@@ -13202,6 +13320,12 @@ func (s *Target) SetRunCommandParameters(v *RunCommandParameters) *Target {
return s
}
+// SetSageMakerPipelineParameters sets the SageMakerPipelineParameters field's value.
+func (s *Target) SetSageMakerPipelineParameters(v *SageMakerPipelineParameters) *Target {
+ s.SageMakerPipelineParameters = v
+ return s
+}
+
// SetSqsParameters sets the SqsParameters field's value.
func (s *Target) SetSqsParameters(v *SqsParameters) *Target {
s.SqsParameters = v
diff --git a/service/customerprofiles/api.go b/service/customerprofiles/api.go
index a2b024f21f0..03c6396b55b 100644
--- a/service/customerprofiles/api.go
+++ b/service/customerprofiles/api.go
@@ -2987,6 +2987,60 @@ func (s *BadRequestException) RequestID() string {
return s.RespMetadata.RequestID
}
+type ConnectorOperator struct {
+ _ struct{} `type:"structure"`
+
+ Marketo *string `type:"string" enum:"MarketoConnectorOperator"`
+
+ S3 *string `type:"string" enum:"S3ConnectorOperator"`
+
+ Salesforce *string `type:"string" enum:"SalesforceConnectorOperator"`
+
+ ServiceNow *string `type:"string" enum:"ServiceNowConnectorOperator"`
+
+ Zendesk *string `type:"string" enum:"ZendeskConnectorOperator"`
+}
+
+// String returns the string representation
+func (s ConnectorOperator) String() string {
+ return awsutil.Prettify(s)
+}
+
+// GoString returns the string representation
+func (s ConnectorOperator) GoString() string {
+ return s.String()
+}
+
+// SetMarketo sets the Marketo field's value.
+func (s *ConnectorOperator) SetMarketo(v string) *ConnectorOperator {
+ s.Marketo = &v
+ return s
+}
+
+// SetS3 sets the S3 field's value.
+func (s *ConnectorOperator) SetS3(v string) *ConnectorOperator {
+ s.S3 = &v
+ return s
+}
+
+// SetSalesforce sets the Salesforce field's value.
+func (s *ConnectorOperator) SetSalesforce(v string) *ConnectorOperator {
+ s.Salesforce = &v
+ return s
+}
+
+// SetServiceNow sets the ServiceNow field's value.
+func (s *ConnectorOperator) SetServiceNow(v string) *ConnectorOperator {
+ s.ServiceNow = &v
+ return s
+}
+
+// SetZendesk sets the Zendesk field's value.
+func (s *ConnectorOperator) SetZendesk(v string) *ConnectorOperator {
+ s.Zendesk = &v
+ return s
+}
+
type CreateDomainInput struct {
_ struct{} `type:"structure"`
@@ -4073,6 +4127,121 @@ func (s *DomainStats) SetTotalSize(v int64) *DomainStats {
return s
}
+type FlowDefinition struct {
+ _ struct{} `type:"structure"`
+
+ Description *string `type:"string"`
+
+ // FlowName is a required field
+ FlowName *string `type:"string" required:"true"`
+
+ // KmsArn is a required field
+ KmsArn *string `min:"20" type:"string" required:"true"`
+
+ // SourceFlowConfig is a required field
+ SourceFlowConfig *SourceFlowConfig `type:"structure" required:"true"`
+
+ // Tasks is a required field
+ Tasks []*Task `type:"list" required:"true"`
+
+ // TriggerConfig is a required field
+ TriggerConfig *TriggerConfig `type:"structure" required:"true"`
+}
+
+// String returns the string representation
+func (s FlowDefinition) String() string {
+ return awsutil.Prettify(s)
+}
+
+// GoString returns the string representation
+func (s FlowDefinition) GoString() string {
+ return s.String()
+}
+
+// Validate inspects the fields of the type to determine if they are valid.
+func (s *FlowDefinition) Validate() error {
+ invalidParams := request.ErrInvalidParams{Context: "FlowDefinition"}
+ if s.FlowName == nil {
+ invalidParams.Add(request.NewErrParamRequired("FlowName"))
+ }
+ if s.KmsArn == nil {
+ invalidParams.Add(request.NewErrParamRequired("KmsArn"))
+ }
+ if s.KmsArn != nil && len(*s.KmsArn) < 20 {
+ invalidParams.Add(request.NewErrParamMinLen("KmsArn", 20))
+ }
+ if s.SourceFlowConfig == nil {
+ invalidParams.Add(request.NewErrParamRequired("SourceFlowConfig"))
+ }
+ if s.Tasks == nil {
+ invalidParams.Add(request.NewErrParamRequired("Tasks"))
+ }
+ if s.TriggerConfig == nil {
+ invalidParams.Add(request.NewErrParamRequired("TriggerConfig"))
+ }
+ if s.SourceFlowConfig != nil {
+ if err := s.SourceFlowConfig.Validate(); err != nil {
+ invalidParams.AddNested("SourceFlowConfig", err.(request.ErrInvalidParams))
+ }
+ }
+ if s.Tasks != nil {
+ for i, v := range s.Tasks {
+ if v == nil {
+ continue
+ }
+ if err := v.Validate(); err != nil {
+ invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Tasks", i), err.(request.ErrInvalidParams))
+ }
+ }
+ }
+ if s.TriggerConfig != nil {
+ if err := s.TriggerConfig.Validate(); err != nil {
+ invalidParams.AddNested("TriggerConfig", err.(request.ErrInvalidParams))
+ }
+ }
+
+ if invalidParams.Len() > 0 {
+ return invalidParams
+ }
+ return nil
+}
+
+// SetDescription sets the Description field's value.
+func (s *FlowDefinition) SetDescription(v string) *FlowDefinition {
+ s.Description = &v
+ return s
+}
+
+// SetFlowName sets the FlowName field's value.
+func (s *FlowDefinition) SetFlowName(v string) *FlowDefinition {
+ s.FlowName = &v
+ return s
+}
+
+// SetKmsArn sets the KmsArn field's value.
+func (s *FlowDefinition) SetKmsArn(v string) *FlowDefinition {
+ s.KmsArn = &v
+ return s
+}
+
+// SetSourceFlowConfig sets the SourceFlowConfig field's value.
+func (s *FlowDefinition) SetSourceFlowConfig(v *SourceFlowConfig) *FlowDefinition {
+ s.SourceFlowConfig = v
+ return s
+}
+
+// SetTasks sets the Tasks field's value.
+func (s *FlowDefinition) SetTasks(v []*Task) *FlowDefinition {
+ s.Tasks = v
+ return s
+}
+
+// SetTriggerConfig sets the TriggerConfig field's value.
+func (s *FlowDefinition) SetTriggerConfig(v *TriggerConfig) *FlowDefinition {
+ s.TriggerConfig = v
+ return s
+}
+
type GetDomainInput struct {
_ struct{} `type:"structure"`
@@ -4640,6 +4809,28 @@ func (s *GetProfileObjectTypeTemplateOutput) SetTemplateId(v string) *GetProfile
return s
}
+type IncrementalPullConfig struct {
+ _ struct{} `type:"structure"`
+
+ DatetimeTypeFieldName *string `type:"string"`
+}
+
+// String returns the string representation
+func (s IncrementalPullConfig) String() string {
+ return awsutil.Prettify(s)
+}
+
+// GoString returns the string representation
+func (s IncrementalPullConfig) GoString() string {
+ return s.String()
+}
+
+// SetDatetimeTypeFieldName sets the DatetimeTypeFieldName field's value.
+func (s *IncrementalPullConfig) SetDatetimeTypeFieldName(v string) *IncrementalPullConfig {
+ s.DatetimeTypeFieldName = &v
+ return s
+}
+
// An internal service error occurred.
type InternalServerException struct {
_ struct{} `type:"structure"`
@@ -5623,6 +5814,42 @@ func (s *ListTagsForResourceOutput) SetTags(v map[string]*string) *ListTagsForRe
return s
}
+type MarketoSourceProperties struct {
+ _ struct{} `type:"structure"`
+
+ // Object is a required field
+ Object *string `type:"string" required:"true"`
+}
+
+// String returns the string representation
+func (s MarketoSourceProperties) String() string {
+ return awsutil.Prettify(s)
+}
+
+// GoString returns the string representation
+func (s MarketoSourceProperties) GoString() string {
+ return s.String()
+}
+
+// Validate inspects the fields of the type to determine if they are valid.
+func (s *MarketoSourceProperties) Validate() error {
+ invalidParams := request.ErrInvalidParams{Context: "MarketoSourceProperties"}
+ if s.Object == nil {
+ invalidParams.Add(request.NewErrParamRequired("Object"))
+ }
+
+ if invalidParams.Len() > 0 {
+ return invalidParams
+ }
+ return nil
+}
+
+// SetObject sets the Object field's value.
+func (s *MarketoSourceProperties) SetObject(v string) *MarketoSourceProperties {
+ s.Object = &v
+ return s
+}
+
// Represents a field in a ProfileObjectType.
type ObjectTypeField struct {
_ struct{} `type:"structure"`
@@ -5950,6 +6177,8 @@ type PutIntegrationInput struct {
// DomainName is a required field
DomainName *string `location:"uri" locationName:"DomainName" min:"1" type:"string" required:"true"`
+ FlowDefinition *FlowDefinition `type:"structure"`
+
// The name of the profile object type.
//
// ObjectTypeName is a required field
@@ -5959,9 +6188,7 @@ type PutIntegrationInput struct {
Tags map[string]*string `min:"1" type:"map"`
// The URI of the S3 bucket or any other type of data source.
- //
- // Uri is a required field
- Uri *string `min:"1" type:"string" required:"true"`
+ Uri *string `min:"1" type:"string"`
}
// String returns the string representation
@@ -5992,12 +6219,14 @@ func (s *PutIntegrationInput) Validate() error {
if s.Tags != nil && len(s.Tags) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Tags", 1))
}
- if s.Uri == nil {
- invalidParams.Add(request.NewErrParamRequired("Uri"))
- }
if s.Uri != nil && len(*s.Uri) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Uri", 1))
}
+ if s.FlowDefinition != nil {
+ if err := s.FlowDefinition.Validate(); err != nil {
+ invalidParams.AddNested("FlowDefinition", err.(request.ErrInvalidParams))
+ }
+ }
if invalidParams.Len() > 0 {
return invalidParams
@@ -6011,6 +6240,12 @@ func (s *PutIntegrationInput) SetDomainName(v string) *PutIntegrationInput {
return s
}
+// SetFlowDefinition sets the FlowDefinition field's value.
+func (s *PutIntegrationInput) SetFlowDefinition(v *FlowDefinition) *PutIntegrationInput {
+ s.FlowDefinition = v
+ return s
+}
+
// SetObjectTypeName sets the ObjectTypeName field's value.
func (s *PutIntegrationInput) SetObjectTypeName(v string) *PutIntegrationInput {
s.ObjectTypeName = &v
@@ -6547,67 +6782,33 @@ func (s *ResourceNotFoundException) RequestID() string {
return s.RespMetadata.RequestID
}
-type SearchProfilesInput struct {
+type S3SourceProperties struct {
_ struct{} `type:"structure"`
- // The unique name of the domain.
- //
- // DomainName is a required field
- DomainName *string `location:"uri" locationName:"DomainName" min:"1" type:"string" required:"true"`
-
- // A searchable identifier of a customer profile. The predefined keys you can
- // use to search include: _account, _profileId, _fullName, _phone, _email, _ctrContactId,
- // _marketoLeadId, _salesforceAccountId, _salesforceContactId, _zendeskUserId,
- // _zendeskExternalId, _serviceNowSystemId.
- //
- // KeyName is a required field
- KeyName *string `min:"1" type:"string" required:"true"`
-
- // The maximum number of objects returned per page.
- MaxResults *int64 `location:"querystring" locationName:"max-results" min:"1" type:"integer"`
-
- // The pagination token from the previous SearchProfiles API call.
- NextToken *string `location:"querystring" locationName:"next-token" min:"1" type:"string"`
+ // BucketName is a required field
+ BucketName *string `min:"3" type:"string" required:"true"`
- // A list of key values.
- //
- // Values is a required field
- Values []*string `type:"list" required:"true"`
+ BucketPrefix *string `type:"string"`
}
// String returns the string representation
-func (s SearchProfilesInput) String() string {
+func (s S3SourceProperties) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
-func (s SearchProfilesInput) GoString() string {
+func (s S3SourceProperties) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
-func (s *SearchProfilesInput) Validate() error {
- invalidParams := request.ErrInvalidParams{Context: "SearchProfilesInput"}
- if s.DomainName == nil {
- invalidParams.Add(request.NewErrParamRequired("DomainName"))
- }
- if s.DomainName != nil && len(*s.DomainName) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("DomainName", 1))
- }
- if s.KeyName == nil {
- invalidParams.Add(request.NewErrParamRequired("KeyName"))
- }
- if s.KeyName != nil && len(*s.KeyName) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("KeyName", 1))
- }
- if s.MaxResults != nil && *s.MaxResults < 1 {
- invalidParams.Add(request.NewErrParamMinValue("MaxResults", 1))
- }
- if s.NextToken != nil && len(*s.NextToken) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("NextToken", 1))
+func (s *S3SourceProperties) Validate() error {
+ invalidParams := request.ErrInvalidParams{Context: "S3SourceProperties"}
+ if s.BucketName == nil {
+ invalidParams.Add(request.NewErrParamRequired("BucketName"))
}
- if s.Values == nil {
- invalidParams.Add(request.NewErrParamRequired("Values"))
+ if s.BucketName != nil && len(*s.BucketName) < 3 {
+ invalidParams.Add(request.NewErrParamMinLen("BucketName", 3))
}
if invalidParams.Len() > 0 {
@@ -6616,77 +6817,488 @@ func (s *SearchProfilesInput) Validate() error {
return nil
}
-// SetDomainName sets the DomainName field's value.
-func (s *SearchProfilesInput) SetDomainName(v string) *SearchProfilesInput {
- s.DomainName = &v
- return s
-}
-
-// SetKeyName sets the KeyName field's value.
-func (s *SearchProfilesInput) SetKeyName(v string) *SearchProfilesInput {
- s.KeyName = &v
- return s
-}
-
-// SetMaxResults sets the MaxResults field's value.
-func (s *SearchProfilesInput) SetMaxResults(v int64) *SearchProfilesInput {
- s.MaxResults = &v
- return s
-}
-
-// SetNextToken sets the NextToken field's value.
-func (s *SearchProfilesInput) SetNextToken(v string) *SearchProfilesInput {
- s.NextToken = &v
+// SetBucketName sets the BucketName field's value.
+func (s *S3SourceProperties) SetBucketName(v string) *S3SourceProperties {
+ s.BucketName = &v
return s
}
-// SetValues sets the Values field's value.
-func (s *SearchProfilesInput) SetValues(v []*string) *SearchProfilesInput {
- s.Values = v
+// SetBucketPrefix sets the BucketPrefix field's value.
+func (s *S3SourceProperties) SetBucketPrefix(v string) *S3SourceProperties {
+ s.BucketPrefix = &v
return s
}
-type SearchProfilesOutput struct {
+type SalesforceSourceProperties struct {
_ struct{} `type:"structure"`
- // The list of SearchProfiles instances.
- Items []*Profile `type:"list"`
+ EnableDynamicFieldUpdate *bool `type:"boolean"`
- // The pagination token from the previous SearchProfiles API call.
- NextToken *string `min:"1" type:"string"`
+ IncludeDeletedRecords *bool `type:"boolean"`
+
+ // Object is a required field
+ Object *string `type:"string" required:"true"`
}
// String returns the string representation
-func (s SearchProfilesOutput) String() string {
+func (s SalesforceSourceProperties) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
-func (s SearchProfilesOutput) GoString() string {
+func (s SalesforceSourceProperties) GoString() string {
return s.String()
}
-// SetItems sets the Items field's value.
-func (s *SearchProfilesOutput) SetItems(v []*Profile) *SearchProfilesOutput {
- s.Items = v
+// Validate inspects the fields of the type to determine if they are valid.
+func (s *SalesforceSourceProperties) Validate() error {
+ invalidParams := request.ErrInvalidParams{Context: "SalesforceSourceProperties"}
+ if s.Object == nil {
+ invalidParams.Add(request.NewErrParamRequired("Object"))
+ }
+
+ if invalidParams.Len() > 0 {
+ return invalidParams
+ }
+ return nil
+}
+
+// SetEnableDynamicFieldUpdate sets the EnableDynamicFieldUpdate field's value.
+func (s *SalesforceSourceProperties) SetEnableDynamicFieldUpdate(v bool) *SalesforceSourceProperties {
+ s.EnableDynamicFieldUpdate = &v
return s
}
-// SetNextToken sets the NextToken field's value.
-func (s *SearchProfilesOutput) SetNextToken(v string) *SearchProfilesOutput {
- s.NextToken = &v
+// SetIncludeDeletedRecords sets the IncludeDeletedRecords field's value.
+func (s *SalesforceSourceProperties) SetIncludeDeletedRecords(v bool) *SalesforceSourceProperties {
+ s.IncludeDeletedRecords = &v
return s
}
-type TagResourceInput struct {
+// SetObject sets the Object field's value.
+func (s *SalesforceSourceProperties) SetObject(v string) *SalesforceSourceProperties {
+ s.Object = &v
+ return s
+}
+
+type ScheduledTriggerProperties struct {
_ struct{} `type:"structure"`
- // The ARN of the resource that you're adding tags to.
- //
- // ResourceArn is a required field
- ResourceArn *string `location:"uri" locationName:"resourceArn" type:"string" required:"true"`
+ DataPullMode *string `type:"string" enum:"DataPullMode"`
- // The tags used to organize, track, or control access for this resource.
+ FirstExecutionFrom *time.Time `type:"timestamp"`
+
+ ScheduleEndTime *time.Time `type:"timestamp"`
+
+ // ScheduleExpression is a required field
+ ScheduleExpression *string `type:"string" required:"true"`
+
+ ScheduleOffset *int64 `type:"long"`
+
+ ScheduleStartTime *time.Time `type:"timestamp"`
+
+ Timezone *string `type:"string"`
+}
+
+// String returns the string representation
+func (s ScheduledTriggerProperties) String() string {
+ return awsutil.Prettify(s)
+}
+
+// GoString returns the string representation
+func (s ScheduledTriggerProperties) GoString() string {
+ return s.String()
+}
+
+// Validate inspects the fields of the type to determine if they are valid.
+func (s *ScheduledTriggerProperties) Validate() error {
+ invalidParams := request.ErrInvalidParams{Context: "ScheduledTriggerProperties"}
+ if s.ScheduleExpression == nil {
+ invalidParams.Add(request.NewErrParamRequired("ScheduleExpression"))
+ }
+
+ if invalidParams.Len() > 0 {
+ return invalidParams
+ }
+ return nil
+}
+
+// SetDataPullMode sets the DataPullMode field's value.
+func (s *ScheduledTriggerProperties) SetDataPullMode(v string) *ScheduledTriggerProperties {
+ s.DataPullMode = &v
+ return s
+}
+
+// SetFirstExecutionFrom sets the FirstExecutionFrom field's value.
+func (s *ScheduledTriggerProperties) SetFirstExecutionFrom(v time.Time) *ScheduledTriggerProperties {
+ s.FirstExecutionFrom = &v
+ return s
+}
+
+// SetScheduleEndTime sets the ScheduleEndTime field's value.
+func (s *ScheduledTriggerProperties) SetScheduleEndTime(v time.Time) *ScheduledTriggerProperties {
+ s.ScheduleEndTime = &v
+ return s
+}
+
+// SetScheduleExpression sets the ScheduleExpression field's value.
+func (s *ScheduledTriggerProperties) SetScheduleExpression(v string) *ScheduledTriggerProperties {
+ s.ScheduleExpression = &v
+ return s
+}
+
+// SetScheduleOffset sets the ScheduleOffset field's value.
+func (s *ScheduledTriggerProperties) SetScheduleOffset(v int64) *ScheduledTriggerProperties {
+ s.ScheduleOffset = &v
+ return s
+}
+
+// SetScheduleStartTime sets the ScheduleStartTime field's value.
+func (s *ScheduledTriggerProperties) SetScheduleStartTime(v time.Time) *ScheduledTriggerProperties {
+ s.ScheduleStartTime = &v
+ return s
+}
+
+// SetTimezone sets the Timezone field's value.
+func (s *ScheduledTriggerProperties) SetTimezone(v string) *ScheduledTriggerProperties {
+ s.Timezone = &v
+ return s
+}
+
+type SearchProfilesInput struct {
+ _ struct{} `type:"structure"`
+
+ // The unique name of the domain.
+ //
+ // DomainName is a required field
+ DomainName *string `location:"uri" locationName:"DomainName" min:"1" type:"string" required:"true"`
+
+ // A searchable identifier of a customer profile. The predefined keys you can
+ // use to search include: _account, _profileId, _fullName, _phone, _email, _ctrContactId,
+ // _marketoLeadId, _salesforceAccountId, _salesforceContactId, _zendeskUserId,
+ // _zendeskExternalId, _serviceNowSystemId.
+ //
+ // KeyName is a required field
+ KeyName *string `min:"1" type:"string" required:"true"`
+
+ // The maximum number of objects returned per page.
+ MaxResults *int64 `location:"querystring" locationName:"max-results" min:"1" type:"integer"`
+
+ // The pagination token from the previous SearchProfiles API call.
+ NextToken *string `location:"querystring" locationName:"next-token" min:"1" type:"string"`
+
+ // A list of key values.
+ //
+ // Values is a required field
+ Values []*string `type:"list" required:"true"`
+}
+
+// String returns the string representation
+func (s SearchProfilesInput) String() string {
+ return awsutil.Prettify(s)
+}
+
+// GoString returns the string representation
+func (s SearchProfilesInput) GoString() string {
+ return s.String()
+}
+
+// Validate inspects the fields of the type to determine if they are valid.
+func (s *SearchProfilesInput) Validate() error {
+ invalidParams := request.ErrInvalidParams{Context: "SearchProfilesInput"}
+ if s.DomainName == nil {
+ invalidParams.Add(request.NewErrParamRequired("DomainName"))
+ }
+ if s.DomainName != nil && len(*s.DomainName) < 1 {
+ invalidParams.Add(request.NewErrParamMinLen("DomainName", 1))
+ }
+ if s.KeyName == nil {
+ invalidParams.Add(request.NewErrParamRequired("KeyName"))
+ }
+ if s.KeyName != nil && len(*s.KeyName) < 1 {
+ invalidParams.Add(request.NewErrParamMinLen("KeyName", 1))
+ }
+ if s.MaxResults != nil && *s.MaxResults < 1 {
+ invalidParams.Add(request.NewErrParamMinValue("MaxResults", 1))
+ }
+ if s.NextToken != nil && len(*s.NextToken) < 1 {
+ invalidParams.Add(request.NewErrParamMinLen("NextToken", 1))
+ }
+ if s.Values == nil {
+ invalidParams.Add(request.NewErrParamRequired("Values"))
+ }
+
+ if invalidParams.Len() > 0 {
+ return invalidParams
+ }
+ return nil
+}
+
+// SetDomainName sets the DomainName field's value.
+func (s *SearchProfilesInput) SetDomainName(v string) *SearchProfilesInput {
+ s.DomainName = &v
+ return s
+}
+
+// SetKeyName sets the KeyName field's value.
+func (s *SearchProfilesInput) SetKeyName(v string) *SearchProfilesInput {
+ s.KeyName = &v
+ return s
+}
+
+// SetMaxResults sets the MaxResults field's value.
+func (s *SearchProfilesInput) SetMaxResults(v int64) *SearchProfilesInput {
+ s.MaxResults = &v
+ return s
+}
+
+// SetNextToken sets the NextToken field's value.
+func (s *SearchProfilesInput) SetNextToken(v string) *SearchProfilesInput {
+ s.NextToken = &v
+ return s
+}
+
+// SetValues sets the Values field's value.
+func (s *SearchProfilesInput) SetValues(v []*string) *SearchProfilesInput {
+ s.Values = v
+ return s
+}
+
+type SearchProfilesOutput struct {
+ _ struct{} `type:"structure"`
+
+ // The list of SearchProfiles instances.
+ Items []*Profile `type:"list"`
+
+ // The pagination token from the previous SearchProfiles API call.
+ NextToken *string `min:"1" type:"string"`
+}
+
+// String returns the string representation
+func (s SearchProfilesOutput) String() string {
+ return awsutil.Prettify(s)
+}
+
+// GoString returns the string representation
+func (s SearchProfilesOutput) GoString() string {
+ return s.String()
+}
+
+// SetItems sets the Items field's value.
+func (s *SearchProfilesOutput) SetItems(v []*Profile) *SearchProfilesOutput {
+ s.Items = v
+ return s
+}
+
+// SetNextToken sets the NextToken field's value.
+func (s *SearchProfilesOutput) SetNextToken(v string) *SearchProfilesOutput {
+ s.NextToken = &v
+ return s
+}
+
+type ServiceNowSourceProperties struct {
+ _ struct{} `type:"structure"`
+
+ // Object is a required field
+ Object *string `type:"string" required:"true"`
+}
+
+// String returns the string representation
+func (s ServiceNowSourceProperties) String() string {
+ return awsutil.Prettify(s)
+}
+
+// GoString returns the string representation
+func (s ServiceNowSourceProperties) GoString() string {
+ return s.String()
+}
+
+// Validate inspects the fields of the type to determine if they are valid.
+func (s *ServiceNowSourceProperties) Validate() error {
+ invalidParams := request.ErrInvalidParams{Context: "ServiceNowSourceProperties"}
+ if s.Object == nil {
+ invalidParams.Add(request.NewErrParamRequired("Object"))
+ }
+
+ if invalidParams.Len() > 0 {
+ return invalidParams
+ }
+ return nil
+}
+
+// SetObject sets the Object field's value.
+func (s *ServiceNowSourceProperties) SetObject(v string) *ServiceNowSourceProperties {
+ s.Object = &v
+ return s
+}
+
+type SourceConnectorProperties struct {
+ _ struct{} `type:"structure"`
+
+ Marketo *MarketoSourceProperties `type:"structure"`
+
+ S3 *S3SourceProperties `type:"structure"`
+
+ Salesforce *SalesforceSourceProperties `type:"structure"`
+
+ ServiceNow *ServiceNowSourceProperties `type:"structure"`
+
+ Zendesk *ZendeskSourceProperties `type:"structure"`
+}
+
+// String returns the string representation
+func (s SourceConnectorProperties) String() string {
+ return awsutil.Prettify(s)
+}
+
+// GoString returns the string representation
+func (s SourceConnectorProperties) GoString() string {
+ return s.String()
+}
+
+// Validate inspects the fields of the type to determine if they are valid.
+func (s *SourceConnectorProperties) Validate() error {
+ invalidParams := request.ErrInvalidParams{Context: "SourceConnectorProperties"}
+ if s.Marketo != nil {
+ if err := s.Marketo.Validate(); err != nil {
+ invalidParams.AddNested("Marketo", err.(request.ErrInvalidParams))
+ }
+ }
+ if s.S3 != nil {
+ if err := s.S3.Validate(); err != nil {
+ invalidParams.AddNested("S3", err.(request.ErrInvalidParams))
+ }
+ }
+ if s.Salesforce != nil {
+ if err := s.Salesforce.Validate(); err != nil {
+ invalidParams.AddNested("Salesforce", err.(request.ErrInvalidParams))
+ }
+ }
+ if s.ServiceNow != nil {
+ if err := s.ServiceNow.Validate(); err != nil {
+ invalidParams.AddNested("ServiceNow", err.(request.ErrInvalidParams))
+ }
+ }
+ if s.Zendesk != nil {
+ if err := s.Zendesk.Validate(); err != nil {
+ invalidParams.AddNested("Zendesk", err.(request.ErrInvalidParams))
+ }
+ }
+
+ if invalidParams.Len() > 0 {
+ return invalidParams
+ }
+ return nil
+}
+
+// SetMarketo sets the Marketo field's value.
+func (s *SourceConnectorProperties) SetMarketo(v *MarketoSourceProperties) *SourceConnectorProperties {
+ s.Marketo = v
+ return s
+}
+
+// SetS3 sets the S3 field's value.
+func (s *SourceConnectorProperties) SetS3(v *S3SourceProperties) *SourceConnectorProperties {
+ s.S3 = v
+ return s
+}
+
+// SetSalesforce sets the Salesforce field's value.
+func (s *SourceConnectorProperties) SetSalesforce(v *SalesforceSourceProperties) *SourceConnectorProperties {
+ s.Salesforce = v
+ return s
+}
+
+// SetServiceNow sets the ServiceNow field's value.
+func (s *SourceConnectorProperties) SetServiceNow(v *ServiceNowSourceProperties) *SourceConnectorProperties {
+ s.ServiceNow = v
+ return s
+}
+
+// SetZendesk sets the Zendesk field's value.
+func (s *SourceConnectorProperties) SetZendesk(v *ZendeskSourceProperties) *SourceConnectorProperties {
+ s.Zendesk = v
+ return s
+}
+
+type SourceFlowConfig struct {
+ _ struct{} `type:"structure"`
+
+ ConnectorProfileName *string `type:"string"`
+
+ // ConnectorType is a required field
+ ConnectorType *string `type:"string" required:"true" enum:"SourceConnectorType"`
+
+ IncrementalPullConfig *IncrementalPullConfig `type:"structure"`
+
+ // SourceConnectorProperties is a required field
+ SourceConnectorProperties *SourceConnectorProperties `type:"structure" required:"true"`
+}
+
+// String returns the string representation
+func (s SourceFlowConfig) String() string {
+ return awsutil.Prettify(s)
+}
+
+// GoString returns the string representation
+func (s SourceFlowConfig) GoString() string {
+ return s.String()
+}
+
+// Validate inspects the fields of the type to determine if they are valid.
+func (s *SourceFlowConfig) Validate() error {
+ invalidParams := request.ErrInvalidParams{Context: "SourceFlowConfig"}
+ if s.ConnectorType == nil {
+ invalidParams.Add(request.NewErrParamRequired("ConnectorType"))
+ }
+ if s.SourceConnectorProperties == nil {
+ invalidParams.Add(request.NewErrParamRequired("SourceConnectorProperties"))
+ }
+ if s.SourceConnectorProperties != nil {
+ if err := s.SourceConnectorProperties.Validate(); err != nil {
+ invalidParams.AddNested("SourceConnectorProperties", err.(request.ErrInvalidParams))
+ }
+ }
+
+ if invalidParams.Len() > 0 {
+ return invalidParams
+ }
+ return nil
+}
+
+// SetConnectorProfileName sets the ConnectorProfileName field's value.
+func (s *SourceFlowConfig) SetConnectorProfileName(v string) *SourceFlowConfig {
+ s.ConnectorProfileName = &v
+ return s
+}
+
+// SetConnectorType sets the ConnectorType field's value.
+func (s *SourceFlowConfig) SetConnectorType(v string) *SourceFlowConfig {
+ s.ConnectorType = &v
+ return s
+}
+
+// SetIncrementalPullConfig sets the IncrementalPullConfig field's value.
+func (s *SourceFlowConfig) SetIncrementalPullConfig(v *IncrementalPullConfig) *SourceFlowConfig {
+ s.IncrementalPullConfig = v
+ return s
+}
+
+// SetSourceConnectorProperties sets the SourceConnectorProperties field's value.
+func (s *SourceFlowConfig) SetSourceConnectorProperties(v *SourceConnectorProperties) *SourceFlowConfig {
+ s.SourceConnectorProperties = v
+ return s
+}
+
+type TagResourceInput struct {
+ _ struct{} `type:"structure"`
+
+ // The ARN of the resource that you're adding tags to.
+ //
+ // ResourceArn is a required field
+ ResourceArn *string `location:"uri" locationName:"resourceArn" type:"string" required:"true"`
+
+ // The tags used to organize, track, or control access for this resource.
//
// Tags is a required field
Tags map[string]*string `locationName:"tags" min:"1" type:"map" required:"true"`
@@ -6750,60 +7362,218 @@ func (s TagResourceOutput) GoString() string {
return s.String()
}
-// You exceeded the maximum number of requests.
-type ThrottlingException struct {
- _ struct{} `type:"structure"`
- RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`
+type Task struct {
+ _ struct{} `type:"structure"`
+
+ ConnectorOperator *ConnectorOperator `type:"structure"`
+
+ DestinationField *string `type:"string"`
+
+ // SourceFields is a required field
+ SourceFields []*string `type:"list" required:"true"`
+
+ TaskProperties map[string]*string `type:"map"`
+
+ // TaskType is a required field
+ TaskType *string `type:"string" required:"true" enum:"TaskType"`
+}
+
+// String returns the string representation
+func (s Task) String() string {
+ return awsutil.Prettify(s)
+}
+
+// GoString returns the string representation
+func (s Task) GoString() string {
+ return s.String()
+}
+
+// Validate inspects the fields of the type to determine if they are valid.
+func (s *Task) Validate() error {
+ invalidParams := request.ErrInvalidParams{Context: "Task"}
+ if s.SourceFields == nil {
+ invalidParams.Add(request.NewErrParamRequired("SourceFields"))
+ }
+ if s.TaskType == nil {
+ invalidParams.Add(request.NewErrParamRequired("TaskType"))
+ }
+
+ if invalidParams.Len() > 0 {
+ return invalidParams
+ }
+ return nil
+}
+
+// SetConnectorOperator sets the ConnectorOperator field's value.
+func (s *Task) SetConnectorOperator(v *ConnectorOperator) *Task {
+ s.ConnectorOperator = v
+ return s
+}
+
+// SetDestinationField sets the DestinationField field's value.
+func (s *Task) SetDestinationField(v string) *Task {
+ s.DestinationField = &v
+ return s
+}
+
+// SetSourceFields sets the SourceFields field's value.
+func (s *Task) SetSourceFields(v []*string) *Task {
+ s.SourceFields = v
+ return s
+}
+
+// SetTaskProperties sets the TaskProperties field's value.
+func (s *Task) SetTaskProperties(v map[string]*string) *Task {
+ s.TaskProperties = v
+ return s
+}
+
+// SetTaskType sets the TaskType field's value.
+func (s *Task) SetTaskType(v string) *Task {
+ s.TaskType = &v
+ return s
+}
+
+// You exceeded the maximum number of requests.
+type ThrottlingException struct {
+ _ struct{} `type:"structure"`
+ RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`
+
+ Message_ *string `locationName:"Message" type:"string"`
+}
+
+// String returns the string representation
+func (s ThrottlingException) String() string {
+ return awsutil.Prettify(s)
+}
+
+// GoString returns the string representation
+func (s ThrottlingException) GoString() string {
+ return s.String()
+}
+
+func newErrorThrottlingException(v protocol.ResponseMetadata) error {
+ return &ThrottlingException{
+ RespMetadata: v,
+ }
+}
+
+// Code returns the exception type name.
+func (s *ThrottlingException) Code() string {
+ return "ThrottlingException"
+}
+
+// Message returns the exception's message.
+func (s *ThrottlingException) Message() string {
+ if s.Message_ != nil {
+ return *s.Message_
+ }
+ return ""
+}
+
+// OrigErr always returns nil, satisfies awserr.Error interface.
+func (s *ThrottlingException) OrigErr() error {
+ return nil
+}
+
+func (s *ThrottlingException) Error() string {
+ return fmt.Sprintf("%s: %s", s.Code(), s.Message())
+}
+
+// Status code returns the HTTP status code for the request's response error.
+func (s *ThrottlingException) StatusCode() int {
+ return s.RespMetadata.StatusCode
+}
+
+// RequestID returns the service's response RequestID for request.
+func (s *ThrottlingException) RequestID() string {
+ return s.RespMetadata.RequestID
+}
+
+type TriggerConfig struct {
+ _ struct{} `type:"structure"`
+
+ TriggerProperties *TriggerProperties `type:"structure"`
+
+ // TriggerType is a required field
+ TriggerType *string `type:"string" required:"true" enum:"TriggerType"`
+}
+
+// String returns the string representation
+func (s TriggerConfig) String() string {
+ return awsutil.Prettify(s)
+}
+
+// GoString returns the string representation
+func (s TriggerConfig) GoString() string {
+ return s.String()
+}
+
+// Validate inspects the fields of the type to determine if they are valid.
+func (s *TriggerConfig) Validate() error {
+ invalidParams := request.ErrInvalidParams{Context: "TriggerConfig"}
+ if s.TriggerType == nil {
+ invalidParams.Add(request.NewErrParamRequired("TriggerType"))
+ }
+ if s.TriggerProperties != nil {
+ if err := s.TriggerProperties.Validate(); err != nil {
+ invalidParams.AddNested("TriggerProperties", err.(request.ErrInvalidParams))
+ }
+ }
+
+ if invalidParams.Len() > 0 {
+ return invalidParams
+ }
+ return nil
+}
+
+// SetTriggerProperties sets the TriggerProperties field's value.
+func (s *TriggerConfig) SetTriggerProperties(v *TriggerProperties) *TriggerConfig {
+ s.TriggerProperties = v
+ return s
+}
+
+// SetTriggerType sets the TriggerType field's value.
+func (s *TriggerConfig) SetTriggerType(v string) *TriggerConfig {
+ s.TriggerType = &v
+ return s
+}
+
+type TriggerProperties struct {
+ _ struct{} `type:"structure"`
- Message_ *string `locationName:"Message" type:"string"`
+ Scheduled *ScheduledTriggerProperties `type:"structure"`
}
// String returns the string representation
-func (s ThrottlingException) String() string {
+func (s TriggerProperties) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
-func (s ThrottlingException) GoString() string {
+func (s TriggerProperties) GoString() string {
return s.String()
}
-func newErrorThrottlingException(v protocol.ResponseMetadata) error {
- return &ThrottlingException{
- RespMetadata: v,
+// Validate inspects the fields of the type to determine if they are valid.
+func (s *TriggerProperties) Validate() error {
+ invalidParams := request.ErrInvalidParams{Context: "TriggerProperties"}
+ if s.Scheduled != nil {
+ if err := s.Scheduled.Validate(); err != nil {
+ invalidParams.AddNested("Scheduled", err.(request.ErrInvalidParams))
+ }
}
-}
-
-// Code returns the exception type name.
-func (s *ThrottlingException) Code() string {
- return "ThrottlingException"
-}
-// Message returns the exception's message.
-func (s *ThrottlingException) Message() string {
- if s.Message_ != nil {
- return *s.Message_
+ if invalidParams.Len() > 0 {
+ return invalidParams
}
- return ""
-}
-
-// OrigErr always returns nil, satisfies awserr.Error interface.
-func (s *ThrottlingException) OrigErr() error {
return nil
}
-func (s *ThrottlingException) Error() string {
- return fmt.Sprintf("%s: %s", s.Code(), s.Message())
-}
-
-// Status code returns the HTTP status code for the request's response error.
-func (s *ThrottlingException) StatusCode() int {
- return s.RespMetadata.StatusCode
-}
-
-// RequestID returns the service's response RequestID for request.
-func (s *ThrottlingException) RequestID() string {
- return s.RespMetadata.RequestID
+// SetScheduled sets the Scheduled field's value.
+func (s *TriggerProperties) SetScheduled(v *ScheduledTriggerProperties) *TriggerProperties {
+ s.Scheduled = v
+ return s
}
type UntagResourceInput struct {
@@ -7431,6 +8201,58 @@ func (s *UpdateProfileOutput) SetProfileId(v string) *UpdateProfileOutput {
return s
}
+type ZendeskSourceProperties struct {
+ _ struct{} `type:"structure"`
+
+ // Object is a required field
+ Object *string `type:"string" required:"true"`
+}
+
+// String returns the string representation
+func (s ZendeskSourceProperties) String() string {
+ return awsutil.Prettify(s)
+}
+
+// GoString returns the string representation
+func (s ZendeskSourceProperties) GoString() string {
+ return s.String()
+}
+
+// Validate inspects the fields of the type to determine if they are valid.
+func (s *ZendeskSourceProperties) Validate() error {
+ invalidParams := request.ErrInvalidParams{Context: "ZendeskSourceProperties"}
+ if s.Object == nil {
+ invalidParams.Add(request.NewErrParamRequired("Object"))
+ }
+
+ if invalidParams.Len() > 0 {
+ return invalidParams
+ }
+ return nil
+}
+
+// SetObject sets the Object field's value.
+func (s *ZendeskSourceProperties) SetObject(v string) *ZendeskSourceProperties {
+ s.Object = &v
+ return s
+}
+
+const (
+ // DataPullModeIncremental is a DataPullMode enum value
+ DataPullModeIncremental = "Incremental"
+
+ // DataPullModeComplete is a DataPullMode enum value
+ DataPullModeComplete = "Complete"
+)
+
+// DataPullMode_Values returns all elements of the DataPullMode enum
+func DataPullMode_Values() []string {
+ return []string{
+ DataPullModeIncremental,
+ DataPullModeComplete,
+ }
+}
+
const (
// FieldContentTypeString is a FieldContentType enum value
FieldContentTypeString = "STRING"
@@ -7479,6 +8301,142 @@ func Gender_Values() []string {
}
}
+const (
+ // MarketoConnectorOperatorProjection is a MarketoConnectorOperator enum value
+ MarketoConnectorOperatorProjection = "PROJECTION"
+
+ // MarketoConnectorOperatorLessThan is a MarketoConnectorOperator enum value
+ MarketoConnectorOperatorLessThan = "LESS_THAN"
+
+ // MarketoConnectorOperatorGreaterThan is a MarketoConnectorOperator enum value
+ MarketoConnectorOperatorGreaterThan = "GREATER_THAN"
+
+ // MarketoConnectorOperatorBetween is a MarketoConnectorOperator enum value
+ MarketoConnectorOperatorBetween = "BETWEEN"
+
+ // MarketoConnectorOperatorAddition is a MarketoConnectorOperator enum value
+ MarketoConnectorOperatorAddition = "ADDITION"
+
+ // MarketoConnectorOperatorMultiplication is a MarketoConnectorOperator enum value
+ MarketoConnectorOperatorMultiplication = "MULTIPLICATION"
+
+ // MarketoConnectorOperatorDivision is a MarketoConnectorOperator enum value
+ MarketoConnectorOperatorDivision = "DIVISION"
+
+ // MarketoConnectorOperatorSubtraction is a MarketoConnectorOperator enum value
+ MarketoConnectorOperatorSubtraction = "SUBTRACTION"
+
+ // MarketoConnectorOperatorMaskAll is a MarketoConnectorOperator enum value
+ MarketoConnectorOperatorMaskAll = "MASK_ALL"
+
+ // MarketoConnectorOperatorMaskFirstN is a MarketoConnectorOperator enum value
+ MarketoConnectorOperatorMaskFirstN = "MASK_FIRST_N"
+
+ // MarketoConnectorOperatorMaskLastN is a MarketoConnectorOperator enum value
+ MarketoConnectorOperatorMaskLastN = "MASK_LAST_N"
+
+ // MarketoConnectorOperatorValidateNonNull is a MarketoConnectorOperator enum value
+ MarketoConnectorOperatorValidateNonNull = "VALIDATE_NON_NULL"
+
+ // MarketoConnectorOperatorValidateNonZero is a MarketoConnectorOperator enum value
+ MarketoConnectorOperatorValidateNonZero = "VALIDATE_NON_ZERO"
+
+ // MarketoConnectorOperatorValidateNonNegative is a MarketoConnectorOperator enum value
+ MarketoConnectorOperatorValidateNonNegative = "VALIDATE_NON_NEGATIVE"
+
+ // MarketoConnectorOperatorValidateNumeric is a MarketoConnectorOperator enum value
+ MarketoConnectorOperatorValidateNumeric = "VALIDATE_NUMERIC"
+
+ // MarketoConnectorOperatorNoOp is a MarketoConnectorOperator enum value
+ MarketoConnectorOperatorNoOp = "NO_OP"
+)
+
+// MarketoConnectorOperator_Values returns all elements of the MarketoConnectorOperator enum
+func MarketoConnectorOperator_Values() []string {
+ return []string{
+ MarketoConnectorOperatorProjection,
+ MarketoConnectorOperatorLessThan,
+ MarketoConnectorOperatorGreaterThan,
+ MarketoConnectorOperatorBetween,
+ MarketoConnectorOperatorAddition,
+ MarketoConnectorOperatorMultiplication,
+ MarketoConnectorOperatorDivision,
+ MarketoConnectorOperatorSubtraction,
+ MarketoConnectorOperatorMaskAll,
+ MarketoConnectorOperatorMaskFirstN,
+ MarketoConnectorOperatorMaskLastN,
+ MarketoConnectorOperatorValidateNonNull,
+ MarketoConnectorOperatorValidateNonZero,
+ MarketoConnectorOperatorValidateNonNegative,
+ MarketoConnectorOperatorValidateNumeric,
+ MarketoConnectorOperatorNoOp,
+ }
+}
+
+const (
+ // OperatorPropertiesKeysValue is a OperatorPropertiesKeys enum value
+ OperatorPropertiesKeysValue = "VALUE"
+
+ // OperatorPropertiesKeysValues is a OperatorPropertiesKeys enum value
+ OperatorPropertiesKeysValues = "VALUES"
+
+ // OperatorPropertiesKeysDataType is a OperatorPropertiesKeys enum value
+ OperatorPropertiesKeysDataType = "DATA_TYPE"
+
+ // OperatorPropertiesKeysUpperBound is a OperatorPropertiesKeys enum value
+ OperatorPropertiesKeysUpperBound = "UPPER_BOUND"
+
+ // OperatorPropertiesKeysLowerBound is a OperatorPropertiesKeys enum value
+ OperatorPropertiesKeysLowerBound = "LOWER_BOUND"
+
+ // OperatorPropertiesKeysSourceDataType is a OperatorPropertiesKeys enum value
+ OperatorPropertiesKeysSourceDataType = "SOURCE_DATA_TYPE"
+
+ // OperatorPropertiesKeysDestinationDataType is a OperatorPropertiesKeys enum value
+ OperatorPropertiesKeysDestinationDataType = "DESTINATION_DATA_TYPE"
+
+ // OperatorPropertiesKeysValidationAction is a OperatorPropertiesKeys enum value
+ OperatorPropertiesKeysValidationAction = "VALIDATION_ACTION"
+
+ // OperatorPropertiesKeysMaskValue is a OperatorPropertiesKeys enum value
+ OperatorPropertiesKeysMaskValue = "MASK_VALUE"
+
+ // OperatorPropertiesKeysMaskLength is a OperatorPropertiesKeys enum value
+ OperatorPropertiesKeysMaskLength = "MASK_LENGTH"
+
+ // OperatorPropertiesKeysTruncateLength is a OperatorPropertiesKeys enum value
+ OperatorPropertiesKeysTruncateLength = "TRUNCATE_LENGTH"
+
+ // OperatorPropertiesKeysMathOperationFieldsOrder is a OperatorPropertiesKeys enum value
+ OperatorPropertiesKeysMathOperationFieldsOrder = "MATH_OPERATION_FIELDS_ORDER"
+
+ // OperatorPropertiesKeysConcatFormat is a OperatorPropertiesKeys enum value
+ OperatorPropertiesKeysConcatFormat = "CONCAT_FORMAT"
+
+ // OperatorPropertiesKeysSubfieldCategoryMap is a OperatorPropertiesKeys enum value
+ OperatorPropertiesKeysSubfieldCategoryMap = "SUBFIELD_CATEGORY_MAP"
+)
+
+// OperatorPropertiesKeys_Values returns all elements of the OperatorPropertiesKeys enum
+func OperatorPropertiesKeys_Values() []string {
+ return []string{
+ OperatorPropertiesKeysValue,
+ OperatorPropertiesKeysValues,
+ OperatorPropertiesKeysDataType,
+ OperatorPropertiesKeysUpperBound,
+ OperatorPropertiesKeysLowerBound,
+ OperatorPropertiesKeysSourceDataType,
+ OperatorPropertiesKeysDestinationDataType,
+ OperatorPropertiesKeysValidationAction,
+ OperatorPropertiesKeysMaskValue,
+ OperatorPropertiesKeysMaskLength,
+ OperatorPropertiesKeysTruncateLength,
+ OperatorPropertiesKeysMathOperationFieldsOrder,
+ OperatorPropertiesKeysConcatFormat,
+ OperatorPropertiesKeysSubfieldCategoryMap,
+ }
+}
+
const (
// PartyTypeIndividual is a PartyType enum value
PartyTypeIndividual = "INDIVIDUAL"
@@ -7499,6 +8457,306 @@ func PartyType_Values() []string {
}
}
+const (
+ // S3ConnectorOperatorProjection is a S3ConnectorOperator enum value
+ S3ConnectorOperatorProjection = "PROJECTION"
+
+ // S3ConnectorOperatorLessThan is a S3ConnectorOperator enum value
+ S3ConnectorOperatorLessThan = "LESS_THAN"
+
+ // S3ConnectorOperatorGreaterThan is a S3ConnectorOperator enum value
+ S3ConnectorOperatorGreaterThan = "GREATER_THAN"
+
+ // S3ConnectorOperatorBetween is a S3ConnectorOperator enum value
+ S3ConnectorOperatorBetween = "BETWEEN"
+
+ // S3ConnectorOperatorLessThanOrEqualTo is a S3ConnectorOperator enum value
+ S3ConnectorOperatorLessThanOrEqualTo = "LESS_THAN_OR_EQUAL_TO"
+
+ // S3ConnectorOperatorGreaterThanOrEqualTo is a S3ConnectorOperator enum value
+ S3ConnectorOperatorGreaterThanOrEqualTo = "GREATER_THAN_OR_EQUAL_TO"
+
+ // S3ConnectorOperatorEqualTo is a S3ConnectorOperator enum value
+ S3ConnectorOperatorEqualTo = "EQUAL_TO"
+
+ // S3ConnectorOperatorNotEqualTo is a S3ConnectorOperator enum value
+ S3ConnectorOperatorNotEqualTo = "NOT_EQUAL_TO"
+
+ // S3ConnectorOperatorAddition is a S3ConnectorOperator enum value
+ S3ConnectorOperatorAddition = "ADDITION"
+
+ // S3ConnectorOperatorMultiplication is a S3ConnectorOperator enum value
+ S3ConnectorOperatorMultiplication = "MULTIPLICATION"
+
+ // S3ConnectorOperatorDivision is a S3ConnectorOperator enum value
+ S3ConnectorOperatorDivision = "DIVISION"
+
+ // S3ConnectorOperatorSubtraction is a S3ConnectorOperator enum value
+ S3ConnectorOperatorSubtraction = "SUBTRACTION"
+
+ // S3ConnectorOperatorMaskAll is a S3ConnectorOperator enum value
+ S3ConnectorOperatorMaskAll = "MASK_ALL"
+
+ // S3ConnectorOperatorMaskFirstN is a S3ConnectorOperator enum value
+ S3ConnectorOperatorMaskFirstN = "MASK_FIRST_N"
+
+ // S3ConnectorOperatorMaskLastN is a S3ConnectorOperator enum value
+ S3ConnectorOperatorMaskLastN = "MASK_LAST_N"
+
+ // S3ConnectorOperatorValidateNonNull is a S3ConnectorOperator enum value
+ S3ConnectorOperatorValidateNonNull = "VALIDATE_NON_NULL"
+
+ // S3ConnectorOperatorValidateNonZero is a S3ConnectorOperator enum value
+ S3ConnectorOperatorValidateNonZero = "VALIDATE_NON_ZERO"
+
+ // S3ConnectorOperatorValidateNonNegative is a S3ConnectorOperator enum value
+ S3ConnectorOperatorValidateNonNegative = "VALIDATE_NON_NEGATIVE"
+
+ // S3ConnectorOperatorValidateNumeric is a S3ConnectorOperator enum value
+ S3ConnectorOperatorValidateNumeric = "VALIDATE_NUMERIC"
+
+ // S3ConnectorOperatorNoOp is a S3ConnectorOperator enum value
+ S3ConnectorOperatorNoOp = "NO_OP"
+)
+
+// S3ConnectorOperator_Values returns all elements of the S3ConnectorOperator enum
+func S3ConnectorOperator_Values() []string {
+ return []string{
+ S3ConnectorOperatorProjection,
+ S3ConnectorOperatorLessThan,
+ S3ConnectorOperatorGreaterThan,
+ S3ConnectorOperatorBetween,
+ S3ConnectorOperatorLessThanOrEqualTo,
+ S3ConnectorOperatorGreaterThanOrEqualTo,
+ S3ConnectorOperatorEqualTo,
+ S3ConnectorOperatorNotEqualTo,
+ S3ConnectorOperatorAddition,
+ S3ConnectorOperatorMultiplication,
+ S3ConnectorOperatorDivision,
+ S3ConnectorOperatorSubtraction,
+ S3ConnectorOperatorMaskAll,
+ S3ConnectorOperatorMaskFirstN,
+ S3ConnectorOperatorMaskLastN,
+ S3ConnectorOperatorValidateNonNull,
+ S3ConnectorOperatorValidateNonZero,
+ S3ConnectorOperatorValidateNonNegative,
+ S3ConnectorOperatorValidateNumeric,
+ S3ConnectorOperatorNoOp,
+ }
+}
+
+const (
+ // SalesforceConnectorOperatorProjection is a SalesforceConnectorOperator enum value
+ SalesforceConnectorOperatorProjection = "PROJECTION"
+
+ // SalesforceConnectorOperatorLessThan is a SalesforceConnectorOperator enum value
+ SalesforceConnectorOperatorLessThan = "LESS_THAN"
+
+ // SalesforceConnectorOperatorContains is a SalesforceConnectorOperator enum value
+ SalesforceConnectorOperatorContains = "CONTAINS"
+
+ // SalesforceConnectorOperatorGreaterThan is a SalesforceConnectorOperator enum value
+ SalesforceConnectorOperatorGreaterThan = "GREATER_THAN"
+
+ // SalesforceConnectorOperatorBetween is a SalesforceConnectorOperator enum value
+ SalesforceConnectorOperatorBetween = "BETWEEN"
+
+ // SalesforceConnectorOperatorLessThanOrEqualTo is a SalesforceConnectorOperator enum value
+ SalesforceConnectorOperatorLessThanOrEqualTo = "LESS_THAN_OR_EQUAL_TO"
+
+ // SalesforceConnectorOperatorGreaterThanOrEqualTo is a SalesforceConnectorOperator enum value
+ SalesforceConnectorOperatorGreaterThanOrEqualTo = "GREATER_THAN_OR_EQUAL_TO"
+
+ // SalesforceConnectorOperatorEqualTo is a SalesforceConnectorOperator enum value
+ SalesforceConnectorOperatorEqualTo = "EQUAL_TO"
+
+ // SalesforceConnectorOperatorNotEqualTo is a SalesforceConnectorOperator enum value
+ SalesforceConnectorOperatorNotEqualTo = "NOT_EQUAL_TO"
+
+ // SalesforceConnectorOperatorAddition is a SalesforceConnectorOperator enum value
+ SalesforceConnectorOperatorAddition = "ADDITION"
+
+ // SalesforceConnectorOperatorMultiplication is a SalesforceConnectorOperator enum value
+ SalesforceConnectorOperatorMultiplication = "MULTIPLICATION"
+
+ // SalesforceConnectorOperatorDivision is a SalesforceConnectorOperator enum value
+ SalesforceConnectorOperatorDivision = "DIVISION"
+
+ // SalesforceConnectorOperatorSubtraction is a SalesforceConnectorOperator enum value
+ SalesforceConnectorOperatorSubtraction = "SUBTRACTION"
+
+ // SalesforceConnectorOperatorMaskAll is a SalesforceConnectorOperator enum value
+ SalesforceConnectorOperatorMaskAll = "MASK_ALL"
+
+ // SalesforceConnectorOperatorMaskFirstN is a SalesforceConnectorOperator enum value
+ SalesforceConnectorOperatorMaskFirstN = "MASK_FIRST_N"
+
+ // SalesforceConnectorOperatorMaskLastN is a SalesforceConnectorOperator enum value
+ SalesforceConnectorOperatorMaskLastN = "MASK_LAST_N"
+
+ // SalesforceConnectorOperatorValidateNonNull is a SalesforceConnectorOperator enum value
+ SalesforceConnectorOperatorValidateNonNull = "VALIDATE_NON_NULL"
+
+ // SalesforceConnectorOperatorValidateNonZero is a SalesforceConnectorOperator enum value
+ SalesforceConnectorOperatorValidateNonZero = "VALIDATE_NON_ZERO"
+
+ // SalesforceConnectorOperatorValidateNonNegative is a SalesforceConnectorOperator enum value
+ SalesforceConnectorOperatorValidateNonNegative = "VALIDATE_NON_NEGATIVE"
+
+ // SalesforceConnectorOperatorValidateNumeric is a SalesforceConnectorOperator enum value
+ SalesforceConnectorOperatorValidateNumeric = "VALIDATE_NUMERIC"
+
+ // SalesforceConnectorOperatorNoOp is a SalesforceConnectorOperator enum value
+ SalesforceConnectorOperatorNoOp = "NO_OP"
+)
+
+// SalesforceConnectorOperator_Values returns all elements of the SalesforceConnectorOperator enum
+func SalesforceConnectorOperator_Values() []string {
+ return []string{
+ SalesforceConnectorOperatorProjection,
+ SalesforceConnectorOperatorLessThan,
+ SalesforceConnectorOperatorContains,
+ SalesforceConnectorOperatorGreaterThan,
+ SalesforceConnectorOperatorBetween,
+ SalesforceConnectorOperatorLessThanOrEqualTo,
+ SalesforceConnectorOperatorGreaterThanOrEqualTo,
+ SalesforceConnectorOperatorEqualTo,
+ SalesforceConnectorOperatorNotEqualTo,
+ SalesforceConnectorOperatorAddition,
+ SalesforceConnectorOperatorMultiplication,
+ SalesforceConnectorOperatorDivision,
+ SalesforceConnectorOperatorSubtraction,
+ SalesforceConnectorOperatorMaskAll,
+ SalesforceConnectorOperatorMaskFirstN,
+ SalesforceConnectorOperatorMaskLastN,
+ SalesforceConnectorOperatorValidateNonNull,
+ SalesforceConnectorOperatorValidateNonZero,
+ SalesforceConnectorOperatorValidateNonNegative,
+ SalesforceConnectorOperatorValidateNumeric,
+ SalesforceConnectorOperatorNoOp,
+ }
+}
+
+const (
+ // ServiceNowConnectorOperatorProjection is a ServiceNowConnectorOperator enum value
+ ServiceNowConnectorOperatorProjection = "PROJECTION"
+
+ // ServiceNowConnectorOperatorContains is a ServiceNowConnectorOperator enum value
+ ServiceNowConnectorOperatorContains = "CONTAINS"
+
+ // ServiceNowConnectorOperatorLessThan is a ServiceNowConnectorOperator enum value
+ ServiceNowConnectorOperatorLessThan = "LESS_THAN"
+
+ // ServiceNowConnectorOperatorGreaterThan is a ServiceNowConnectorOperator enum value
+ ServiceNowConnectorOperatorGreaterThan = "GREATER_THAN"
+
+ // ServiceNowConnectorOperatorBetween is a ServiceNowConnectorOperator enum value
+ ServiceNowConnectorOperatorBetween = "BETWEEN"
+
+ // ServiceNowConnectorOperatorLessThanOrEqualTo is a ServiceNowConnectorOperator enum value
+ ServiceNowConnectorOperatorLessThanOrEqualTo = "LESS_THAN_OR_EQUAL_TO"
+
+ // ServiceNowConnectorOperatorGreaterThanOrEqualTo is a ServiceNowConnectorOperator enum value
+ ServiceNowConnectorOperatorGreaterThanOrEqualTo = "GREATER_THAN_OR_EQUAL_TO"
+
+ // ServiceNowConnectorOperatorEqualTo is a ServiceNowConnectorOperator enum value
+ ServiceNowConnectorOperatorEqualTo = "EQUAL_TO"
+
+ // ServiceNowConnectorOperatorNotEqualTo is a ServiceNowConnectorOperator enum value
+ ServiceNowConnectorOperatorNotEqualTo = "NOT_EQUAL_TO"
+
+ // ServiceNowConnectorOperatorAddition is a ServiceNowConnectorOperator enum value
+ ServiceNowConnectorOperatorAddition = "ADDITION"
+
+ // ServiceNowConnectorOperatorMultiplication is a ServiceNowConnectorOperator enum value
+ ServiceNowConnectorOperatorMultiplication = "MULTIPLICATION"
+
+ // ServiceNowConnectorOperatorDivision is a ServiceNowConnectorOperator enum value
+ ServiceNowConnectorOperatorDivision = "DIVISION"
+
+ // ServiceNowConnectorOperatorSubtraction is a ServiceNowConnectorOperator enum value
+ ServiceNowConnectorOperatorSubtraction = "SUBTRACTION"
+
+ // ServiceNowConnectorOperatorMaskAll is a ServiceNowConnectorOperator enum value
+ ServiceNowConnectorOperatorMaskAll = "MASK_ALL"
+
+ // ServiceNowConnectorOperatorMaskFirstN is a ServiceNowConnectorOperator enum value
+ ServiceNowConnectorOperatorMaskFirstN = "MASK_FIRST_N"
+
+ // ServiceNowConnectorOperatorMaskLastN is a ServiceNowConnectorOperator enum value
+ ServiceNowConnectorOperatorMaskLastN = "MASK_LAST_N"
+
+ // ServiceNowConnectorOperatorValidateNonNull is a ServiceNowConnectorOperator enum value
+ ServiceNowConnectorOperatorValidateNonNull = "VALIDATE_NON_NULL"
+
+ // ServiceNowConnectorOperatorValidateNonZero is a ServiceNowConnectorOperator enum value
+ ServiceNowConnectorOperatorValidateNonZero = "VALIDATE_NON_ZERO"
+
+ // ServiceNowConnectorOperatorValidateNonNegative is a ServiceNowConnectorOperator enum value
+ ServiceNowConnectorOperatorValidateNonNegative = "VALIDATE_NON_NEGATIVE"
+
+ // ServiceNowConnectorOperatorValidateNumeric is a ServiceNowConnectorOperator enum value
+ ServiceNowConnectorOperatorValidateNumeric = "VALIDATE_NUMERIC"
+
+ // ServiceNowConnectorOperatorNoOp is a ServiceNowConnectorOperator enum value
+ ServiceNowConnectorOperatorNoOp = "NO_OP"
+)
+
+// ServiceNowConnectorOperator_Values returns all elements of the ServiceNowConnectorOperator enum
+func ServiceNowConnectorOperator_Values() []string {
+ return []string{
+ ServiceNowConnectorOperatorProjection,
+ ServiceNowConnectorOperatorContains,
+ ServiceNowConnectorOperatorLessThan,
+ ServiceNowConnectorOperatorGreaterThan,
+ ServiceNowConnectorOperatorBetween,
+ ServiceNowConnectorOperatorLessThanOrEqualTo,
+ ServiceNowConnectorOperatorGreaterThanOrEqualTo,
+ ServiceNowConnectorOperatorEqualTo,
+ ServiceNowConnectorOperatorNotEqualTo,
+ ServiceNowConnectorOperatorAddition,
+ ServiceNowConnectorOperatorMultiplication,
+ ServiceNowConnectorOperatorDivision,
+ ServiceNowConnectorOperatorSubtraction,
+ ServiceNowConnectorOperatorMaskAll,
+ ServiceNowConnectorOperatorMaskFirstN,
+ ServiceNowConnectorOperatorMaskLastN,
+ ServiceNowConnectorOperatorValidateNonNull,
+ ServiceNowConnectorOperatorValidateNonZero,
+ ServiceNowConnectorOperatorValidateNonNegative,
+ ServiceNowConnectorOperatorValidateNumeric,
+ ServiceNowConnectorOperatorNoOp,
+ }
+}
+
+const (
+ // SourceConnectorTypeSalesforce is a SourceConnectorType enum value
+ SourceConnectorTypeSalesforce = "Salesforce"
+
+ // SourceConnectorTypeMarketo is a SourceConnectorType enum value
+ SourceConnectorTypeMarketo = "Marketo"
+
+ // SourceConnectorTypeZendesk is a SourceConnectorType enum value
+ SourceConnectorTypeZendesk = "Zendesk"
+
+ // SourceConnectorTypeServicenow is a SourceConnectorType enum value
+ SourceConnectorTypeServicenow = "Servicenow"
+
+ // SourceConnectorTypeS3 is a SourceConnectorType enum value
+ SourceConnectorTypeS3 = "S3"
+)
+
+// SourceConnectorType_Values returns all elements of the SourceConnectorType enum
+func SourceConnectorType_Values() []string {
+ return []string{
+ SourceConnectorTypeSalesforce,
+ SourceConnectorTypeMarketo,
+ SourceConnectorTypeZendesk,
+ SourceConnectorTypeServicenow,
+ SourceConnectorTypeS3,
+ }
+}
+
const (
// StandardIdentifierProfile is a StandardIdentifier enum value
StandardIdentifierProfile = "PROFILE"
@@ -7526,3 +8784,123 @@ func StandardIdentifier_Values() []string {
StandardIdentifierNewOnly,
}
}
+
+const (
+ // TaskTypeArithmetic is a TaskType enum value
+ TaskTypeArithmetic = "Arithmetic"
+
+ // TaskTypeFilter is a TaskType enum value
+ TaskTypeFilter = "Filter"
+
+ // TaskTypeMap is a TaskType enum value
+ TaskTypeMap = "Map"
+
+ // TaskTypeMask is a TaskType enum value
+ TaskTypeMask = "Mask"
+
+ // TaskTypeMerge is a TaskType enum value
+ TaskTypeMerge = "Merge"
+
+ // TaskTypeTruncate is a TaskType enum value
+ TaskTypeTruncate = "Truncate"
+
+ // TaskTypeValidate is a TaskType enum value
+ TaskTypeValidate = "Validate"
+)
+
+// TaskType_Values returns all elements of the TaskType enum
+func TaskType_Values() []string {
+ return []string{
+ TaskTypeArithmetic,
+ TaskTypeFilter,
+ TaskTypeMap,
+ TaskTypeMask,
+ TaskTypeMerge,
+ TaskTypeTruncate,
+ TaskTypeValidate,
+ }
+}
+
+const (
+ // TriggerTypeScheduled is a TriggerType enum value
+ TriggerTypeScheduled = "Scheduled"
+
+ // TriggerTypeEvent is a TriggerType enum value
+ TriggerTypeEvent = "Event"
+
+ // TriggerTypeOnDemand is a TriggerType enum value
+ TriggerTypeOnDemand = "OnDemand"
+)
+
+// TriggerType_Values returns all elements of the TriggerType enum
+func TriggerType_Values() []string {
+ return []string{
+ TriggerTypeScheduled,
+ TriggerTypeEvent,
+ TriggerTypeOnDemand,
+ }
+}
+
+const (
+ // ZendeskConnectorOperatorProjection is a ZendeskConnectorOperator enum value
+ ZendeskConnectorOperatorProjection = "PROJECTION"
+
+ // ZendeskConnectorOperatorGreaterThan is a ZendeskConnectorOperator enum value
+ ZendeskConnectorOperatorGreaterThan = "GREATER_THAN"
+
+ // ZendeskConnectorOperatorAddition is a ZendeskConnectorOperator enum value
+ ZendeskConnectorOperatorAddition = "ADDITION"
+
+ // ZendeskConnectorOperatorMultiplication is a ZendeskConnectorOperator enum value
+ ZendeskConnectorOperatorMultiplication = "MULTIPLICATION"
+
+ // ZendeskConnectorOperatorDivision is a ZendeskConnectorOperator enum value
+ ZendeskConnectorOperatorDivision = "DIVISION"
+
+ // ZendeskConnectorOperatorSubtraction is a ZendeskConnectorOperator enum value
+ ZendeskConnectorOperatorSubtraction = "SUBTRACTION"
+
+ // ZendeskConnectorOperatorMaskAll is a ZendeskConnectorOperator enum value
+ ZendeskConnectorOperatorMaskAll = "MASK_ALL"
+
+ // ZendeskConnectorOperatorMaskFirstN is a ZendeskConnectorOperator enum value
+ ZendeskConnectorOperatorMaskFirstN = "MASK_FIRST_N"
+
+ // ZendeskConnectorOperatorMaskLastN is a ZendeskConnectorOperator enum value
+ ZendeskConnectorOperatorMaskLastN = "MASK_LAST_N"
+
+ // ZendeskConnectorOperatorValidateNonNull is a ZendeskConnectorOperator enum value
+ ZendeskConnectorOperatorValidateNonNull = "VALIDATE_NON_NULL"
+
+ // ZendeskConnectorOperatorValidateNonZero is a ZendeskConnectorOperator enum value
+ ZendeskConnectorOperatorValidateNonZero = "VALIDATE_NON_ZERO"
+
+ // ZendeskConnectorOperatorValidateNonNegative is a ZendeskConnectorOperator enum value
+ ZendeskConnectorOperatorValidateNonNegative = "VALIDATE_NON_NEGATIVE"
+
+ // ZendeskConnectorOperatorValidateNumeric is a ZendeskConnectorOperator enum value
+ ZendeskConnectorOperatorValidateNumeric = "VALIDATE_NUMERIC"
+
+ // ZendeskConnectorOperatorNoOp is a ZendeskConnectorOperator enum value
+ ZendeskConnectorOperatorNoOp = "NO_OP"
+)
+
+// ZendeskConnectorOperator_Values returns all elements of the ZendeskConnectorOperator enum
+func ZendeskConnectorOperator_Values() []string {
+ return []string{
+ ZendeskConnectorOperatorProjection,
+ ZendeskConnectorOperatorGreaterThan,
+ ZendeskConnectorOperatorAddition,
+ ZendeskConnectorOperatorMultiplication,
+ ZendeskConnectorOperatorDivision,
+ ZendeskConnectorOperatorSubtraction,
+ ZendeskConnectorOperatorMaskAll,
+ ZendeskConnectorOperatorMaskFirstN,
+ ZendeskConnectorOperatorMaskLastN,
+ ZendeskConnectorOperatorValidateNonNull,
+ ZendeskConnectorOperatorValidateNonZero,
+ ZendeskConnectorOperatorValidateNonNegative,
+ ZendeskConnectorOperatorValidateNumeric,
+ ZendeskConnectorOperatorNoOp,
+ }
+}
diff --git a/service/eventbridge/api.go b/service/eventbridge/api.go
index a2359f3be75..e83771867b6 100644
--- a/service/eventbridge/api.go
+++ b/service/eventbridge/api.go
@@ -3799,6 +3799,8 @@ func (c *EventBridge) PutTargetsRequest(input *PutTargetsInput) (req *request.Re
//
// * Custom/SaaS HTTPS APIs via EventBridge API Destinations
//
+// * Amazon SageMaker Model Building Pipelines
+//
// Creating rules with built-in targets is supported only in the AWS Management
// Console. The built-in targets are EC2 CreateSnapshot API call, EC2 RebootInstances
// API call, EC2 StopInstances API call, and EC2 TerminateInstances API call.
@@ -12619,6 +12621,109 @@ func (s *RunCommandTarget) SetValues(v []*string) *RunCommandTarget {
return s
}
+// Name/Value pair of a parameter to start execution of a SageMaker Model Building
+// Pipeline.
+type SageMakerPipelineParameter struct {
+ _ struct{} `type:"structure"`
+
+ // Name of parameter to start execution of a SageMaker Model Building Pipeline.
+ //
+ // Name is a required field
+ Name *string `min:"1" type:"string" required:"true"`
+
+ // Value of parameter to start execution of a SageMaker Model Building Pipeline.
+ //
+ // Value is a required field
+ Value *string `type:"string" required:"true"`
+}
+
+// String returns the string representation
+func (s SageMakerPipelineParameter) String() string {
+ return awsutil.Prettify(s)
+}
+
+// GoString returns the string representation
+func (s SageMakerPipelineParameter) GoString() string {
+ return s.String()
+}
+
+// Validate inspects the fields of the type to determine if they are valid.
+func (s *SageMakerPipelineParameter) Validate() error {
+ invalidParams := request.ErrInvalidParams{Context: "SageMakerPipelineParameter"}
+ if s.Name == nil {
+ invalidParams.Add(request.NewErrParamRequired("Name"))
+ }
+ if s.Name != nil && len(*s.Name) < 1 {
+ invalidParams.Add(request.NewErrParamMinLen("Name", 1))
+ }
+ if s.Value == nil {
+ invalidParams.Add(request.NewErrParamRequired("Value"))
+ }
+
+ if invalidParams.Len() > 0 {
+ return invalidParams
+ }
+ return nil
+}
+
+// SetName sets the Name field's value.
+func (s *SageMakerPipelineParameter) SetName(v string) *SageMakerPipelineParameter {
+ s.Name = &v
+ return s
+}
+
+// SetValue sets the Value field's value.
+func (s *SageMakerPipelineParameter) SetValue(v string) *SageMakerPipelineParameter {
+ s.Value = &v
+ return s
+}
+
+// These are custom parameters to use when the target is a SageMaker Model Building
+// Pipeline that starts based on EventBridge events.
+type SageMakerPipelineParameters struct {
+ _ struct{} `type:"structure"`
+
+ // List of Parameter names and values for SageMaker Model Building Pipeline
+ // execution.
+ PipelineParameterList []*SageMakerPipelineParameter `type:"list"`
+}
+
+// String returns the string representation
+func (s SageMakerPipelineParameters) String() string {
+ return awsutil.Prettify(s)
+}
+
+// GoString returns the string representation
+func (s SageMakerPipelineParameters) GoString() string {
+ return s.String()
+}
+
+// Validate inspects the fields of the type to determine if they are valid.
+func (s *SageMakerPipelineParameters) Validate() error {
+ invalidParams := request.ErrInvalidParams{Context: "SageMakerPipelineParameters"}
+ if s.PipelineParameterList != nil {
+ for i, v := range s.PipelineParameterList {
+ if v == nil {
+ continue
+ }
+ if err := v.Validate(); err != nil {
+ invalidParams.AddNested(fmt.Sprintf("%s[%v]", "PipelineParameterList", i), err.(request.ErrInvalidParams))
+ }
+ }
+ }
+
+ if invalidParams.Len() > 0 {
+ return invalidParams
+ }
+ return nil
+}
+
+// SetPipelineParameterList sets the PipelineParameterList field's value.
+func (s *SageMakerPipelineParameters) SetPipelineParameterList(v []*SageMakerPipelineParameter) *SageMakerPipelineParameters {
+ s.PipelineParameterList = v
+ return s
+}
+
// This structure includes the custom parameter to be used when the target is
// an SQS FIFO queue.
type SqsParameters struct {
@@ -13036,6 +13141,14 @@ type Target struct {
// Parameters used when you are using the rule to invoke Amazon EC2 Run Command.
RunCommandParameters *RunCommandParameters `type:"structure"`
+ // Contains the SageMaker Model Building Pipeline parameters to start execution
+ // of a SageMaker Model Building Pipeline.
+ //
+ // If you specify a SageMaker Model Building Pipeline as a target, you can use
+ // this to specify parameters to start a pipeline execution based on EventBridge
+ // events.
+ SageMakerPipelineParameters *SageMakerPipelineParameters `type:"structure"`
+
// Contains the message group ID to use when the target is a FIFO queue.
//
// If you specify an SQS FIFO queue as a target, the queue must have content-based
@@ -13111,6 +13224,11 @@ func (s *Target) Validate() error {
invalidParams.AddNested("RunCommandParameters", err.(request.ErrInvalidParams))
}
}
+ if s.SageMakerPipelineParameters != nil {
+ if err := s.SageMakerPipelineParameters.Validate(); err != nil {
+ invalidParams.AddNested("SageMakerPipelineParameters", err.(request.ErrInvalidParams))
+ }
+ }
if invalidParams.Len() > 0 {
return invalidParams
@@ -13202,6 +13320,12 @@ func (s *Target) SetRunCommandParameters(v *RunCommandParameters) *Target {
return s
}
+// SetSageMakerPipelineParameters sets the SageMakerPipelineParameters field's value.
+func (s *Target) SetSageMakerPipelineParameters(v *SageMakerPipelineParameters) *Target {
+ s.SageMakerPipelineParameters = v
+ return s
+}
+
// SetSqsParameters sets the SqsParameters field's value.
func (s *Target) SetSqsParameters(v *SqsParameters) *Target {
s.SqsParameters = v
diff --git a/service/iotwireless/api.go b/service/iotwireless/api.go
index 344253fb194..a13ec0d95f9 100644
--- a/service/iotwireless/api.go
+++ b/service/iotwireless/api.go
@@ -5107,8 +5107,8 @@ type AssociateAwsAccountWithPartnerAccountInput struct {
// Sidewalk is a required field
Sidewalk *SidewalkAccountInfo `type:"structure" required:"true"`
- // The tags attached to the specified resource. Tags are metadata that can be
- // used to manage a resource
+ // The tags to attach to the specified resource. Tags are metadata that you
+ // can use to manage a resource.
Tags []*Tag `type:"list"`
}
@@ -5514,8 +5514,8 @@ type CreateDestinationInput struct {
// RoleArn is a required field
RoleArn *string `min:"20" type:"string" required:"true"`
- // The tags to attach to the new destination. Tags are metadata that can be
- // used to manage a resource.
+ // The tags to attach to the new destination. Tags are metadata that you can
+ // use to manage a resource.
Tags []*Tag `type:"list"`
}
@@ -5656,8 +5656,8 @@ type CreateDeviceProfileInput struct {
// The name of the new resource.
Name *string `type:"string"`
- // The tags to attach to the new device profile Tags are metadata that can be
- // used to manage a resource.
+ // The tags to attach to the new device profile. Tags are metadata that you
+ // can use to manage a resource.
Tags []*Tag `type:"list"`
}
@@ -5770,8 +5770,8 @@ type CreateServiceProfileInput struct {
// The name of the new resource.
Name *string `type:"string"`
- // The tags to attach to the new service profile. Tags are metadata that can
- // be used to manage a resource.
+ // The tags to attach to the new service profile. Tags are metadata that you
+ // can use to manage a resource.
Tags []*Tag `type:"list"`
}
@@ -5887,6 +5887,10 @@ type CreateWirelessDeviceInput struct {
// The name of the new resource.
Name *string `type:"string"`
+ // The tags to attach to the new wireless device. Tags are metadata that you
+ // can use to manage a resource.
+ Tags []*Tag `type:"list"`
+
// The wireless device type.
//
// Type is a required field
@@ -5915,6 +5919,16 @@ func (s *CreateWirelessDeviceInput) Validate() error {
if s.Type == nil {
invalidParams.Add(request.NewErrParamRequired("Type"))
}
+ if s.Tags != nil {
+ for i, v := range s.Tags {
+ if v == nil {
+ continue
+ }
+ if err := v.Validate(); err != nil {
+ invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Tags", i), err.(request.ErrInvalidParams))
+ }
+ }
+ }
if invalidParams.Len() > 0 {
return invalidParams
@@ -5952,6 +5966,12 @@ func (s *CreateWirelessDeviceInput) SetName(v string) *CreateWirelessDeviceInput
return s
}
+// SetTags sets the Tags field's value.
+func (s *CreateWirelessDeviceInput) SetTags(v []*Tag) *CreateWirelessDeviceInput {
+ s.Tags = v
+ return s
+}
+
// SetType sets the Type field's value.
func (s *CreateWirelessDeviceInput) SetType(v string) *CreateWirelessDeviceInput {
s.Type = &v
@@ -6010,8 +6030,8 @@ type CreateWirelessGatewayInput struct {
// The name of the new resource.
Name *string `type:"string"`
- // The tags to attach to the new wireless gateway. Tags are metadata that can
- // be used to manage a resource.
+ // The tags to attach to the new wireless gateway. Tags are metadata that you
+ // can use to manage a resource.
Tags []*Tag `type:"list"`
}
@@ -6132,8 +6152,8 @@ type CreateWirelessGatewayTaskDefinitionInput struct {
// The name of the new resource.
Name *string `min:"1" type:"string"`
- // The tags attached to the specified resource. Tags are metadata that can be
- // used to manage a resource
+ // The tags to attach to the specified resource. Tags are metadata that you
+ // can use to manage a resource.
Tags []*Tag `type:"list"`
// Information about the gateways to update.
@@ -8600,7 +8620,7 @@ func (s *ListServiceProfilesOutput) SetServiceProfileList(v []*ServiceProfile) *
type ListTagsForResourceInput struct {
_ struct{} `type:"structure"`
- // The ARN of the resource for which to list tags.
+ // The ARN of the resource for which you want to list tags.
//
// ResourceArn is a required field
ResourceArn *string `location:"querystring" locationName:"resourceArn" min:"1" type:"string" required:"true"`
@@ -8641,8 +8661,8 @@ func (s *ListTagsForResourceInput) SetResourceArn(v string) *ListTagsForResource
type ListTagsForResourceOutput struct {
_ struct{} `type:"structure"`
- // The tags attached to the specified resource. Tags are metadata that can be
- // used to manage a resource
+ // The tags to attach to the specified resource. Tags are metadata that you
+ // can use to manage a resource.
Tags []*Tag `type:"list"`
}
@@ -10440,7 +10460,7 @@ type TagResourceInput struct {
ResourceArn *string `location:"querystring" locationName:"resourceArn" min:"1" type:"string" required:"true"`
// Adds to or modifies the tags of the given resource. Tags are metadata that
- // can be used to manage a resource.
+ // you can use to manage a resource.
//
// Tags is a required field
Tags []*Tag `type:"list" required:"true"`
diff --git a/service/transcribeservice/api.go b/service/transcribeservice/api.go
index bd3bc5b4116..9d6c6e6c2cd 100644
--- a/service/transcribeservice/api.go
+++ b/service/transcribeservice/api.go
@@ -6163,7 +6163,10 @@ type Settings struct {
// Set to mask to remove filtered text from the transcript and replace it with
// three asterisks ("***") as placeholder text. Set to remove to remove filtered
- // text from the transcript without using placeholder text.
+ // text from the transcript without using placeholder text. Set to tag to mark
+ // the word in the transcription output that matches the vocabulary filter.
+ // When you set the filter method to tag, the words matching your vocabulary
+ // filter are not masked or removed.
VocabularyFilterMethod *string `type:"string" enum:"VocabularyFilterMethod"`
// The name of the vocabulary filter to use when transcribing the audio. The
@@ -8040,6 +8043,9 @@ const (
// VocabularyFilterMethodMask is a VocabularyFilterMethod enum value
VocabularyFilterMethodMask = "mask"
+
+ // VocabularyFilterMethodTag is a VocabularyFilterMethod enum value
+ VocabularyFilterMethodTag = "tag"
)
// VocabularyFilterMethod_Values returns all elements of the VocabularyFilterMethod enum
@@ -8047,6 +8053,7 @@ func VocabularyFilterMethod_Values() []string {
return []string{
VocabularyFilterMethodRemove,
VocabularyFilterMethodMask,
+ VocabularyFilterMethodTag,
}
}