interface SoftwareProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ThinClient.CfnSoftwareSet.SoftwareProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsthinclient#CfnSoftwareSet_SoftwareProperty |
Java | software.amazon.awscdk.services.thinclient.CfnSoftwareSet.SoftwareProperty |
Python | aws_cdk.aws_thinclient.CfnSoftwareSet.SoftwareProperty |
TypeScript | aws-cdk-lib » aws_thinclient » CfnSoftwareSet » SoftwareProperty |
Describes software.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_thinclient as thinclient } from 'aws-cdk-lib';
const softwareProperty: thinclient.CfnSoftwareSet.SoftwareProperty = {
name: 'name',
version: 'version',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of the software component. |
| version? | string | The version of the software component. |
name?
Type:
string
(optional)
The name of the software component.
version?
Type:
string
(optional)
The version of the software component.

.NET
Go
Java
Python
TypeScript