Class CfnResourceDefaultVersionProps
Properties for defining a CfnResourceDefaultVersion
.
public class CfnResourceDefaultVersionProps : ICfnResourceDefaultVersionProps
- Inheritance
-
CfnResourceDefaultVersionProps
- Implements
- Inherited Members
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK;
var cfnResourceDefaultVersionProps = new CfnResourceDefaultVersionProps {
TypeName = "typeName",
TypeVersionArn = "typeVersionArn",
VersionId = "versionId"
};
Remarks
ExampleMetadata: fixture=_generated
Constructors
CfnResourceDefaultVersionProps()
public CfnResourceDefaultVersionProps()
Properties
TypeName
The name of the resource.
public string? TypeName { get; set; }
Property Value
Remarks
Conditional: You must specify either TypeVersionArn
, or TypeName
and VersionId
.
TypeVersionArn
The Amazon Resource Name (ARN) of the resource version.
public string? TypeVersionArn { get; set; }
Property Value
Remarks
Conditional: You must specify either TypeVersionArn
, or TypeName
and VersionId
.
VersionId
The ID of a specific version of the resource.
public string? VersionId { get; set; }
Property Value
Remarks
The version ID is the value at the end of the Amazon Resource Name (ARN) assigned to the resource version when it's registered.
Conditional: You must specify either TypeVersionArn
, or TypeName
and VersionId
.