aws-cdk-lib.aws_refactorspaces.CfnEnvironmentProps

interface CfnEnvironmentProps

LanguageType name
.NETAmazon.CDK.AWS.RefactorSpaces.CfnEnvironmentProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsrefactorspaces#CfnEnvironmentProps
Javasoftware.amazon.awscdk.services.refactorspaces.CfnEnvironmentProps
Pythonaws_cdk.aws_refactorspaces.CfnEnvironmentProps
TypeScript aws-cdk-lib » aws_refactorspaces » CfnEnvironmentProps

Properties for defining a CfnEnvironment.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_refactorspaces as refactorspaces } from 'aws-cdk-lib';
const cfnEnvironmentProps: refactorspaces.CfnEnvironmentProps = {
  name: 'name',
  networkFabricType: 'networkFabricType',

  // the properties below are optional
  description: 'description',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
namestringThe name of the environment.
networkFabricTypestringThe network fabric type of the environment.
description?stringA description of the environment.
tags?CfnTag[]The tags assigned to the environment.

name

Type: string

The name of the environment.


networkFabricType

Type: string

The network fabric type of the environment.


description?

Type: string (optional)

A description of the environment.


tags?

Type: CfnTag[] (optional)

The tags assigned to the environment.