AWS.Tools.S3Control.XML
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 |
<?xml version="1.0"?>
<doc> <assembly> <name>AWS.Tools.S3Control</name> </assembly> <members> <member name="T:Amazon.PowerShell.Cmdlets.S3C.AddS3CJobTaggingCmdlet"> <summary> Set the supplied tag-set on an Amazon S3 Batch Operations job. <para> A tag is a key-value pair. You can associate Amazon S3 Batch Operations tags with any job by sending a PUT request against the tagging subresource that is associated with the job. To modify the existing tag set, you can either replace the existing tag set entirely, or make changes within the existing tag set by retrieving the existing tag set using <a>GetJobTagging</a>, modify that tag set, and use this API action to replace the tag set with the one you have modified.. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/batch-ops-managing-jobs.html#batch-ops-job-tags">Using Job Tags</a> in the Amazon Simple Storage Service Developer Guide. </para><note><ul><li><para> If you send this request with an empty tag set, Amazon S3 deletes the existing tag set on the Batch Operations job. If you use this method, you will be charged for a Tier 1 Request (PUT). For more information, see <a href="http://aws.amazon.com/s3/pricing/">Amazon S3 pricing</a>. </para></li><li><para> For deleting existing tags for your batch operations job, <a>DeleteJobTagging</a> request is preferred because it achieves the same result without incurring charges. </para></li><li><para> A few things to consider about using tags: </para><ul><li><para> Amazon S3 limits the maximum number of tags to 50 tags per job. </para></li><li><para> You can associate up to 50 tags with a job as long as they have unique tag keys. </para></li><li><para> A tag key can be up to 128 Unicode characters in length, and tag values can be up to 256 Unicode characters in length. </para></li><li><para> The key and values are case sensitive. </para></li><li><para> For tagging-related restrictions related to characters and encodings, see <a href="https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/allocation-tag-restrictions.html">User-Defined Tag Restrictions</a>. </para></li></ul></li></ul></note><para> To use this operation, you must have permission to perform the <code>s3:PutJobTagging</code> action. </para><para> Related actions include: </para><ul><li><para><a>CreateJob</a></para></li><li><para><a>GetJobTagging</a></para></li><li><para><a>DeleteJobTagging</a></para></li></ul> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.AddS3CJobTaggingCmdlet.AccountId"> <summary> <para> <para>The AWS account ID associated with the Amazon S3 Batch Operations job.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.AddS3CJobTaggingCmdlet.JobId"> <summary> <para> <para>The ID for the Amazon S3 Batch Operations job whose tags you want to replace.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.AddS3CJobTaggingCmdlet.Tag"> <summary> <para> <para>The set of tags to associate with the Amazon S3 Batch Operations job.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.AddS3CJobTaggingCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The cmdlet doesn't have a return value by default. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.S3Control.Model.PutJobTaggingResponse). Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.AddS3CJobTaggingCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the JobId parameter. The -PassThru parameter is deprecated, use -Select '^JobId' instead. This parameter will be removed in a future version. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.AddS3CJobTaggingCmdlet.Force"> <summary> This parameter overrides confirmation prompts to force the cmdlet to continue its operation. This parameter should always be used with caution. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.S3C.AddS3CPublicAccessBlockCmdlet"> <summary> Creates or modifies the <code>PublicAccessBlock</code> configuration for an Amazon Web Services account. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.AddS3CPublicAccessBlockCmdlet.AccountId"> <summary> <para> <para>The account ID for the Amazon Web Services account whose <code>PublicAccessBlock</code> configuration you want to set.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.AddS3CPublicAccessBlockCmdlet.PublicAccessBlockConfiguration_BlockPublicAcl"> <summary> <para> <para>Specifies whether Amazon S3 should block public access control lists (ACLs) for buckets in this account. Setting this element to <code>TRUE</code> causes the following behavior:</para><ul><li><para>PUT Bucket acl and PUT Object acl calls fail if the specified ACL is public.</para></li><li><para>PUT Object calls fail if the request includes a public ACL.</para></li><li><para>PUT Bucket calls fail if the request includes a public ACL.</para></li></ul><para>Enabling this setting doesn't affect existing policies or ACLs.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.AddS3CPublicAccessBlockCmdlet.PublicAccessBlockConfiguration_BlockPublicPolicy"> <summary> <para> <para>Specifies whether Amazon S3 should block public bucket policies for buckets in this account. Setting this element to <code>TRUE</code> causes Amazon S3 to reject calls to PUT Bucket policy if the specified bucket policy allows public access. </para><para>Enabling this setting doesn't affect existing bucket policies.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.AddS3CPublicAccessBlockCmdlet.PublicAccessBlockConfiguration_IgnorePublicAcl"> <summary> <para> <para>Specifies whether Amazon S3 should ignore public ACLs for buckets in this account. Setting this element to <code>TRUE</code> causes Amazon S3 to ignore all public ACLs on buckets in this account and any objects that they contain. </para><para>Enabling this setting doesn't affect the persistence of any existing ACLs and doesn't prevent new public ACLs from being set.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.AddS3CPublicAccessBlockCmdlet.PublicAccessBlockConfiguration_RestrictPublicBucket"> <summary> <para> <para>Specifies whether Amazon S3 should restrict public bucket policies for buckets in this account. Setting this element to <code>TRUE</code> restricts access to buckets with public policies to only AWS services and authorized users within this account.</para><para>Enabling this setting doesn't affect previously stored bucket policies, except that public and cross-account access within any public bucket policy, including non-public delegation to specific accounts, is blocked.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.AddS3CPublicAccessBlockCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The cmdlet doesn't have a return value by default. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.S3Control.Model.PutPublicAccessBlockResponse). Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.AddS3CPublicAccessBlockCmdlet.Force"> <summary> This parameter overrides confirmation prompts to force the cmdlet to continue its operation. This parameter should always be used with caution. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.S3C.GetS3CAccessPointCmdlet"> <summary> Returns configuration information about the specified access point. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.GetS3CAccessPointCmdlet.AccountId"> <summary> <para> <para>The account ID for the account that owns the specified access point.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.GetS3CAccessPointCmdlet.Name"> <summary> <para> <para>The name of the access point whose configuration information you want to retrieve.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.GetS3CAccessPointCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The default value is '*'. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.S3Control.Model.GetAccessPointResponse). Specifying the name of a property of type Amazon.S3Control.Model.GetAccessPointResponse will result in that property being returned. Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.GetS3CAccessPointCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the Name parameter. The -PassThru parameter is deprecated, use -Select '^Name' instead. This parameter will be removed in a future version. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.S3C.GetS3CAccessPointListCmdlet"> <summary> Returns a list of the access points currently associated with the specified bucket. You can retrieve up to 1000 access points per call. If the specified bucket has more than 1,000 access points (or the number specified in <code>maxResults</code>, whichever is less), the response will include a continuation token that you can use to list the additional access points. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.GetS3CAccessPointListCmdlet.AccountId"> <summary> <para> <para>The AWS account ID for owner of the bucket whose access points you want to list.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.GetS3CAccessPointListCmdlet.Bucket"> <summary> <para> <para>The name of the bucket whose associated access points you want to list.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.GetS3CAccessPointListCmdlet.MaxResult"> <summary> <para> <para>The maximum number of access points that you want to include in the list. If the specified bucket has more than this number of access points, then the response will include a continuation token in the <code>NextToken</code> field that you can use to retrieve the next page of access points.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.GetS3CAccessPointListCmdlet.NextToken"> <summary> <para> <para>A continuation token. If a previous call to <code>ListAccessPoints</code> returned a continuation token in the <code>NextToken</code> field, then providing that value here causes Amazon S3 to retrieve the next page of results.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.GetS3CAccessPointListCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The default value is 'AccessPointList'. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.S3Control.Model.ListAccessPointsResponse). Specifying the name of a property of type Amazon.S3Control.Model.ListAccessPointsResponse will result in that property being returned. Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.GetS3CAccessPointListCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the AccountId parameter. The -PassThru parameter is deprecated, use -Select '^AccountId' instead. This parameter will be removed in a future version. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.S3C.GetS3CAccessPointPolicyCmdlet"> <summary> Returns the access point policy associated with the specified access point. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.GetS3CAccessPointPolicyCmdlet.AccountId"> <summary> <para> <para>The account ID for the account that owns the specified access point.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.GetS3CAccessPointPolicyCmdlet.Name"> <summary> <para> <para>The name of the access point whose policy you want to retrieve.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.GetS3CAccessPointPolicyCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The default value is 'Policy'. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.S3Control.Model.GetAccessPointPolicyResponse). Specifying the name of a property of type Amazon.S3Control.Model.GetAccessPointPolicyResponse will result in that property being returned. Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.GetS3CAccessPointPolicyCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the Name parameter. The -PassThru parameter is deprecated, use -Select '^Name' instead. This parameter will be removed in a future version. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.S3C.GetS3CAccessPointPolicyStatusCmdlet"> <summary> Indicates whether the specified access point currently has a policy that allows public access. For more information about public access through access points, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/access-points.html">Managing Data Access with Amazon S3 Access Points</a> in the <i>Amazon Simple Storage Service Developer Guide</i>. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.GetS3CAccessPointPolicyStatusCmdlet.AccountId"> <summary> <para> <para>The account ID for the account that owns the specified access point.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.GetS3CAccessPointPolicyStatusCmdlet.Name"> <summary> <para> <para>The name of the access point whose policy status you want to retrieve.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.GetS3CAccessPointPolicyStatusCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The default value is 'PolicyStatus'. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.S3Control.Model.GetAccessPointPolicyStatusResponse). Specifying the name of a property of type Amazon.S3Control.Model.GetAccessPointPolicyStatusResponse will result in that property being returned. Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.GetS3CAccessPointPolicyStatusCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the Name parameter. The -PassThru parameter is deprecated, use -Select '^Name' instead. This parameter will be removed in a future version. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.S3C.GetS3CJobCmdlet"> <summary> Retrieves the configuration parameters and status for a Batch Operations job. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/batch-ops-basics.html">Amazon S3 Batch Operations</a> in the Amazon Simple Storage Service Developer Guide. <para> Related actions include: </para><ul><li><para><a>CreateJob</a></para></li><li><para><a>ListJobs</a></para></li><li><para><a>UpdateJobPriority</a></para></li><li><para><a>UpdateJobStatus</a></para></li></ul> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.GetS3CJobCmdlet.AccountId"> <summary> <para> The service has not provided documentation for this parameter; please refer to the service's API reference documentation for the latest available information. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.GetS3CJobCmdlet.JobId"> <summary> <para> <para>The ID for the job whose information you want to retrieve.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.GetS3CJobCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The default value is 'Job'. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.S3Control.Model.DescribeJobResponse). Specifying the name of a property of type Amazon.S3Control.Model.DescribeJobResponse will result in that property being returned. Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.GetS3CJobCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the JobId parameter. The -PassThru parameter is deprecated, use -Select '^JobId' instead. This parameter will be removed in a future version. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.S3C.GetS3CJobListCmdlet"> <summary> Lists current Amazon S3 Batch Operations jobs and jobs that have ended within the last 30 days for the AWS account making the request. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/batch-ops-basics.html">Amazon S3 Batch Operations</a> in the <i>Amazon Simple Storage Service Developer Guide</i>. <para> Related actions include: </para><ul><li><para><a>CreateJob</a></para></li><li><para><a>DescribeJob</a></para></li><li><para><a>UpdateJobPriority</a></para></li><li><para><a>UpdateJobStatus</a></para></li></ul> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.GetS3CJobListCmdlet.AccountId"> <summary> <para> The service has not provided documentation for this parameter; please refer to the service's API reference documentation for the latest available information. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.GetS3CJobListCmdlet.JobStatus"> <summary> <para> <para>The <code>List Jobs</code> request returns jobs that match the statuses listed in this element.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.GetS3CJobListCmdlet.MaxResult"> <summary> <para> <para>The maximum number of jobs that Amazon S3 will include in the <code>List Jobs</code> response. If there are more jobs than this number, the response will include a pagination token in the <code>NextToken</code> field to enable you to retrieve the next page of results.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.GetS3CJobListCmdlet.NextToken"> <summary> <para> <para>A pagination token to request the next page of results. Use the token that Amazon S3 returned in the <code>NextToken</code> element of the <code>ListJobsResult</code> from the previous <code>List Jobs</code> request.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.GetS3CJobListCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The default value is 'Jobs'. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.S3Control.Model.ListJobsResponse). Specifying the name of a property of type Amazon.S3Control.Model.ListJobsResponse will result in that property being returned. Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.GetS3CJobListCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the AccountId parameter. The -PassThru parameter is deprecated, use -Select '^AccountId' instead. This parameter will be removed in a future version. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.S3C.GetS3CJobTaggingCmdlet"> <summary> Returns the tags on an Amazon S3 Batch Operations job. To use this operation, you must have permission to perform the <code>s3:GetJobTagging</code> action. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/batch-ops-managing-jobs.html#batch-ops-job-tags">Using Job Tags</a> in the <i>Amazon Simple Storage Service Developer Guide</i>. <para> Related actions include: </para><ul><li><para><a>CreateJob</a></para></li><li><para><a>PutJobTagging</a></para></li><li><para><a>DeleteJobTagging</a></para></li></ul> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.GetS3CJobTaggingCmdlet.AccountId"> <summary> <para> <para>The AWS account ID associated with the Amazon S3 Batch Operations job.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.GetS3CJobTaggingCmdlet.JobId"> <summary> <para> <para>The ID for the Amazon S3 Batch Operations job whose tags you want to retrieve.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.GetS3CJobTaggingCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The default value is 'Tags'. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.S3Control.Model.GetJobTaggingResponse). Specifying the name of a property of type Amazon.S3Control.Model.GetJobTaggingResponse will result in that property being returned. Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.GetS3CJobTaggingCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the JobId parameter. The -PassThru parameter is deprecated, use -Select '^JobId' instead. This parameter will be removed in a future version. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.S3C.GetS3CPublicAccessBlockCmdlet"> <summary> Retrieves the <code>PublicAccessBlock</code> configuration for an Amazon Web Services account. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.GetS3CPublicAccessBlockCmdlet.AccountId"> <summary> <para> <para>The account ID for the Amazon Web Services account whose <code>PublicAccessBlock</code> configuration you want to retrieve.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.GetS3CPublicAccessBlockCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The default value is 'PublicAccessBlockConfiguration'. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.S3Control.Model.GetPublicAccessBlockResponse). Specifying the name of a property of type Amazon.S3Control.Model.GetPublicAccessBlockResponse will result in that property being returned. Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.GetS3CPublicAccessBlockCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the AccountId parameter. The -PassThru parameter is deprecated, use -Select '^AccountId' instead. This parameter will be removed in a future version. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.S3C.NewS3CAccessPointCmdlet"> <summary> Creates an access point and associates it with the specified bucket. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CAccessPointCmdlet.AccountId"> <summary> <para> <para>The AWS account ID for the owner of the bucket for which you want to create an access point.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CAccessPointCmdlet.PublicAccessBlockConfiguration_BlockPublicAcl"> <summary> <para> <para>Specifies whether Amazon S3 should block public access control lists (ACLs) for buckets in this account. Setting this element to <code>TRUE</code> causes the following behavior:</para><ul><li><para>PUT Bucket acl and PUT Object acl calls fail if the specified ACL is public.</para></li><li><para>PUT Object calls fail if the request includes a public ACL.</para></li><li><para>PUT Bucket calls fail if the request includes a public ACL.</para></li></ul><para>Enabling this setting doesn't affect existing policies or ACLs.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CAccessPointCmdlet.PublicAccessBlockConfiguration_BlockPublicPolicy"> <summary> <para> <para>Specifies whether Amazon S3 should block public bucket policies for buckets in this account. Setting this element to <code>TRUE</code> causes Amazon S3 to reject calls to PUT Bucket policy if the specified bucket policy allows public access. </para><para>Enabling this setting doesn't affect existing bucket policies.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CAccessPointCmdlet.Bucket"> <summary> <para> <para>The name of the bucket that you want to associate this access point with.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CAccessPointCmdlet.PublicAccessBlockConfiguration_IgnorePublicAcl"> <summary> <para> <para>Specifies whether Amazon S3 should ignore public ACLs for buckets in this account. Setting this element to <code>TRUE</code> causes Amazon S3 to ignore all public ACLs on buckets in this account and any objects that they contain. </para><para>Enabling this setting doesn't affect the persistence of any existing ACLs and doesn't prevent new public ACLs from being set.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CAccessPointCmdlet.Name"> <summary> <para> <para>The name you want to assign to this access point.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CAccessPointCmdlet.PublicAccessBlockConfiguration_RestrictPublicBucket"> <summary> <para> <para>Specifies whether Amazon S3 should restrict public bucket policies for buckets in this account. Setting this element to <code>TRUE</code> restricts access to buckets with public policies to only AWS services and authorized users within this account.</para><para>Enabling this setting doesn't affect previously stored bucket policies, except that public and cross-account access within any public bucket policy, including non-public delegation to specific accounts, is blocked.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CAccessPointCmdlet.VpcConfiguration_VpcId"> <summary> <para> <para>If this field is specified, this access point will only allow connections from the specified VPC ID.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CAccessPointCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The cmdlet doesn't have a return value by default. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.S3Control.Model.CreateAccessPointResponse). Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CAccessPointCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the Bucket parameter. The -PassThru parameter is deprecated, use -Select '^Bucket' instead. This parameter will be removed in a future version. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CAccessPointCmdlet.Force"> <summary> This parameter overrides confirmation prompts to force the cmdlet to continue its operation. This parameter should always be used with caution. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet"> <summary> You can use Amazon S3 Batch Operations to perform large-scale Batch Operations on Amazon S3 objects. Amazon S3 Batch Operations can execute a single operation or action on lists of Amazon S3 objects that you specify. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/batch-ops-basics.html">Amazon S3 Batch Operations</a> in the Amazon Simple Storage Service Developer Guide. <para> Related actions include: </para><ul><li><para><a>DescribeJob</a></para></li><li><para><a>ListJobs</a></para></li><li><para><a>UpdateJobPriority</a></para></li><li><para><a>UpdateJobStatus</a></para></li></ul> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.S3PutObjectCopy_AccessControlGrant"> <summary> <para> The service has not provided documentation for this parameter; please refer to the service's API reference documentation for the latest available information. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.AccountId"> <summary> <para> The service has not provided documentation for this parameter; please refer to the service's API reference documentation for the latest available information. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.Report_Bucket"> <summary> <para> <para>The Amazon Resource Name (ARN) for the bucket where specified job-completion report will be stored.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.S3PutObjectRetention_BypassGovernanceRetention"> <summary> <para> <para>Indicates if the operation should be applied to objects in the Batch Operations job even if they have Governance-type Object Lock in place.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.NewObjectMetadata_CacheControl"> <summary> <para> The service has not provided documentation for this parameter; please refer to the service's API reference documentation for the latest available information. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.AccessControlPolicy_CannedAccessControlList"> <summary> <para> The service has not provided documentation for this parameter; please refer to the service's API reference documentation for the latest available information. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.S3PutObjectCopy_CannedAccessControlList"> <summary> <para> The service has not provided documentation for this parameter; please refer to the service's API reference documentation for the latest available information. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.ClientRequestToken"> <summary> <para> <para>An idempotency token to ensure that you don't accidentally submit the same request twice. You can use any string up to the maximum length.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.ConfirmationRequired"> <summary> <para> <para>Indicates whether confirmation is required before Amazon S3 runs the job. Confirmation is only required for jobs created through the Amazon S3 console.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.NewObjectMetadata_ContentDisposition"> <summary> <para> The service has not provided documentation for this parameter; please refer to the service's API reference documentation for the latest available information. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.NewObjectMetadata_ContentEncoding"> <summary> <para> The service has not provided documentation for this parameter; please refer to the service's API reference documentation for the latest available information. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.NewObjectMetadata_ContentLanguage"> <summary> <para> The service has not provided documentation for this parameter; please refer to the service's API reference documentation for the latest available information. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.NewObjectMetadata_ContentLength"> <summary> <para> The service has not provided documentation for this parameter; please refer to the service's API reference documentation for the latest available information. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.NewObjectMetadata_ContentMD5"> <summary> <para> The service has not provided documentation for this parameter; please refer to the service's API reference documentation for the latest available information. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.NewObjectMetadata_ContentType"> <summary> <para> The service has not provided documentation for this parameter; please refer to the service's API reference documentation for the latest available information. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.Description"> <summary> <para> <para>A description for this job. You can use any string within the permitted length. Descriptions don't need to be unique and can be used for multiple jobs.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.Owner_DisplayName"> <summary> <para> The service has not provided documentation for this parameter; please refer to the service's API reference documentation for the latest available information. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.Report_Enabled"> <summary> <para> <para>Indicates whether the specified job will generate a job-completion report.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.Location_ETag"> <summary> <para> <para>The ETag for the specified manifest object.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.S3InitiateRestoreObject_ExpirationInDay"> <summary> <para> The service has not provided documentation for this parameter; please refer to the service's API reference documentation for the latest available information. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.Spec_Field"> <summary> <para> <para>If the specified manifest object is in the <code>S3BatchOperations_CSV_20180820</code> format, this element describes which columns contain the required data.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.Spec_Format"> <summary> <para> <para>Indicates which of the available formats the specified manifest uses.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.Report_Format"> <summary> <para> <para>The format of the specified job-completion report.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.LambdaInvoke_FunctionArn"> <summary> <para> <para>The Amazon Resource Name (ARN) for the AWS Lambda function that the specified job will invoke for each object in the manifest.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.S3InitiateRestoreObject_GlacierJobTier"> <summary> <para> The service has not provided documentation for this parameter; please refer to the service's API reference documentation for the latest available information. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.AccessControlList_Grant"> <summary> <para> The service has not provided documentation for this parameter; please refer to the service's API reference documentation for the latest available information. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.NewObjectMetadata_HttpExpiresDate"> <summary> <para> The service has not provided documentation for this parameter; please refer to the service's API reference documentation for the latest available information. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.Owner_ID"> <summary> <para> The service has not provided documentation for this parameter; please refer to the service's API reference documentation for the latest available information. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.S3PutObjectCopy_MetadataDirective"> <summary> <para> The service has not provided documentation for this parameter; please refer to the service's API reference documentation for the latest available information. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.Retention_Mode"> <summary> <para> <para>The Retention mode to be applied to all objects in the Batch Operations job.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.S3PutObjectCopy_ModifiedSinceConstraint"> <summary> <para> The service has not provided documentation for this parameter; please refer to the service's API reference documentation for the latest available information. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.S3PutObjectCopy_NewObjectTagging"> <summary> <para> The service has not provided documentation for this parameter; please refer to the service's API reference documentation for the latest available information. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.Location_ObjectArn"> <summary> <para> <para>The Amazon Resource Name (ARN) for a manifest object.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.S3PutObjectCopy_ObjectLockLegalHoldStatus"> <summary> <para> <para>The Legal Hold status to be applied to all objects in the Batch Operations job.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.S3PutObjectCopy_ObjectLockMode"> <summary> <para> <para>The Retention mode to be applied to all objects in the Batch Operations job.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.S3PutObjectCopy_ObjectLockRetainUntilDate"> <summary> <para> <para>The date when the applied Object Retention configuration will expire on all objects in the Batch Operations job.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.Location_ObjectVersionId"> <summary> <para> <para>The optional version ID to identify a specific version of the manifest object.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.Report_Prefix"> <summary> <para> <para>An optional prefix to describe where in the specified bucket the job-completion report will be stored. Amazon S3 will store the job-completion report at <prefix>/job-<job-id>/report.json.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.Priority"> <summary> <para> <para>The numerical priority for this job. Higher numbers indicate higher priority.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.S3PutObjectCopy_RedirectLocation"> <summary> <para> The service has not provided documentation for this parameter; please refer to the service's API reference documentation for the latest available information. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.Report_ReportScope"> <summary> <para> <para>Indicates whether the job-completion report will include details of all tasks or only failed tasks.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.NewObjectMetadata_RequesterCharged"> <summary> <para> The service has not provided documentation for this parameter; please refer to the service's API reference documentation for the latest available information. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.S3PutObjectCopy_RequesterPay"> <summary> <para> The service has not provided documentation for this parameter; please refer to the service's API reference documentation for the latest available information. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.Retention_RetainUntilDate"> <summary> <para> <para>The date when the applied Object Retention will expire on all objects in the Batch Operations job.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.RoleArn"> <summary> <para> <para>The Amazon Resource Name (ARN) for the AWS Identity and Access Management (IAM) role that Batch Operations will use to execute this job's operation on each object in the manifest.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.NewObjectMetadata_SSEAlgorithm"> <summary> <para> The service has not provided documentation for this parameter; please refer to the service's API reference documentation for the latest available information. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.S3PutObjectCopy_SSEAwsKmsKeyId"> <summary> <para> The service has not provided documentation for this parameter; please refer to the service's API reference documentation for the latest available information. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.LegalHold_Status"> <summary> <para> <para>The Legal Hold status to be applied to all objects in the Batch Operations job.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.S3PutObjectCopy_StorageClass"> <summary> <para> The service has not provided documentation for this parameter; please refer to the service's API reference documentation for the latest available information. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.Tag"> <summary> <para> <para>A set of tags to associate with the Amazon S3 Batch Operations job. This is an optional parameter. </para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.S3PutObjectTagging_TagSet"> <summary> <para> The service has not provided documentation for this parameter; please refer to the service's API reference documentation for the latest available information. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.S3PutObjectCopy_TargetKeyPrefix"> <summary> <para> The service has not provided documentation for this parameter; please refer to the service's API reference documentation for the latest available information. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.S3PutObjectCopy_TargetResource"> <summary> <para> The service has not provided documentation for this parameter; please refer to the service's API reference documentation for the latest available information. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.S3PutObjectCopy_UnModifiedSinceConstraint"> <summary> <para> The service has not provided documentation for this parameter; please refer to the service's API reference documentation for the latest available information. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.NewObjectMetadata_UserMetadata"> <summary> <para> The service has not provided documentation for this parameter; please refer to the service's API reference documentation for the latest available information. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The default value is 'JobId'. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.S3Control.Model.CreateJobResponse). Specifying the name of a property of type Amazon.S3Control.Model.CreateJobResponse will result in that property being returned. Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the AccountId parameter. The -PassThru parameter is deprecated, use -Select '^AccountId' instead. This parameter will be removed in a future version. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.NewS3CJobCmdlet.Force"> <summary> This parameter overrides confirmation prompts to force the cmdlet to continue its operation. This parameter should always be used with caution. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.S3C.RemoveS3CAccessPointCmdlet"> <summary> Deletes the specified access point. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.RemoveS3CAccessPointCmdlet.AccountId"> <summary> <para> <para>The account ID for the account that owns the specified access point.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.RemoveS3CAccessPointCmdlet.Name"> <summary> <para> <para>The name of the access point you want to delete.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.RemoveS3CAccessPointCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The cmdlet doesn't have a return value by default. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.S3Control.Model.DeleteAccessPointResponse). Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.RemoveS3CAccessPointCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the Name parameter. The -PassThru parameter is deprecated, use -Select '^Name' instead. This parameter will be removed in a future version. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.RemoveS3CAccessPointCmdlet.Force"> <summary> This parameter overrides confirmation prompts to force the cmdlet to continue its operation. This parameter should always be used with caution. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.S3C.RemoveS3CAccessPointPolicyCmdlet"> <summary> Deletes the access point policy for the specified access point. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.RemoveS3CAccessPointPolicyCmdlet.AccountId"> <summary> <para> <para>The account ID for the account that owns the specified access point.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.RemoveS3CAccessPointPolicyCmdlet.Name"> <summary> <para> <para>The name of the access point whose policy you want to delete.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.RemoveS3CAccessPointPolicyCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The cmdlet doesn't have a return value by default. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.S3Control.Model.DeleteAccessPointPolicyResponse). Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.RemoveS3CAccessPointPolicyCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the Name parameter. The -PassThru parameter is deprecated, use -Select '^Name' instead. This parameter will be removed in a future version. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.RemoveS3CAccessPointPolicyCmdlet.Force"> <summary> This parameter overrides confirmation prompts to force the cmdlet to continue its operation. This parameter should always be used with caution. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.S3C.RemoveS3CJobTaggingCmdlet"> <summary> Removes the entire tag set from the specified Amazon S3 Batch Operations job. To use this operation, you must have permission to perform the <code>s3:DeleteJobTagging</code> action. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/batch-ops-managing-jobs.html#batch-ops-job-tags">Using Job Tags</a> in the Amazon Simple Storage Service Developer Guide. <para> Related actions include: </para><ul><li><para><a>CreateJob</a></para></li><li><para><a>GetJobTagging</a></para></li><li><para><a>PutJobTagging</a></para></li></ul> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.RemoveS3CJobTaggingCmdlet.AccountId"> <summary> <para> <para>The AWS account ID associated with the Amazon S3 Batch Operations job.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.RemoveS3CJobTaggingCmdlet.JobId"> <summary> <para> <para>The ID for the Amazon S3 Batch Operations job whose tags you want to delete.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.RemoveS3CJobTaggingCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The cmdlet doesn't have a return value by default. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.S3Control.Model.DeleteJobTaggingResponse). Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.RemoveS3CJobTaggingCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the JobId parameter. The -PassThru parameter is deprecated, use -Select '^JobId' instead. This parameter will be removed in a future version. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.RemoveS3CJobTaggingCmdlet.Force"> <summary> This parameter overrides confirmation prompts to force the cmdlet to continue its operation. This parameter should always be used with caution. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.S3C.RemoveS3CPublicAccessBlockCmdlet"> <summary> Removes the <code>PublicAccessBlock</code> configuration for an Amazon Web Services account. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.RemoveS3CPublicAccessBlockCmdlet.AccountId"> <summary> <para> <para>The account ID for the Amazon Web Services account whose <code>PublicAccessBlock</code> configuration you want to remove.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.RemoveS3CPublicAccessBlockCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The cmdlet doesn't have a return value by default. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.S3Control.Model.DeletePublicAccessBlockResponse). Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.RemoveS3CPublicAccessBlockCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the AccountId parameter. The -PassThru parameter is deprecated, use -Select '^AccountId' instead. This parameter will be removed in a future version. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.RemoveS3CPublicAccessBlockCmdlet.Force"> <summary> This parameter overrides confirmation prompts to force the cmdlet to continue its operation. This parameter should always be used with caution. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.S3C.UpdateS3CJobPriorityCmdlet"> <summary> Updates an existing Amazon S3 Batch Operations job's priority. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/batch-ops-basics.html">Amazon S3 Batch Operations</a> in the Amazon Simple Storage Service Developer Guide. <para> Related actions include: </para><ul><li><para><a>CreateJob</a></para></li><li><para><a>ListJobs</a></para></li><li><para><a>DescribeJob</a></para></li><li><para><a>UpdateJobStatus</a></para></li></ul> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.UpdateS3CJobPriorityCmdlet.AccountId"> <summary> <para> The service has not provided documentation for this parameter; please refer to the service's API reference documentation for the latest available information. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.UpdateS3CJobPriorityCmdlet.JobId"> <summary> <para> <para>The ID for the job whose priority you want to update.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.UpdateS3CJobPriorityCmdlet.Priority"> <summary> <para> <para>The priority you want to assign to this job.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.UpdateS3CJobPriorityCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The default value is '*'. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.S3Control.Model.UpdateJobPriorityResponse). Specifying the name of a property of type Amazon.S3Control.Model.UpdateJobPriorityResponse will result in that property being returned. Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.UpdateS3CJobPriorityCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the JobId parameter. The -PassThru parameter is deprecated, use -Select '^JobId' instead. This parameter will be removed in a future version. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.UpdateS3CJobPriorityCmdlet.Force"> <summary> This parameter overrides confirmation prompts to force the cmdlet to continue its operation. This parameter should always be used with caution. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.S3C.UpdateS3CJobStatusCmdlet"> <summary> Updates the status for the specified job. Use this operation to confirm that you want to run a job or to cancel an existing job. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/batch-ops-basics.html">Amazon S3 Batch Operations</a> in the Amazon Simple Storage Service Developer Guide. <para> Related actions include: </para><ul><li><para><a>CreateJob</a></para></li><li><para><a>ListJobs</a></para></li><li><para><a>DescribeJob</a></para></li><li><para><a>UpdateJobStatus</a></para></li></ul> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.UpdateS3CJobStatusCmdlet.AccountId"> <summary> <para> The service has not provided documentation for this parameter; please refer to the service's API reference documentation for the latest available information. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.UpdateS3CJobStatusCmdlet.JobId"> <summary> <para> <para>The ID of the job whose status you want to update.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.UpdateS3CJobStatusCmdlet.RequestedJobStatus"> <summary> <para> <para>The status that you want to move the specified job to.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.UpdateS3CJobStatusCmdlet.StatusUpdateReason"> <summary> <para> <para>A description of the reason why you want to change the specified job's status. This field can be any string up to the maximum length.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.UpdateS3CJobStatusCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The default value is '*'. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.S3Control.Model.UpdateJobStatusResponse). Specifying the name of a property of type Amazon.S3Control.Model.UpdateJobStatusResponse will result in that property being returned. Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.UpdateS3CJobStatusCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the JobId parameter. The -PassThru parameter is deprecated, use -Select '^JobId' instead. This parameter will be removed in a future version. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.UpdateS3CJobStatusCmdlet.Force"> <summary> This parameter overrides confirmation prompts to force the cmdlet to continue its operation. This parameter should always be used with caution. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.S3C.WriteS3CAccessPointPolicyCmdlet"> <summary> Associates an access policy with the specified access point. Each access point can have only one policy, so a request made to this API replaces any existing policy associated with the specified access point. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.WriteS3CAccessPointPolicyCmdlet.AccountId"> <summary> <para> <para>The AWS account ID for owner of the bucket associated with the specified access point.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.WriteS3CAccessPointPolicyCmdlet.Name"> <summary> <para> <para>The name of the access point that you want to associate with the specified policy.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.WriteS3CAccessPointPolicyCmdlet.Policy"> <summary> <para> <para>The policy that you want to apply to the specified access point. For more information about access point policies, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/access-points.html">Managing Data Access with Amazon S3 Access Points</a> in the <i>Amazon Simple Storage Service Developer Guide</i>.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.WriteS3CAccessPointPolicyCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The cmdlet doesn't have a return value by default. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.S3Control.Model.PutAccessPointPolicyResponse). Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.WriteS3CAccessPointPolicyCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the Policy parameter. The -PassThru parameter is deprecated, use -Select '^Policy' instead. This parameter will be removed in a future version. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.S3C.WriteS3CAccessPointPolicyCmdlet.Force"> <summary> This parameter overrides confirmation prompts to force the cmdlet to continue its operation. This parameter should always be used with caution. </summary> </member> </members> </doc> |