Show / Hide Table of Contents

Interface IMultipartUserDataOptions

Options for creating MultipartUserData.

Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IMultipartUserDataOptions
Syntax (vb)
Public Interface IMultipartUserDataOptions
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.AWS.EC2;

            var multipartUserDataOptions = new MultipartUserDataOptions {
                PartsSeparator = "partsSeparator"
            };

Synopsis

Properties

PartsSeparator

The string used to separate parts in multipart user data archive (it's like MIME boundary).

Properties

PartsSeparator

The string used to separate parts in multipart user data archive (it's like MIME boundary).

string? PartsSeparator { get; }
Property Value

string

Remarks

This string should contain [a-zA-Z0-9()+,-./:=?] characters only, and should not be present in any part, or in text content of archive.

Default: +AWS+CDK+User+Data+Separator==

Back to top Generated by DocFX