Skip to content

Add support for dualStackIPv6 ECS account setting #2772

Closed
@diogoazevedos

Description

Describe the feature

Add support for dualStackIPv6 ECS account setting.

Use Case

Enable dualStackIPv6 using Terraform aws_ecs_account_setting_default.

Proposed Solution

I think it's matter of adding the dualStackIPv6 to:

// Enum values for SettingName
const (
SettingNameServiceLongArnFormat SettingName = "serviceLongArnFormat"
SettingNameTaskLongArnFormat SettingName = "taskLongArnFormat"
SettingNameContainerInstanceLongArnFormat SettingName = "containerInstanceLongArnFormat"
SettingNameAwsvpcTrunking SettingName = "awsvpcTrunking"
SettingNameContainerInsights SettingName = "containerInsights"
SettingNameFargateFipsMode SettingName = "fargateFIPSMode"
SettingNameTagResourceAuthorization SettingName = "tagResourceAuthorization"
SettingNameFargateTaskRetirementWaitPeriod SettingName = "fargateTaskRetirementWaitPeriod"
SettingNameGuardDutyActivate SettingName = "guardDutyActivate"
)
// Values returns all known values for SettingName. Note that this can be expanded
// in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (SettingName) Values() []SettingName {
return []SettingName{
"serviceLongArnFormat",
"taskLongArnFormat",
"containerInstanceLongArnFormat",
"awsvpcTrunking",
"containerInsights",
"fargateFIPSMode",
"tagResourceAuthorization",
"fargateTaskRetirementWaitPeriod",
"guardDutyActivate",
}
}

Other Information

No response

Acknowledgements

  • I may be able to implement this feature request
  • This feature might incur a breaking change

AWS Go SDK V2 Module Versions Used

None

Go version used

1.23.0

Metadata

Labels

bugThis issue is a bug.p2This is a standard priority issueservice-apiThis issue is due to a problem in a service API, not the SDK implementation.

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions