AWSConnectCreateIntegrationAssociationRequest
Objective-C
@interface AWSConnectCreateIntegrationAssociationRequest
Swift
class AWSConnectCreateIntegrationAssociationRequest
-
The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable instanceId;
Swift
var instanceId: String? { get set }
-
The Amazon Resource Name (ARN) of the integration.
When integrating with Amazon Pinpoint, the Amazon Connect and Amazon Pinpoint instances must be in the same account.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable integrationArn;
Swift
var integrationArn: String? { get set }
-
The type of information to be ingested.
Declaration
Objective-C
@property (nonatomic) AWSConnectIntegrationType integrationType;
Swift
var integrationType: AWSConnectIntegrationType { get set }
-
The name of the external application. This field is only required for the EVENT integration type.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable sourceApplicationName;
Swift
var sourceApplicationName: String? { get set }
-
The URL for the external application. This field is only required for the EVENT integration type.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable sourceApplicationUrl;
Swift
var sourceApplicationUrl: String? { get set }
-
The type of the data source. This field is only required for the EVENT integration type.
Declaration
Objective-C
@property (nonatomic) AWSConnectSourceType sourceType;
Swift
var sourceType: AWSConnectSourceType { get set }
-
The tags used to organize, track, or control access for this resource. For example, { “Tags”: {“key1”:“value1”, “key2”:“value2”} }.
Declaration
Objective-C
@property (nonatomic, strong) NSDictionary<NSString *, NSString *> *_Nullable tags;
Swift
var tags: [String : String]? { get set }