github.com/twilio/twilio-go@v1.20.1/rest/video/v1/model_video_v1_recording_settings.go (about)

     1  /*
     2   * This code was generated by
     3   * ___ _ _ _ _ _    _ ____    ____ ____ _    ____ ____ _  _ ____ ____ ____ ___ __   __
     4   *  |  | | | | |    | |  | __ |  | |__| | __ | __ |___ |\ | |___ |__/ |__|  | |  | |__/
     5   *  |  |_|_| | |___ | |__|    |__| |  | |    |__] |___ | \| |___ |  \ |  |  | |__| |  \
     6   *
     7   * Twilio - Video
     8   * This is the public Twilio REST API.
     9   *
    10   * NOTE: This class is auto generated by OpenAPI Generator.
    11   * https://openapi-generator.tech
    12   * Do not edit the class manually.
    13   */
    14  
    15  package openapi
    16  
    17  // VideoV1RecordingSettings struct for VideoV1RecordingSettings
    18  type VideoV1RecordingSettings struct {
    19  	// The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the RecordingSettings resource.
    20  	AccountSid *string `json:"account_sid,omitempty"`
    21  	// The string that you assigned to describe the resource and show the user in the console
    22  	FriendlyName *string `json:"friendly_name,omitempty"`
    23  	// The SID of the stored Credential resource.
    24  	AwsCredentialsSid *string `json:"aws_credentials_sid,omitempty"`
    25  	// The URL of the AWS S3 bucket where the recordings are stored. We only support DNS-compliant URLs like `https://documentation-example-twilio-bucket/recordings`, where `recordings` is the path in which you want the recordings to be stored. This URL accepts only URI-valid characters, as described in the [RFC 3986](https://tools.ietf.org/html/rfc3986#section-2).
    26  	AwsS3Url *string `json:"aws_s3_url,omitempty"`
    27  	// Whether all recordings are written to the `aws_s3_url`. When `false`, all recordings are stored in our cloud.
    28  	AwsStorageEnabled *bool `json:"aws_storage_enabled,omitempty"`
    29  	// The SID of the Public Key resource used for encryption.
    30  	EncryptionKeySid *string `json:"encryption_key_sid,omitempty"`
    31  	// Whether all recordings are stored in an encrypted form. The default is `false`.
    32  	EncryptionEnabled *bool `json:"encryption_enabled,omitempty"`
    33  	// The absolute URL of the resource.
    34  	Url *string `json:"url,omitempty"`
    35  }