createProfile

Creates a customer profile. You can have up to five customer profiles, each representing a distinct private network. A profile is the mechanism used to create the concept of a private network.

Samples

import aws.sdk.kotlin.services.b2bi.model.Tag
fun main() { 
   //sampleStart 
   // Sample CreateProfile call
val resp = b2BiClient.createProfile {
    businessName = "John's Shipping"
    clientToken = "foo"
    email = "john@example.com"
    logging = Logging.fromValue("ENABLED")
    name = "Shipping Profile"
    phone = "5555555555"
    tags = listOf<Tag>(
        Tag {
            key = "sampleKey"
            value = "sampleValue"
        }            
    )
} 
   //sampleEnd
}