pulumi-aws 7.9.1__py3-none-any.whl → 7.10.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. pulumi_aws/__init__.py +40 -0
  2. pulumi_aws/_inputs.py +40 -0
  3. pulumi_aws/appstream/_inputs.py +54 -0
  4. pulumi_aws/appstream/directory_config.py +55 -0
  5. pulumi_aws/appstream/outputs.py +49 -0
  6. pulumi_aws/bedrock/__init__.py +5 -0
  7. pulumi_aws/bedrock/_inputs.py +2097 -0
  8. pulumi_aws/bedrock/agent_agent.py +9 -7
  9. pulumi_aws/bedrock/agentcore_api_key_credential_provider.py +122 -1
  10. pulumi_aws/bedrock/agentcore_memory.py +614 -0
  11. pulumi_aws/bedrock/agentcore_memory_strategy.py +800 -0
  12. pulumi_aws/bedrock/agentcore_oauth2_credential_provider.py +477 -0
  13. pulumi_aws/bedrock/agentcore_token_vault_cmk.py +291 -0
  14. pulumi_aws/bedrock/agentcore_workload_identity.py +359 -0
  15. pulumi_aws/bedrock/outputs.py +1739 -0
  16. pulumi_aws/cloudtrail/trail.py +7 -7
  17. pulumi_aws/config/outputs.py +24 -0
  18. pulumi_aws/docdb/cluster.py +109 -1
  19. pulumi_aws/ec2/route.py +12 -0
  20. pulumi_aws/ecs/task_definition.py +7 -7
  21. pulumi_aws/fis/_inputs.py +3 -3
  22. pulumi_aws/fis/outputs.py +2 -2
  23. pulumi_aws/kms/key_policy.py +7 -7
  24. pulumi_aws/odb/network.py +47 -0
  25. pulumi_aws/organizations/_inputs.py +170 -42
  26. pulumi_aws/organizations/account.py +57 -8
  27. pulumi_aws/organizations/get_organization.py +7 -7
  28. pulumi_aws/organizations/organization.py +27 -27
  29. pulumi_aws/organizations/outputs.py +310 -62
  30. pulumi_aws/pulumi-plugin.json +1 -1
  31. pulumi_aws/rds/cluster.py +102 -1
  32. pulumi_aws/rds/instance.py +102 -1
  33. pulumi_aws/redshift/cluster.py +130 -1
  34. pulumi_aws/redshiftserverless/namespace.py +109 -1
  35. pulumi_aws/secretsmanager/secret_version.py +122 -1
  36. pulumi_aws/ssm/parameter.py +145 -2
  37. pulumi_aws/transfer/host_key.py +75 -1
  38. pulumi_aws/workspaces/get_workspace.py +19 -0
  39. {pulumi_aws-7.9.1.dist-info → pulumi_aws-7.10.0.dist-info}/METADATA +1 -1
  40. {pulumi_aws-7.9.1.dist-info → pulumi_aws-7.10.0.dist-info}/RECORD +42 -37
  41. {pulumi_aws-7.9.1.dist-info → pulumi_aws-7.10.0.dist-info}/WHEEL +0 -0
  42. {pulumi_aws-7.9.1.dist-info → pulumi_aws-7.10.0.dist-info}/top_level.txt +0 -0
@@ -47,7 +47,7 @@ class TrailArgs:
47
47
  :param pulumi.Input[_builtins.str] cloud_watch_logs_group_arn: Log group name using an ARN that represents the log group to which CloudTrail logs will be delivered. Note that CloudTrail requires the Log Stream wildcard.
48
48
  :param pulumi.Input[_builtins.str] cloud_watch_logs_role_arn: Role for the CloudWatch Logs endpoint to assume to write to a user’s log group.
49
49
  :param pulumi.Input[_builtins.bool] enable_log_file_validation: Whether log file integrity validation is enabled. Defaults to `false`.
