Interface IUniqueResourceNameOptions
Options for creating a unique resource name.
Namespace: Amazon.CDK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IUniqueResourceNameOptions
Syntax (vb)
Public Interface IUniqueResourceNameOptions
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;
var uniqueResourceNameOptions = new UniqueResourceNameOptions {
AllowedSpecialCharacters = "allowedSpecialCharacters",
MaxLength = 123,
Separator = "separator"
};
Synopsis
Properties
| AllowedSpecialCharacters | Non-alphanumeric characters allowed in the unique resource name. |
| MaxLength | The maximum length of the unique resource name. |
| Separator | The separator used between the path components. |
Properties
AllowedSpecialCharacters
Non-alphanumeric characters allowed in the unique resource name.
string? AllowedSpecialCharacters { get; }
Property Value
Remarks
Default: - none
MaxLength
The maximum length of the unique resource name.
double? MaxLength { get; }
Property Value
Remarks
Default: - 256
Separator
The separator used between the path components.
string? Separator { get; }
Property Value
Remarks
Default: - none