package awsstepfunctionstasks // Configuration options for the ContainerDefinition. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // var parameters interface{} // // containerDefinitionConfig := &ContainerDefinitionConfig{ // Parameters: map[string]interface{}{ // "parametersKey": parameters, // }, // } // type ContainerDefinitionConfig struct { // Additional parameters to pass to the base task. Parameters *map[string]interface{} `field:"optional" json:"parameters" yaml:"parameters"` }