50
- :param pulumi.Input[_builtins.bool] enable_logging: Enables logging for the trail. Defaults to `true`. Setting this to `false` will pause logging.
50
+ :param pulumi.Input[_builtins.bool] enable_logging: Enables logging for the trail. When set to `true`, logging is started by calling the [`StartLogging`](https://docs.aws.amazon.com/awscloudtrail/latest/APIReference/API_StartLogging.html) API. When set to `false`, logging is stopped by calling the [`StopLogging`](https://docs.aws.amazon.com/awscloudtrail/latest/APIReference/API_StopLogging.html) API. Defaults to `true`.
51
51
  :param pulumi.Input[Sequence[pulumi.Input['TrailEventSelectorArgs']]] event_selectors: Specifies an event selector for enabling data event logging. Fields documented below. Please note the [CloudTrail limits](https://docs.aws.amazon.com/awscloudtrail/latest/userguide/WhatIsCloudTrail-Limits.html) when configuring these. Conflicts with `advanced_event_selector`.
52
52
  :param pulumi.Input[_builtins.bool] include_global_service_events: Whether the trail is publishing events from global services such as IAM to the log files. Defaults to `true`.
53
53
  :param pulumi.Input[Sequence[pulumi.Input['TrailInsightSelectorArgs']]] insight_selectors: Configuration block for identifying unusual operational activity. See details below.
@@ -160,7 +160,7 @@ class TrailArgs:
160
160
  @pulumi.getter(name="enableLogging")
161
161
  def enable_logging(self) -> Optional[pulumi.Input[_builtins.bool]]:
162
162
  """
163
- Enables logging for the trail. Defaults to `true`. Setting this to `false` will pause logging.
163
+ Enables logging for the trail. When set to `true`, logging is started by calling the [`StartLogging`](https://docs.aws.amazon.com/awscloudtrail/latest/APIReference/API_StartLogging.html) API. When set to `false`, logging is stopped by calling the [`StopLogging`](https://docs.aws.amazon.com/awscloudtrail/latest/APIReference/API_StopLogging.html) API. Defaults to `true`.
164
164
  """
165
165
  return pulumi.get(self, "enable_logging")
166
166
 
@@ -332,7 +332,7 @@ class _TrailState:
332
332
  :param pulumi.Input[_builtins.str] cloud_watch_logs_group_arn: Log group name using an ARN that represents the log group to which CloudTrail logs will be delivered. Note that CloudTrail requires the Log Stream wildcard.
333
333
  :param pulumi.Input[_builtins.str] cloud_watch_logs_role_arn: Role for the CloudWatch Logs endpoint to assume to write to a user’s log group.
334
334
  :param pulumi.Input[_builtins.bool] enable_log_file_validation: Whether log file integrity validation is enabled. Defaults to `false`.
335
- :param pulumi.Input[_builtins.bool] enable_logging: Enables logging for the trail. Defaults to `true`. Setting this to `false` will pause logging.
335
+ :param pulumi.Input[_builtins.bool] enable_logging: Enables logging for the trail. When set to `true`, logging is started by calling the [`StartLogging`](https://docs.aws.amazon.com/awscloudtrail/latest/APIReference/API_StartLogging.html) API. When set to `false`, logging is stopped by calling the [`StopLogging`](https://docs.aws.amazon.com/awscloudtrail/latest/APIReference/API_StopLogging.html) API. Defaults to `true`.
336
336
  :param pulumi.Input[Sequence[pulumi.Input['TrailEventSelectorArgs']]] event_selectors: Specifies an event selector for enabling data event logging. Fields documented below. Please note the [CloudTrail limits](https://docs.aws.amazon.com/awscloudtrail/latest/userguide/WhatIsCloudTrail-Limits.html) when configuring these. Conflicts with `advanced_event_selector`.
337
337
  :param pulumi.Input[_builtins.str] home_region: Region in which the trail was created.
338
338
  :param pulumi.Input[_builtins.bool] include_global_service_events: Whether the trail is publishing events from global services such as IAM to the log files. Defaults to `true`.
@@ -458,7 +458,7 @@ class _TrailState:
458
458
  @pulumi.getter(name="enableLogging")
459
459
  def enable_logging(self) -> Optional[pulumi.Input[_builtins.bool]]:
460
460
  """
461
- Enables logging for the trail. Defaults to `true`. Setting this to `false` will pause logging.
461
+ Enables logging for the trail. When set to `true`, logging is started by calling the [`StartLogging`](https://docs.aws.amazon.com/awscloudtrail/latest/APIReference/API_StartLogging.html) API. When set to `false`, logging is stopped by calling the [`StopLogging`](https://docs.aws.amazon.com/awscloudtrail/latest/APIReference/API_StopLogging.html) API. Defaults to `true`.
462
462
  """
463
463
  return pulumi.get(self, "enable_logging")
464
464
 
@@ -935,7 +935,7 @@ class Trail(pulumi.CustomResource):
935
935
  :param pulumi.Input[_builtins.str] cloud_watch_logs_group_arn: Log group name using an ARN that represents the log group to which CloudTrail logs will be delivered. Note that CloudTrail requires the Log Stream wildcard.
936
936
  :param pulumi.Input[_builtins.str] cloud_watch_logs_role_arn: Role for the CloudWatch Logs endpoint to assume to write to a user’s log group.
937
937
  :param pulumi.Input[_builtins.bool] enable_log_file_validation: Whether log file integrity validation is enabled. Defaults to `false`.
938
- :param pulumi.Input[_builtins.bool] enable_logging: Enables logging for the trail. Defaults to `true`. Setting this to `false` will pause logging.
938
+ :param pulumi.Input[_builtins.bool] enable_logging: Enables logging for the trail. When set to `true`, logging is started by calling the [`StartLogging`](https://docs.aws.amazon.com/awscloudtrail/latest/APIReference/API_StartLogging.html) API. When set to `false`, logging is stopped by calling the [`StopLogging`](https://docs.aws.amazon.com/awscloudtrail/latest/APIReference/API_StopLogging.html) API. Defaults to `true`.
939
939
  :param pulumi.Input[Sequence[pulumi.Input[Union['TrailEventSelectorArgs', 'TrailEventSelectorArgsDict']]]] event_selectors: Specifies an event selector for enabling data event logging. Fields documented below. Please note the [CloudTrail limits](https://docs.aws.amazon.com/awscloudtrail/latest/userguide/WhatIsCloudTrail-Limits.html) when configuring these. Conflicts with `advanced_event_selector`.
940
940
  :param pulumi.Input[_builtins.bool] include_global_service_events: Whether the trail is publishing events from global services such as IAM to the log files. Defaults to `true`.
941
941
  :param pulumi.Input[Sequence[pulumi.Input[Union['TrailInsightSelectorArgs', 'TrailInsightSelectorArgsDict']]]] insight_selectors: Configuration block for identifying unusual operational activity. See details below.
@@ -1320,7 +1320,7 @@ class Trail(pulumi.CustomResource):
1320
1320
  :param pulumi.Input[_builtins.str] cloud_watch_logs_group_arn: Log group name using an ARN that represents the log group to which CloudTrail logs will be delivered. Note that CloudTrail requires the Log Stream wildcard.
1321
1321
  :param pulumi.Input[_builtins.str] cloud_watch_logs_role_arn: Role for the CloudWatch Logs endpoint to assume to write to a user’s log group.
1322
1322
  :param pulumi.Input[_builtins.bool] enable_log_file_validation: Whether log file integrity validation is enabled. Defaults to `false`.
1323
- :param pulumi.Input[_builtins.bool] enable_logging: Enables logging for the trail. Defaults to `true`. Setting this to `false` will pause logging.
1323
+ :param pulumi.Input[_builtins.bool] enable_logging: Enables logging for the trail. When set to `true`, logging is started by calling the [`StartLogging`](https://docs.aws.amazon.com/awscloudtrail/latest/APIReference/API_StartLogging.html) API. When set to `false`, logging is stopped by calling the [`StopLogging`](https://docs.aws.amazon.com/awscloudtrail/latest/APIReference/API_StopLogging.html) API. Defaults to `true`.
1324
1324
  :param pulumi.Input[Sequence[pulumi.Input[Union['TrailEventSelectorArgs', 'TrailEventSelectorArgsDict']]]] event_selectors: Specifies an event selector for enabling data event logging. Fields documented below. Please note the [CloudTrail limits](https://docs.aws.amazon.com/awscloudtrail/latest/userguide/WhatIsCloudTrail-Limits.html) when configuring these. Conflicts with `advanced_event_selector`.
1325
1325
  :param pulumi.Input[_builtins.str] home_region: Region in which the trail was created.
1326
1326
  :param pulumi.Input[_builtins.bool] include_global_service_events: Whether the trail is publishing events from global services such as IAM to the log files. Defaults to `true`.
@@ -1410,7 +1410,7 @@ class Trail(pulumi.CustomResource):
1410
1410
  @pulumi.getter(name="enableLogging")
1411
1411
  def enable_logging(self) -> pulumi.Output[Optional[_builtins.bool]]:
1412
1412
  """
1413
- Enables logging for the trail. Defaults to `true`. Setting this to `false` will pause logging.
1413
+ Enables logging for the trail. When set to `true`, logging is started by calling the [`StartLogging`](https://docs.aws.amazon.com/awscloudtrail/latest/APIReference/API_StartLogging.html) API. When set to `false`, logging is stopped by calling the [`StopLogging`](https://docs.aws.amazon.com/awscloudtrail/latest/APIReference/API_StopLogging.html) API. Defaults to `true`.
1414
1414
  """
1415
1415
  return pulumi.get(self, "enable_logging")
1416
1416
 
@@ -441,11 +441,13 @@ class Endpoints(dict):
441
441
  neptune: Optional[_builtins.str] = None,
442
442
  neptunegraph: Optional[_builtins.str] = None,
443
443
  networkfirewall: Optional[_builtins.str] = None,
444
+ networkflowmonitor: Optional[_builtins.str] = None,
444
445
  networkmanager: Optional[_builtins.str] = None,
445
446
  networkmonitor: Optional[_builtins.str] = None,
446
447
  notifications: Optional[_builtins.str] = None,
447
448
  notificationscontacts: Optional[_builtins.str] = None,
448
449
  oam: Optional[_builtins.str] = None,
450
+ observabilityadmin: Optional[_builtins.str] = None,
449
451
  odb: Optional[_builtins.str] = None,
450
452
  opensearch: Optional[_builtins.str] = None,
451
453
  opensearchingestion: Optional[_builtins.str] = None,
@@ -744,11 +746,13 @@ class Endpoints(dict):
744
746
  :param _builtins.str neptune: Use this to override the default service endpoint URL
745
747
  :param _builtins.str neptunegraph: Use this to override the default service endpoint URL
746
748
  :param _builtins.str networkfirewall: Use this to override the default service endpoint URL
749
+ :param _builtins.str networkflowmonitor: Use this to override the default service endpoint URL
747
750
  :param _builtins.str networkmanager: Use this to override the default service endpoint URL
748
751
  :param _builtins.str networkmonitor: Use this to override the default service endpoint URL
749
752
  :param _builtins.str notifications: Use this to override the default service endpoint URL
750
753
  :param _builtins.str notificationscontacts: Use this to override the default service endpoint URL
751
754
  :param _builtins.str oam: Use this to override the default service endpoint URL
755
+ :param _builtins.str observabilityadmin: Use this to override the default service endpoint URL
752
756
  :param _builtins.str odb: Use this to override the default service endpoint URL
753
757
  :param _builtins.str opensearch: Use this to override the default service endpoint URL
754
758
  :param _builtins.str opensearchingestion: Use this to override the default service endpoint URL
@@ -1246,6 +1250,8 @@ class Endpoints(dict):
1246
1250
  pulumi.set(__self__, "neptunegraph", neptunegraph)
1247
1251
  if networkfirewall is not None:
1248
1252
  pulumi.set(__self__, "networkfirewall", networkfirewall)
1253
+ if networkflowmonitor is not None:
1254
+ pulumi.set(__self__, "networkflowmonitor", networkflowmonitor)
1249
1255
  if networkmanager is not None:
1250
1256
  pulumi.set(__self__, "networkmanager", networkmanager)
1251
1257
  if networkmonitor is not None:
@@ -1256,6 +1262,8 @@ class Endpoints(dict):
1256
1262
  pulumi.set(__self__, "notificationscontacts", notificationscontacts)
1257
1263
  if oam is not None:
1258
1264
  pulumi.set(__self__, "oam", oam)
1265
+ if observabilityadmin is not None:
1266
+ pulumi.set(__self__, "observabilityadmin", observabilityadmin)
1259
1267
  if odb is not None:
1260
1268
  pulumi.set(__self__, "odb", odb)
1261
1269
  if opensearch is not None:
@@ -3045,6 +3053,14 @@ class Endpoints(dict):
3045
3053
  """
3046
3054
  return pulumi.get(self, "networkfirewall")
3047
3055
 
3056
+ @_builtins.property
3057
+ @pulumi.getter
3058
+ def networkflowmonitor(self) -> Optional[_builtins.str]:
3059
+ """
3060
+ Use this to override the default service endpoint URL
3061
+ """
3062
+ return pulumi.get(self, "networkflowmonitor")
3063
+
3048
3064
  @_builtins.property
3049
3065
  @pulumi.getter
3050
3066
  def networkmanager(self) -> Optional[_builtins.str]:
@@ -3085,6 +3101,14 @@ class Endpoints(dict):
3085
3101
  """
3086
3102
  return pulumi.get(self, "oam")
3087
3103
 
3104
+ @_builtins.property
3105
+ @pulumi.getter
3106
+ def observabilityadmin(self) -> Optional[_builtins.str]:
3107
+ """
3108
+ Use this to override the default service endpoint URL
3109
+ """
3110
+ return pulumi.get(self, "observabilityadmin")
3111
+
3088
3112
  @_builtins.property
3089
3113
  @pulumi.getter
3090
3114
  def odb(self) -> Optional[_builtins.str]:
@@ -39,6 +39,8 @@ class ClusterArgs:
39
39
  kms_key_id: Optional[pulumi.Input[_builtins.str]] = None,
40
40
  manage_master_user_password: Optional[pulumi.Input[_builtins.bool]] = None,
41
41
  master_password: Optional[pulumi.Input[_builtins.str]] = None,
42
+ master_password_wo: Optional[pulumi.Input[_builtins.str]] = None,
43
+ master_password_wo_version: Optional[pulumi.Input[_builtins.int]] = None,
42
44
  master_username: Optional[pulumi.Input[_builtins.str]] = None,
43
45
  port: Optional[pulumi.Input[_builtins.int]] = None,
44
46
  preferred_backup_window: Optional[pulumi.Input[_builtins.str]] = None,
@@ -80,6 +82,10 @@ class ClusterArgs:
80
82
  :param pulumi.Input[_builtins.bool] manage_master_user_password: Set to `true` to allow Amazon DocumentDB to manage the master user password in AWS Secrets Manager. Cannot be set if `master_password` or `master_password_wo` is provided.
81
83
  :param pulumi.Input[_builtins.str] master_password: Password for the master DB user. Note that this may
82
84
  show up in logs, and it will be stored in the state file. Please refer to the DocumentDB Naming Constraints. Conflicts with `master_password_wo` and `manage_master_user_password`.
85
+ :param pulumi.Input[_builtins.str] master_password_wo: **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
86
+ Password for the master DB user. Note that this may
87
+ show up in logs. Please refer to the DocumentDB Naming Constraints. Conflicts with `master_password` and `manage_master_user_password`.
88
+ :param pulumi.Input[_builtins.int] master_password_wo_version: Used together with `master_password_wo` to trigger an update. Increment this value when an update to the `master_password_wo` is required.
83
89
  :param pulumi.Input[_builtins.str] master_username: Username for the master DB user.
84
90
  :param pulumi.Input[_builtins.int] port: The port on which the DB accepts connections
85
91
  :param pulumi.Input[_builtins.str] preferred_backup_window: The daily time range during which automated backups are created if automated backups are enabled using the BackupRetentionPeriod parameter.Time in UTC
@@ -135,6 +141,10 @@ class ClusterArgs:
135
141
  pulumi.set(__self__, "manage_master_user_password", manage_master_user_password)
136
142
  if master_password is not None:
137
143
  pulumi.set(__self__, "master_password", master_password)
144
+ if master_password_wo is not None:
145
+ pulumi.set(__self__, "master_password_wo", master_password_wo)
146
+ if master_password_wo_version is not None:
147
+ pulumi.set(__self__, "master_password_wo_version", master_password_wo_version)
138
148
  if master_username is not None:
139
149
  pulumi.set(__self__, "master_username", master_username)
140
150
  if port is not None:
@@ -386,6 +396,32 @@ class ClusterArgs:
386
396
  def master_password(self, value: Optional[pulumi.Input[_builtins.str]]):
387
397
  pulumi.set(self, "master_password", value)
388
398
 
399
+ @_builtins.property
400
+ @pulumi.getter(name="masterPasswordWo")
401
+ def master_password_wo(self) -> Optional[pulumi.Input[_builtins.str]]:
402
+ """
403
+ **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
404
+ Password for the master DB user. Note that this may
405
+ show up in logs. Please refer to the DocumentDB Naming Constraints. Conflicts with `master_password` and `manage_master_user_password`.
406
+ """
407
+ return pulumi.get(self, "master_password_wo")
408
+
409
+ @master_password_wo.setter
410
+ def master_password_wo(self, value: Optional[pulumi.Input[_builtins.str]]):
411
+ pulumi.set(self, "master_password_wo", value)
412
+
413
+ @_builtins.property
414
+ @pulumi.getter(name="masterPasswordWoVersion")
415
+ def master_password_wo_version(self) -> Optional[pulumi.Input[_builtins.int]]:
416
+ """
417
+ Used together with `master_password_wo` to trigger an update. Increment this value when an update to the `master_password_wo` is required.
418
+ """
419
+ return pulumi.get(self, "master_password_wo_version")
420
+
421
+ @master_password_wo_version.setter
422
+ def master_password_wo_version(self, value: Optional[pulumi.Input[_builtins.int]]):
423
+ pulumi.set(self, "master_password_wo_version", value)
424
+
389
425
  @_builtins.property
390
426
  @pulumi.getter(name="masterUsername")
391
427
  def master_username(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -573,6 +609,8 @@ class _ClusterState:
573
609
  kms_key_id: Optional[pulumi.Input[_builtins.str]] = None,
574
610
  manage_master_user_password: Optional[pulumi.Input[_builtins.bool]] = None,
575
611
  master_password: Optional[pulumi.Input[_builtins.str]] = None,
612
+ master_password_wo: Optional[pulumi.Input[_builtins.str]] = None,
613
+ master_password_wo_version: Optional[pulumi.Input[_builtins.int]] = None,
576
614
  master_user_secrets: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterMasterUserSecretArgs']]]] = None,
577
615
  master_username: Optional[pulumi.Input[_builtins.str]] = None,
578
616
  port: Optional[pulumi.Input[_builtins.int]] = None,
@@ -621,6 +659,10 @@ class _ClusterState:
621
659
  :param pulumi.Input[_builtins.bool] manage_master_user_password: Set to `true` to allow Amazon DocumentDB to manage the master user password in AWS Secrets Manager. Cannot be set if `master_password` or `master_password_wo` is provided.
622
660
  :param pulumi.Input[_builtins.str] master_password: Password for the master DB user. Note that this may
623
661
  show up in logs, and it will be stored in the state file. Please refer to the DocumentDB Naming Constraints. Conflicts with `master_password_wo` and `manage_master_user_password`.
662
+ :param pulumi.Input[_builtins.str] master_password_wo: **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
663
+ Password for the master DB user. Note that this may
664
+ show up in logs. Please refer to the DocumentDB Naming Constraints. Conflicts with `master_password` and `manage_master_user_password`.
665
+ :param pulumi.Input[_builtins.int] master_password_wo_version: Used together with `master_password_wo` to trigger an update. Increment this value when an update to the `master_password_wo` is required.
624
666
  :param pulumi.Input[_builtins.str] master_username: Username for the master DB user.
625
667
  :param pulumi.Input[_builtins.int] port: The port on which the DB accepts connections
626
668
  :param pulumi.Input[_builtins.str] preferred_backup_window: The daily time range during which automated backups are created if automated backups are enabled using the BackupRetentionPeriod parameter.Time in UTC
@@ -686,6 +728,10 @@ class _ClusterState:
686
728
  pulumi.set(__self__, "manage_master_user_password", manage_master_user_password)
687
729
  if master_password is not None:
688
730
  pulumi.set(__self__, "master_password", master_password)
731
+ if master_password_wo is not None:
732
+ pulumi.set(__self__, "master_password_wo", master_password_wo)
733
+ if master_password_wo_version is not None:
734
+ pulumi.set(__self__, "master_password_wo_version", master_password_wo_version)
689
735
  if master_user_secrets is not None:
690
736
  pulumi.set(__self__, "master_user_secrets", master_user_secrets)
691
737
  if master_username is not None:
@@ -991,6 +1037,32 @@ class _ClusterState:
991
1037
  def master_password(self, value: Optional[pulumi.Input[_builtins.str]]):
992
1038
  pulumi.set(self, "master_password", value)
993
1039
 
1040
+ @_builtins.property
1041
+ @pulumi.getter(name="masterPasswordWo")
1042
+ def master_password_wo(self) -> Optional[pulumi.Input[_builtins.str]]:
1043
+ """
1044
+ **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
1045
+ Password for the master DB user. Note that this may
1046
+ show up in logs. Please refer to the DocumentDB Naming Constraints. Conflicts with `master_password` and `manage_master_user_password`.
1047
+ """
1048
+ return pulumi.get(self, "master_password_wo")
1049
+
1050
+ @master_password_wo.setter
1051
+ def master_password_wo(self, value: Optional[pulumi.Input[_builtins.str]]):
1052
+ pulumi.set(self, "master_password_wo", value)
1053
+
1054
+ @_builtins.property
1055
+ @pulumi.getter(name="masterPasswordWoVersion")
1056
+ def master_password_wo_version(self) -> Optional[pulumi.Input[_builtins.int]]:
1057
+ """
1058
+ Used together with `master_password_wo` to trigger an update. Increment this value when an update to the `master_password_wo` is required.
1059
+ """
1060
+ return pulumi.get(self, "master_password_wo_version")
1061
+
1062
+ @master_password_wo_version.setter
1063
+ def master_password_wo_version(self, value: Optional[pulumi.Input[_builtins.int]]):
1064
+ pulumi.set(self, "master_password_wo_version", value)
1065
+
994
1066
  @_builtins.property
995
1067
  @pulumi.getter(name="masterUserSecrets")
996
1068
  def master_user_secrets(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ClusterMasterUserSecretArgs']]]]:
@@ -1210,6 +1282,8 @@ class Cluster(pulumi.CustomResource):
1210
1282
  kms_key_id: Optional[pulumi.Input[_builtins.str]] = None,
1211
1283
  manage_master_user_password: Optional[pulumi.Input[_builtins.bool]] = None,
1212
1284
  master_password: Optional[pulumi.Input[_builtins.str]] = None,
1285
+ master_password_wo: Optional[pulumi.Input[_builtins.str]] = None,
1286
+ master_password_wo_version: Optional[pulumi.Input[_builtins.int]] = None,
1213
1287
  master_username: Optional[pulumi.Input[_builtins.str]] = None,
1214
1288
  port: Optional[pulumi.Input[_builtins.int]] = None,
1215
1289
  preferred_backup_window: Optional[pulumi.Input[_builtins.str]] = None,
@@ -1288,6 +1362,10 @@ class Cluster(pulumi.CustomResource):
1288
1362
  :param pulumi.Input[_builtins.bool] manage_master_user_password: Set to `true` to allow Amazon DocumentDB to manage the master user password in AWS Secrets Manager. Cannot be set if `master_password` or `master_password_wo` is provided.
1289
1363
  :param pulumi.Input[_builtins.str] master_password: Password for the master DB user. Note that this may
1290
1364
  show up in logs, and it will be stored in the state file. Please refer to the DocumentDB Naming Constraints. Conflicts with `master_password_wo` and `manage_master_user_password`.
1365
+ :param pulumi.Input[_builtins.str] master_password_wo: **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
1366
+ Password for the master DB user. Note that this may
1367
+ show up in logs. Please refer to the DocumentDB Naming Constraints. Conflicts with `master_password` and `manage_master_user_password`.
1368
+ :param pulumi.Input[_builtins.int] master_password_wo_version: Used together with `master_password_wo` to trigger an update. Increment this value when an update to the `master_password_wo` is required.
1291
1369
  :param pulumi.Input[_builtins.str] master_username: Username for the master DB user.
1292
1370
  :param pulumi.Input[_builtins.int] port: The port on which the DB accepts connections
1293
1371
  :param pulumi.Input[_builtins.str] preferred_backup_window: The daily time range during which automated backups are created if automated backups are enabled using the BackupRetentionPeriod parameter.Time in UTC
@@ -1382,6 +1460,8 @@ class Cluster(pulumi.CustomResource):
1382
1460
  kms_key_id: Optional[pulumi.Input[_builtins.str]] = None,
1383
1461
  manage_master_user_password: Optional[pulumi.Input[_builtins.bool]] = None,
1384
1462
  master_password: Optional[pulumi.Input[_builtins.str]] = None,
1463
+ master_password_wo: Optional[pulumi.Input[_builtins.str]] = None,
1464
+ master_password_wo_version: Optional[pulumi.Input[_builtins.int]] = None,
1385
1465
  master_username: Optional[pulumi.Input[_builtins.str]] = None,
1386
1466
  port: Optional[pulumi.Input[_builtins.int]] = None,
1387
1467
  preferred_backup_window: Optional[pulumi.Input[_builtins.str]] = None,
@@ -1422,6 +1502,8 @@ class Cluster(pulumi.CustomResource):
1422
1502
  __props__.__dict__["kms_key_id"] = kms_key_id
1423
1503
  __props__.__dict__["manage_master_user_password"] = manage_master_user_password
1424
1504
  __props__.__dict__["master_password"] = None if master_password is None else pulumi.Output.secret(master_password)
1505
+ __props__.__dict__["master_password_wo"] = None if master_password_wo is None else pulumi.Output.secret(master_password_wo)
1506
+ __props__.__dict__["master_password_wo_version"] = master_password_wo_version
1425
1507
  __props__.__dict__["master_username"] = master_username
1426
1508
  __props__.__dict__["port"] = port
1427
1509
  __props__.__dict__["preferred_backup_window"] = preferred_backup_window
@@ -1442,7 +1524,7 @@ class Cluster(pulumi.CustomResource):
1442
1524
  __props__.__dict__["master_user_secrets"] = None
1443
1525
  __props__.__dict__["reader_endpoint"] = None
1444
1526
  __props__.__dict__["tags_all"] = None
1445
- secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["masterPassword"])
1527
+ secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["masterPassword", "masterPasswordWo"])
1446
1528
  opts = pulumi.ResourceOptions.merge(opts, secret_opts)
1447
1529
  super(Cluster, __self__).__init__(
1448
1530
  'aws:docdb/cluster:Cluster',
@@ -1476,6 +1558,8 @@ class Cluster(pulumi.CustomResource):
1476
1558
  kms_key_id: Optional[pulumi.Input[_builtins.str]] = None,
1477
1559
  manage_master_user_password: Optional[pulumi.Input[_builtins.bool]] = None,
1478
1560
  master_password: Optional[pulumi.Input[_builtins.str]] = None,
1561
+ master_password_wo: Optional[pulumi.Input[_builtins.str]] = None,
1562
+ master_password_wo_version: Optional[pulumi.Input[_builtins.int]] = None,
1479
1563
  master_user_secrets: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ClusterMasterUserSecretArgs', 'ClusterMasterUserSecretArgsDict']]]]] = None,
1480
1564
  master_username: Optional[pulumi.Input[_builtins.str]] = None,
1481
1565
  port: Optional[pulumi.Input[_builtins.int]] = None,
@@ -1529,6 +1613,10 @@ class Cluster(pulumi.CustomResource):
1529
1613
  :param pulumi.Input[_builtins.bool] manage_master_user_password: Set to `true` to allow Amazon DocumentDB to manage the master user password in AWS Secrets Manager. Cannot be set if `master_password` or `master_password_wo` is provided.
1530
1614
  :param pulumi.Input[_builtins.str] master_password: Password for the master DB user. Note that this may
1531
1615
  show up in logs, and it will be stored in the state file. Please refer to the DocumentDB Naming Constraints. Conflicts with `master_password_wo` and `manage_master_user_password`.
1616
+ :param pulumi.Input[_builtins.str] master_password_wo: **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
1617
+ Password for the master DB user. Note that this may
1618
+ show up in logs. Please refer to the DocumentDB Naming Constraints. Conflicts with `master_password` and `manage_master_user_password`.
1619
+ :param pulumi.Input[_builtins.int] master_password_wo_version: Used together with `master_password_wo` to trigger an update. Increment this value when an update to the `master_password_wo` is required.
1532
1620
  :param pulumi.Input[_builtins.str] master_username: Username for the master DB user.
1533
1621
  :param pulumi.Input[_builtins.int] port: The port on which the DB accepts connections
1534
1622
  :param pulumi.Input[_builtins.str] preferred_backup_window: The daily time range during which automated backups are created if automated backups are enabled using the BackupRetentionPeriod parameter.Time in UTC
@@ -1576,6 +1664,8 @@ class Cluster(pulumi.CustomResource):
1576
1664
  __props__.__dict__["kms_key_id"] = kms_key_id
1577
1665
  __props__.__dict__["manage_master_user_password"] = manage_master_user_password
1578
1666
  __props__.__dict__["master_password"] = master_password
1667
+ __props__.__dict__["master_password_wo"] = master_password_wo
1668
+ __props__.__dict__["master_password_wo_version"] = master_password_wo_version
1579
1669
  __props__.__dict__["master_user_secrets"] = master_user_secrets
1580
1670
  __props__.__dict__["master_username"] = master_username
1581
1671
  __props__.__dict__["port"] = port
@@ -1778,6 +1868,24 @@ class Cluster(pulumi.CustomResource):
1778
1868
  """
1779
1869
  return pulumi.get(self, "master_password")
1780
1870
 
1871
+ @_builtins.property
1872
+ @pulumi.getter(name="masterPasswordWo")
1873
+ def master_password_wo(self) -> pulumi.Output[Optional[_builtins.str]]:
1874
+ """
1875
+ **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
1876
+ Password for the master DB user. Note that this may
1877
+ show up in logs. Please refer to the DocumentDB Naming Constraints. Conflicts with `master_password` and `manage_master_user_password`.
1878
+ """
1879
+ return pulumi.get(self, "master_password_wo")
1880
+
1881
+ @_builtins.property
1882
+ @pulumi.getter(name="masterPasswordWoVersion")
1883
+ def master_password_wo_version(self) -> pulumi.Output[Optional[_builtins.int]]:
1884
+ """
1885
+ Used together with `master_password_wo` to trigger an update. Increment this value when an update to the `master_password_wo` is required.
1886
+ """
1887
+ return pulumi.get(self, "master_password_wo_version")
1888
+
1781
1889
  @_builtins.property
1782
1890
  @pulumi.getter(name="masterUserSecrets")
1783
1891
  def master_user_secrets(self) -> pulumi.Output[Sequence['outputs.ClusterMasterUserSecret']]:
pulumi_aws/ec2/route.py CHANGED
@@ -622,6 +622,12 @@ class Route(pulumi.CustomResource):
622
622
  vpc_peering_connection_id: Optional[pulumi.Input[_builtins.str]] = None,
623
623
  __props__=None):
624
624
  """
625
+ Provides a resource to create a routing table entry (a route) in a VPC routing table.
626
+
627
+ > **NOTE on `gateway_id` attribute:** The AWS API is very forgiving with the resource ID passed in the `gateway_id` attribute. For example an `ec2.Route` resource can be created with an `ec2.NatGateway` or `ec2.EgressOnlyInternetGateway` ID specified for the `gateway_id` attribute. Specifying anything other than an `ec2.InternetGateway` or `ec2.VpnGateway` ID will lead to this provider reporting a permanent diff between your configuration and recorded state, as the AWS API returns the more-specific attribute. If you are experiencing constant diffs with an `ec2.Route` resource, the first thing to check is that the correct attribute is being specified.
628
+
629
+ > **NOTE on combining `vpc_endpoint_id` and `destination_prefix_list_id` attributes:** To associate a Gateway VPC Endpoint (such as S3) with destination prefix list, use the `ec2.VpcEndpointRouteTableAssociation` resource instead.
630
+
625
631
  ## Example Usage
626
632
 
627
633
  ```python
@@ -747,6 +753,12 @@ class Route(pulumi.CustomResource):
747
753
  args: RouteArgs,
748
754
  opts: Optional[pulumi.ResourceOptions] = None):
749
755
  """
756
+ Provides a resource to create a routing table entry (a route) in a VPC routing table.
757
+
758
+ > **NOTE on `gateway_id` attribute:** The AWS API is very forgiving with the resource ID passed in the `gateway_id` attribute. For example an `ec2.Route` resource can be created with an `ec2.NatGateway` or `ec2.EgressOnlyInternetGateway` ID specified for the `gateway_id` attribute. Specifying anything other than an `ec2.InternetGateway` or `ec2.VpnGateway` ID will lead to this provider reporting a permanent diff between your configuration and recorded state, as the AWS API returns the more-specific attribute. If you are experiencing constant diffs with an `ec2.Route` resource, the first thing to check is that the correct attribute is being specified.
759
+
760
+ > **NOTE on combining `vpc_endpoint_id` and `destination_prefix_list_id` attributes:** To associate a Gateway VPC Endpoint (such as S3) with destination prefix list, use the `ec2.VpcEndpointRouteTableAssociation` resource instead.
761
+
750
762
  ## Example Usage
751
763
 
752
764
  ```python
@@ -64,7 +64,7 @@ class TaskDefinitionArgs:
64
64
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
65
65
  :param pulumi.Input[_builtins.str] task_role_arn: ARN of IAM role that allows your Amazon ECS container task to make calls to other AWS services.
66
66
  :param pulumi.Input[_builtins.bool] track_latest: Whether should track latest `ACTIVE` task definition on AWS or the one created with the resource stored in state. Default is `false`. Useful in the event the task definition is modified outside of this resource.
67
- :param pulumi.Input[Sequence[pulumi.Input['TaskDefinitionVolumeArgs']]] volumes: Configuration block for volumes that containers in your task may use. Detailed below.
67
+ :param pulumi.Input[Sequence[pulumi.Input['TaskDefinitionVolumeArgs']]] volumes: Repeatable configuration block for volumes that containers in your task may use. Detailed below.
68
68
 
69
69
  > **NOTE:** Proper escaping is required for JSON field values containing quotes (`"`) such as `environment` values. If directly setting the JSON, they should be escaped as `\\"` in the JSON, e.g., `"value": "I \\"love\\" escaped quotes"`. If using a variable value, they should be escaped as `\\\\\\"` in the variable, e.g., `value = "I \\\\\\"love\\\\\\" escaped quotes"` in the variable and `"value": "${var.myvariable}"` in the JSON.
70
70
 
@@ -343,7 +343,7 @@ class TaskDefinitionArgs:
343
343
  @pulumi.getter
344
344
  def volumes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['TaskDefinitionVolumeArgs']]]]:
345
345
  """
346
- Configuration block for volumes that containers in your task may use. Detailed below.
346
+ Repeatable configuration block for volumes that containers in your task may use. Detailed below.
347
347
 
348
348
  > **NOTE:** Proper escaping is required for JSON field values containing quotes (`"`) such as `environment` values. If directly setting the JSON, they should be escaped as `\\"` in the JSON, e.g., `"value": "I \\"love\\" escaped quotes"`. If using a variable value, they should be escaped as `\\\\\\"` in the variable, e.g., `value = "I \\\\\\"love\\\\\\" escaped quotes"` in the variable and `"value": "${var.myvariable}"` in the JSON.
349
349
 
@@ -410,7 +410,7 @@ class _TaskDefinitionState:
410
410
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags_all: Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.
411
411
  :param pulumi.Input[_builtins.str] task_role_arn: ARN of IAM role that allows your Amazon ECS container task to make calls to other AWS services.
412
412
  :param pulumi.Input[_builtins.bool] track_latest: Whether should track latest `ACTIVE` task definition on AWS or the one created with the resource stored in state. Default is `false`. Useful in the event the task definition is modified outside of this resource.
413
- :param pulumi.Input[Sequence[pulumi.Input['TaskDefinitionVolumeArgs']]] volumes: Configuration block for volumes that containers in your task may use. Detailed below.
413
+ :param pulumi.Input[Sequence[pulumi.Input['TaskDefinitionVolumeArgs']]] volumes: Repeatable configuration block for volumes that containers in your task may use. Detailed below.
414
414
 
415
415
  > **NOTE:** Proper escaping is required for JSON field values containing quotes (`"`) such as `environment` values. If directly setting the JSON, they should be escaped as `\\"` in the JSON, e.g., `"value": "I \\"love\\" escaped quotes"`. If using a variable value, they should be escaped as `\\\\\\"` in the variable, e.g., `value = "I \\\\\\"love\\\\\\" escaped quotes"` in the variable and `"value": "${var.myvariable}"` in the JSON.
416
416
 
@@ -747,7 +747,7 @@ class _TaskDefinitionState:
747
747
  @pulumi.getter
748
748
  def volumes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['TaskDefinitionVolumeArgs']]]]:
749
749
  """
750
- Configuration block for volumes that containers in your task may use. Detailed below.
750
+ Repeatable configuration block for volumes that containers in your task may use. Detailed below.
751
751
 
752
752
  > **NOTE:** Proper escaping is required for JSON field values containing quotes (`"`) such as `environment` values. If directly setting the JSON, they should be escaped as `\\"` in the JSON, e.g., `"value": "I \\"love\\" escaped quotes"`. If using a variable value, they should be escaped as `\\\\\\"` in the variable, e.g., `value = "I \\\\\\"love\\\\\\" escaped quotes"` in the variable and `"value": "${var.myvariable}"` in the JSON.
753
753
 
@@ -1028,7 +1028,7 @@ class TaskDefinition(pulumi.CustomResource):
1028
1028
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
1029
1029
  :param pulumi.Input[_builtins.str] task_role_arn: ARN of IAM role that allows your Amazon ECS container task to make calls to other AWS services.
1030
1030
  :param pulumi.Input[_builtins.bool] track_latest: Whether should track latest `ACTIVE` task definition on AWS or the one created with the resource stored in state. Default is `false`. Useful in the event the task definition is modified outside of this resource.
1031
- :param pulumi.Input[Sequence[pulumi.Input[Union['TaskDefinitionVolumeArgs', 'TaskDefinitionVolumeArgsDict']]]] volumes: Configuration block for volumes that containers in your task may use. Detailed below.
1031
+ :param pulumi.Input[Sequence[pulumi.Input[Union['TaskDefinitionVolumeArgs', 'TaskDefinitionVolumeArgsDict']]]] volumes: Repeatable configuration block for volumes that containers in your task may use. Detailed below.
1032
1032
 
1033
1033
  > **NOTE:** Proper escaping is required for JSON field values containing quotes (`"`) such as `environment` values. If directly setting the JSON, they should be escaped as `\\"` in the JSON, e.g., `"value": "I \\"love\\" escaped quotes"`. If using a variable value, they should be escaped as `\\\\\\"` in the variable, e.g., `value = "I \\\\\\"love\\\\\\" escaped quotes"` in the variable and `"value": "${var.myvariable}"` in the JSON.
1034
1034
 
@@ -1396,7 +1396,7 @@ class TaskDefinition(pulumi.CustomResource):
1396
1396
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags_all: Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.
1397
1397
  :param pulumi.Input[_builtins.str] task_role_arn: ARN of IAM role that allows your Amazon ECS container task to make calls to other AWS services.
1398
1398
  :param pulumi.Input[_builtins.bool] track_latest: Whether should track latest `ACTIVE` task definition on AWS or the one created with the resource stored in state. Default is `false`. Useful in the event the task definition is modified outside of this resource.
1399
- :param pulumi.Input[Sequence[pulumi.Input[Union['TaskDefinitionVolumeArgs', 'TaskDefinitionVolumeArgsDict']]]] volumes: Configuration block for volumes that containers in your task may use. Detailed below.
1399
+ :param pulumi.Input[Sequence[pulumi.Input[Union['TaskDefinitionVolumeArgs', 'TaskDefinitionVolumeArgsDict']]]] volumes: Repeatable configuration block for volumes that containers in your task may use. Detailed below.
1400
1400
 
1401
1401
  > **NOTE:** Proper escaping is required for JSON field values containing quotes (`"`) such as `environment` values. If directly setting the JSON, they should be escaped as `\\"` in the JSON, e.g., `"value": "I \\"love\\" escaped quotes"`. If using a variable value, they should be escaped as `\\\\\\"` in the variable, e.g., `value = "I \\\\\\"love\\\\\\" escaped quotes"` in the variable and `"value": "${var.myvariable}"` in the JSON.
1402
1402
 
@@ -1622,7 +1622,7 @@ class TaskDefinition(pulumi.CustomResource):
1622
1622
  @pulumi.getter
1623
1623
  def volumes(self) -> pulumi.Output[Optional[Sequence['outputs.TaskDefinitionVolume']]]:
1624
1624
  """
1625
- Configuration block for volumes that containers in your task may use. Detailed below.
1625
+ Repeatable configuration block for volumes that containers in your task may use. Detailed below.
1626
1626
 
1627
1627
  > **NOTE:** Proper escaping is required for JSON field values containing quotes (`"`) such as `environment` values. If directly setting the JSON, they should be escaped as `\\"` in the JSON, e.g., `"value": "I \\"love\\" escaped quotes"`. If using a variable value, they should be escaped as `\\\\\\"` in the variable, e.g., `value = "I \\\\\\"love\\\\\\" escaped quotes"` in the variable and `"value": "${var.myvariable}"` in the JSON.
1628
1628
 
pulumi_aws/fis/_inputs.py CHANGED
@@ -241,7 +241,7 @@ if not MYPY:
241
241
  class ExperimentTemplateActionTargetArgsDict(TypedDict):
242
242
  key: pulumi.Input[_builtins.str]
243
243
  """
244
- Target type. Valid values are `AutoScalingGroups` (EC2 Auto Scaling groups), `Buckets` (S3 Buckets), `Cluster` (EKS Cluster), `Clusters` (ECS Clusters), `DBInstances` (RDS DB Instances), `Instances` (EC2 Instances), `ManagedResources` (EKS clusters, Application and Network Load Balancers, and EC2 Auto Scaling groups that are enabled for ARC zonal shift), `Nodegroups` (EKS Node groups), `Pods` (EKS Pods), `ReplicationGroups`(ElastiCache Redis Replication Groups), `Roles` (IAM Roles), `SpotInstances` (EC2 Spot Instances), `Subnets` (VPC Subnets), `Tables` (DynamoDB encrypted global tables), `Tasks` (ECS Tasks), `TransitGateways` (Transit gateways), `Volumes` (EBS Volumes). See the [documentation](https://docs.aws.amazon.com/fis/latest/userguide/actions.html#action-targets) for more details.
244
+ Target type. Valid values are `AutoScalingGroups` (EC2 Auto Scaling groups), `Buckets` (S3 Buckets), `Cluster` (EKS Cluster), `Clusters` (ECS Clusters), `DBInstances` (RDS DB Instances), `Instances` (EC2 Instances), `ManagedResources` (EKS clusters, Application and Network Load Balancers, and EC2 Auto Scaling groups that are enabled for ARC zonal shift), `Nodegroups` (EKS Node groups), `Pods` (EKS Pods), `ReplicationGroups`(ElastiCache Redis Replication Groups), `Roles` (IAM Roles), `SpotInstances` (EC2 Spot Instances), `Subnets` (VPC Subnets), `Tables` (DynamoDB encrypted global tables), `Tasks` (ECS Tasks), `TransitGateways` (Transit gateways), `Volumes` (EBS Volumes). See the [documentation](https://docs.aws.amazon.com/fis/latest/userguide/action-sequence.html#action-targets) for more details.
245
245
  """
246
246
  value: pulumi.Input[_builtins.str]
247
247
  """
@@ -256,7 +256,7 @@ class ExperimentTemplateActionTargetArgs:
256
256
  key: pulumi.Input[_builtins.str],
257
257
  value: pulumi.Input[_builtins.str]):
258
258
  """
259
- :param pulumi.Input[_builtins.str] key: Target type. Valid values are `AutoScalingGroups` (EC2 Auto Scaling groups), `Buckets` (S3 Buckets), `Cluster` (EKS Cluster), `Clusters` (ECS Clusters), `DBInstances` (RDS DB Instances), `Instances` (EC2 Instances), `ManagedResources` (EKS clusters, Application and Network Load Balancers, and EC2 Auto Scaling groups that are enabled for ARC zonal shift), `Nodegroups` (EKS Node groups), `Pods` (EKS Pods), `ReplicationGroups`(ElastiCache Redis Replication Groups), `Roles` (IAM Roles), `SpotInstances` (EC2 Spot Instances), `Subnets` (VPC Subnets), `Tables` (DynamoDB encrypted global tables), `Tasks` (ECS Tasks), `TransitGateways` (Transit gateways), `Volumes` (EBS Volumes). See the [documentation](https://docs.aws.amazon.com/fis/latest/userguide/actions.html#action-targets) for more details.
259
+ :param pulumi.Input[_builtins.str] key: Target type. Valid values are `AutoScalingGroups` (EC2 Auto Scaling groups), `Buckets` (S3 Buckets), `Cluster` (EKS Cluster), `Clusters` (ECS Clusters), `DBInstances` (RDS DB Instances), `Instances` (EC2 Instances), `ManagedResources` (EKS clusters, Application and Network Load Balancers, and EC2 Auto Scaling groups that are enabled for ARC zonal shift), `Nodegroups` (EKS Node groups), `Pods` (EKS Pods), `ReplicationGroups`(ElastiCache Redis Replication Groups), `Roles` (IAM Roles), `SpotInstances` (EC2 Spot Instances), `Subnets` (VPC Subnets), `Tables` (DynamoDB encrypted global tables), `Tasks` (ECS Tasks), `TransitGateways` (Transit gateways), `Volumes` (EBS Volumes). See the [documentation](https://docs.aws.amazon.com/fis/latest/userguide/action-sequence.html#action-targets) for more details.
260
260
  :param pulumi.Input[_builtins.str] value: Target name, referencing a corresponding target.
261
261
  """
262
262
  pulumi.set(__self__, "key", key)
@@ -266,7 +266,7 @@ class ExperimentTemplateActionTargetArgs:
266
266
  @pulumi.getter
267
267
  def key(self) -> pulumi.Input[_builtins.str]:
268
268
  """
269
- Target type. Valid values are `AutoScalingGroups` (EC2 Auto Scaling groups), `Buckets` (S3 Buckets), `Cluster` (EKS Cluster), `Clusters` (ECS Clusters), `DBInstances` (RDS DB Instances), `Instances` (EC2 Instances), `ManagedResources` (EKS clusters, Application and Network Load Balancers, and EC2 Auto Scaling groups that are enabled for ARC zonal shift), `Nodegroups` (EKS Node groups), `Pods` (EKS Pods), `ReplicationGroups`(ElastiCache Redis Replication Groups), `Roles` (IAM Roles), `SpotInstances` (EC2 Spot Instances), `Subnets` (VPC Subnets), `Tables` (DynamoDB encrypted global tables), `Tasks` (ECS Tasks), `TransitGateways` (Transit gateways), `Volumes` (EBS Volumes). See the [documentation](https://docs.aws.amazon.com/fis/latest/userguide/actions.html#action-targets) for more details.
269
+ Target type. Valid values are `AutoScalingGroups` (EC2 Auto Scaling groups), `Buckets` (S3 Buckets), `Cluster` (EKS Cluster), `Clusters` (ECS Clusters), `DBInstances` (RDS DB Instances), `Instances` (EC2 Instances), `ManagedResources` (EKS clusters, Application and Network Load Balancers, and EC2 Auto Scaling groups that are enabled for ARC zonal shift), `Nodegroups` (EKS Node groups), `Pods` (EKS Pods), `ReplicationGroups`(ElastiCache Redis Replication Groups), `Roles` (IAM Roles), `SpotInstances` (EC2 Spot Instances), `Subnets` (VPC Subnets), `Tables` (DynamoDB encrypted global tables), `Tasks` (ECS Tasks), `TransitGateways` (Transit gateways), `Volumes` (EBS Volumes). See the [documentation](https://docs.aws.amazon.com/fis/latest/userguide/action-sequence.html#action-targets) for more details.
270
270
  """
271
271
  return pulumi.get(self, "key")
272
272
 
pulumi_aws/fis/outputs.py CHANGED
@@ -169,7 +169,7 @@ class ExperimentTemplateActionTarget(dict):
169
169
  key: _builtins.str,
170
170
  value: _builtins.str):
171
171
  """
172
- :param _builtins.str key: Target type. Valid values are `AutoScalingGroups` (EC2 Auto Scaling groups), `Buckets` (S3 Buckets), `Cluster` (EKS Cluster), `Clusters` (ECS Clusters), `DBInstances` (RDS DB Instances), `Instances` (EC2 Instances), `ManagedResources` (EKS clusters, Application and Network Load Balancers, and EC2 Auto Scaling groups that are enabled for ARC zonal shift), `Nodegroups` (EKS Node groups), `Pods` (EKS Pods), `ReplicationGroups`(ElastiCache Redis Replication Groups), `Roles` (IAM Roles), `SpotInstances` (EC2 Spot Instances), `Subnets` (VPC Subnets), `Tables` (DynamoDB encrypted global tables), `Tasks` (ECS Tasks), `TransitGateways` (Transit gateways), `Volumes` (EBS Volumes). See the [documentation](https://docs.aws.amazon.com/fis/latest/userguide/actions.html#action-targets) for more details.
172
+ :param _builtins.str key: Target type. Valid values are `AutoScalingGroups` (EC2 Auto Scaling groups), `Buckets` (S3 Buckets), `Cluster` (EKS Cluster), `Clusters` (ECS Clusters), `DBInstances` (RDS DB Instances), `Instances` (EC2 Instances), `ManagedResources` (EKS clusters, Application and Network Load Balancers, and EC2 Auto Scaling groups that are enabled for ARC zonal shift), `Nodegroups` (EKS Node groups), `Pods` (EKS Pods), `ReplicationGroups`(ElastiCache Redis Replication Groups), `Roles` (IAM Roles), `SpotInstances` (EC2 Spot Instances), `Subnets` (VPC Subnets), `Tables` (DynamoDB encrypted global tables), `Tasks` (ECS Tasks), `TransitGateways` (Transit gateways), `Volumes` (EBS Volumes). See the [documentation](https://docs.aws.amazon.com/fis/latest/userguide/action-sequence.html#action-targets) for more details.
173
173
  :param _builtins.str value: Target name, referencing a corresponding target.
174
174
  """
175
175
  pulumi.set(__self__, "key", key)
@@ -179,7 +179,7 @@ class ExperimentTemplateActionTarget(dict):
179
179
  @pulumi.getter
180
180
  def key(self) -> _builtins.str:
181
181
  """
182
- Target type. Valid values are `AutoScalingGroups` (EC2 Auto Scaling groups), `Buckets` (S3 Buckets), `Cluster` (EKS Cluster), `Clusters` (ECS Clusters), `DBInstances` (RDS DB Instances), `Instances` (EC2 Instances), `ManagedResources` (EKS clusters, Application and Network Load Balancers, and EC2 Auto Scaling groups that are enabled for ARC zonal shift), `Nodegroups` (EKS Node groups), `Pods` (EKS Pods), `ReplicationGroups`(ElastiCache Redis Replication Groups), `Roles` (IAM Roles), `SpotInstances` (EC2 Spot Instances), `Subnets` (VPC Subnets), `Tables` (DynamoDB encrypted global tables), `Tasks` (ECS Tasks), `TransitGateways` (Transit gateways), `Volumes` (EBS Volumes). See the [documentation](https://docs.aws.amazon.com/fis/latest/userguide/actions.html#action-targets) for more details.
182
+ Target type. Valid values are `AutoScalingGroups` (EC2 Auto Scaling groups), `Buckets` (S3 Buckets), `Cluster` (EKS Cluster), `Clusters` (ECS Clusters), `DBInstances` (RDS DB Instances), `Instances` (EC2 Instances), `ManagedResources` (EKS clusters, Application and Network Load Balancers, and EC2 Auto Scaling groups that are enabled for ARC zonal shift), `Nodegroups` (EKS Node groups), `Pods` (EKS Pods), `ReplicationGroups`(ElastiCache Redis Replication Groups), `Roles` (IAM Roles), `SpotInstances` (EC2 Spot Instances), `Subnets` (VPC Subnets), `Tables` (DynamoDB encrypted global tables), `Tasks` (ECS Tasks), `TransitGateways` (Transit gateways), `Volumes` (EBS Volumes). See the [documentation](https://docs.aws.amazon.com/fis/latest/userguide/action-sequence.html#action-targets) for more details.
183
183
  """
184
184
  return pulumi.get(self, "key")
185
185
 
@@ -28,7 +28,7 @@ class KeyPolicyArgs:
28
28
  :param pulumi.Input[_builtins.str] key_id: The ID of the KMS Key to attach the policy.
29
29
  :param pulumi.Input[_builtins.str] policy: A valid policy JSON document. Although this is a key policy, not an IAM policy, an `iam_get_policy_document`, in the form that designates a principal, can be used. For more information about building policy documents, see the AWS IAM Policy Document Guide.
30
30
 
31
- > **NOTE:** Note: All KMS keys must have a key policy. If a key policy is not specified, or this resource is destroyed, AWS gives the KMS key a [default key policy](https://docs.aws.amazon.com/kms/latest/developerguide/key-policies.html#key-policy-default) that gives all principals in the owning account unlimited access to all KMS operations for the key. This default key policy effectively delegates all access control to IAM policies and KMS grants.
31
+ > **NOTE:** All KMS keys must have a key policy. If a key policy is not specified, or this resource is destroyed, AWS gives the KMS key a [default key policy](https://docs.aws.amazon.com/kms/latest/developerguide/key-policies.html#key-policy-default) that gives all principals in the owning account unlimited access to all KMS operations for the key. This default key policy effectively delegates all access control to IAM policies and KMS grants.
32
32
  :param pulumi.Input[_builtins.bool] bypass_policy_lockout_safety_check: A flag to indicate whether to bypass the key policy lockout safety check.
33
33
  Setting this value to true increases the risk that the KMS key becomes unmanageable. Do not set this value to true indiscriminately. If this value is set, and the resource is destroyed, a warning will be shown, and the resource will be removed from state.
34
34
  For more information, refer to the scenario in the [Default Key Policy](https://docs.aws.amazon.com/kms/latest/developerguide/key-policies.html#key-policy-default-allow-root-enable-iam) section in the _AWS Key Management Service Developer Guide_.
@@ -59,7 +59,7 @@ class KeyPolicyArgs:
59
59
  """
60
60
  A valid policy JSON document. Although this is a key policy, not an IAM policy, an `iam_get_policy_document`, in the form that designates a principal, can be used. For more information about building policy documents, see the AWS IAM Policy Document Guide.
61
61
 
62
- > **NOTE:** Note: All KMS keys must have a key policy. If a key policy is not specified, or this resource is destroyed, AWS gives the KMS key a [default key policy](https://docs.aws.amazon.com/kms/latest/developerguide/key-policies.html#key-policy-default) that gives all principals in the owning account unlimited access to all KMS operations for the key. This default key policy effectively delegates all access control to IAM policies and KMS grants.
62
+ > **NOTE:** All KMS keys must have a key policy. If a key policy is not specified, or this resource is destroyed, AWS gives the KMS key a [default key policy](https://docs.aws.amazon.com/kms/latest/developerguide/key-policies.html#key-policy-default) that gives all principals in the owning account unlimited access to all KMS operations for the key. This default key policy effectively delegates all access control to IAM policies and KMS grants.
63
63
  """
64
64
  return pulumi.get(self, "policy")
65
65
 
@@ -109,7 +109,7 @@ class _KeyPolicyState:
109
109
  :param pulumi.Input[_builtins.str] key_id: The ID of the KMS Key to attach the policy.
110
110
  :param pulumi.Input[_builtins.str] policy: A valid policy JSON document. Although this is a key policy, not an IAM policy, an `iam_get_policy_document`, in the form that designates a principal, can be used. For more information about building policy documents, see the AWS IAM Policy Document Guide.
111
111
 
112
- > **NOTE:** Note: All KMS keys must have a key policy. If a key policy is not specified, or this resource is destroyed, AWS gives the KMS key a [default key policy](https://docs.aws.amazon.com/kms/latest/developerguide/key-policies.html#key-policy-default) that gives all principals in the owning account unlimited access to all KMS operations for the key. This default key policy effectively delegates all access control to IAM policies and KMS grants.
112
+ > **NOTE:** All KMS keys must have a key policy. If a key policy is not specified, or this resource is destroyed, AWS gives the KMS key a [default key policy](https://docs.aws.amazon.com/kms/latest/developerguide/key-policies.html#key-policy-default) that gives all principals in the owning account unlimited access to all KMS operations for the key. This default key policy effectively delegates all access control to IAM policies and KMS grants.
113
113
  :param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
114
114
  """
115
115
  if bypass_policy_lockout_safety_check is not None:
@@ -153,7 +153,7 @@ class _KeyPolicyState:
153
153
  """
154
154
  A valid policy JSON document. Although this is a key policy, not an IAM policy, an `iam_get_policy_document`, in the form that designates a principal, can be used. For more information about building policy documents, see the AWS IAM Policy Document Guide.
155
155
 
156
- > **NOTE:** Note: All KMS keys must have a key policy. If a key policy is not specified, or this resource is destroyed, AWS gives the KMS key a [default key policy](https://docs.aws.amazon.com/kms/latest/developerguide/key-policies.html#key-policy-default) that gives all principals in the owning account unlimited access to all KMS operations for the key. This default key policy effectively delegates all access control to IAM policies and KMS grants.
156
+ > **NOTE:** All KMS keys must have a key policy. If a key policy is not specified, or this resource is destroyed, AWS gives the KMS key a [default key policy](https://docs.aws.amazon.com/kms/latest/developerguide/key-policies.html#key-policy-default) that gives all principals in the owning account unlimited access to all KMS operations for the key. This default key policy effectively delegates all access control to IAM policies and KMS grants.
157
157
  """
158
158
  return pulumi.get(self, "policy")
159
159
 
@@ -229,7 +229,7 @@ class KeyPolicy(pulumi.CustomResource):
229
229
  :param pulumi.Input[_builtins.str] key_id: The ID of the KMS Key to attach the policy.
230
230
  :param pulumi.Input[_builtins.str] policy: A valid policy JSON document. Although this is a key policy, not an IAM policy, an `iam_get_policy_document`, in the form that designates a principal, can be used. For more information about building policy documents, see the AWS IAM Policy Document Guide.
231
231
 
232
- > **NOTE:** Note: All KMS keys must have a key policy. If a key policy is not specified, or this resource is destroyed, AWS gives the KMS key a [default key policy](https://docs.aws.amazon.com/kms/latest/developerguide/key-policies.html#key-policy-default) that gives all principals in the owning account unlimited access to all KMS operations for the key. This default key policy effectively delegates all access control to IAM policies and KMS grants.
232
+ > **NOTE:** All KMS keys must have a key policy. If a key policy is not specified, or this resource is destroyed, AWS gives the KMS key a [default key policy](https://docs.aws.amazon.com/kms/latest/developerguide/key-policies.html#key-policy-default) that gives all principals in the owning account unlimited access to all KMS operations for the key. This default key policy effectively delegates all access control to IAM policies and KMS grants.
233
233
  :param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
234
234
  """
235
235
  ...
@@ -337,7 +337,7 @@ class KeyPolicy(pulumi.CustomResource):
337
337
  :param pulumi.Input[_builtins.str] key_id: The ID of the KMS Key to attach the policy.
338
338
  :param pulumi.Input[_builtins.str] policy: A valid policy JSON document. Although this is a key policy, not an IAM policy, an `iam_get_policy_document`, in the form that designates a principal, can be used. For more information about building policy documents, see the AWS IAM Policy Document Guide.
339
339
 
340
- > **NOTE:** Note: All KMS keys must have a key policy. If a key policy is not specified, or this resource is destroyed, AWS gives the KMS key a [default key policy](https://docs.aws.amazon.com/kms/latest/developerguide/key-policies.html#key-policy-default) that gives all principals in the owning account unlimited access to all KMS operations for the key. This default key policy effectively delegates all access control to IAM policies and KMS grants.
340
+ > **NOTE:** All KMS keys must have a key policy. If a key policy is not specified, or this resource is destroyed, AWS gives the KMS key a [default key policy](https://docs.aws.amazon.com/kms/latest/developerguide/key-policies.html#key-policy-default) that gives all principals in the owning account unlimited access to all KMS operations for the key. This default key policy effectively delegates all access control to IAM policies and KMS grants.
341
341
  :param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
342
342
  """
343
343
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -374,7 +374,7 @@ class KeyPolicy(pulumi.CustomResource):
374
374
  """
375
375
  A valid policy JSON document. Although this is a key policy, not an IAM policy, an `iam_get_policy_document`, in the form that designates a principal, can be used. For more information about building policy documents, see the AWS IAM Policy Document Guide.
376
376
 
377
- > **NOTE:** Note: All KMS keys must have a key policy. If a key policy is not specified, or this resource is destroyed, AWS gives the KMS key a [default key policy](https://docs.aws.amazon.com/kms/latest/developerguide/key-policies.html#key-policy-default) that gives all principals in the owning account unlimited access to all KMS operations for the key. This default key policy effectively delegates all access control to IAM policies and KMS grants.
377
+ > **NOTE:** All KMS keys must have a key policy. If a key policy is not specified, or this resource is destroyed, AWS gives the KMS key a [default key policy](https://docs.aws.amazon.com/kms/latest/developerguide/key-policies.html#key-policy-default) that gives all principals in the owning account unlimited access to all KMS operations for the key. This default key policy effectively delegates all access control to IAM policies and KMS grants.
378
378
  """
379
379
  return pulumi.get(self, "policy")
380
380