-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add ecs task 'overrides' to eventbridge builder #1294
Comments
This should probably be part of the scheduler rather than eventbridge actually. |
I'm not familiar with this feature but it appears to be available through Amazon EventBridge Pipes and requires using the PipesClient.fromEnvironment().use { pipes ->
pipes.createPipe {
targetParameters {
ecsTaskParameters {
overrides {
containerOverrides = listOf(
EcsContainerOverride {
…
}
)
}
}
}
}
} Is that what you're looking for or is yours a different use case? |
I found you can use the SchedulerClient and just put the containeroverrides in the input of Target. |
|
Describe the feature
I may be missing something but i can't seem to find overrides for an EcsParameters. In the console you can add container overrides like in the SS attached.
Is your Feature Request related to a problem?
N/a
Proposed Solution
Start by adding
public var overrides kotlin.String? = null
into aws.sdk.kotlin.services.eventbridge.model.EcsParameters.BuilderDescribe alternative solutions or features you've considered
No response
Acknowledge
AWS Kotlin SDK version used
1.1.25
Platform (JVM/JS/Native)
JVM
Operating System and version
n/a
The text was updated successfully, but these errors were encountered: