Interface CfnServer.EngineAttributeProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnServer.EngineAttributeProperty.Jsii$Proxy
Enclosing class:
CfnServer

@Stability(Stable) public static interface CfnServer.EngineAttributeProperty extends software.amazon.jsii.JsiiSerializable
The EngineAttribute property type specifies administrator credentials for an AWS OpsWorks for Chef Automate or OpsWorks for Puppet Enterprise server.

EngineAttribute is a property of the AWS::OpsWorksCM::Server resource type.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.opsworkscm.*;
 EngineAttributeProperty engineAttributeProperty = EngineAttributeProperty.builder()
         .name("name")
         .value("value")
         .build();
 

See Also: